/* --------------------------------------------------
   Nafzh – Kontakt (contact page)
   Self-contained styles for the page
--------------------------------------------------- */

.ct {
    position: relative;
}

/* ---------- Hero ---------- */
.ct-hero {
    position: relative;
    padding: 92px 0 64px;
    overflow: hidden;
    background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 55%, #fff 100%);
}

.ct-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.ct-hero-blob--1 {
    width: 380px;
    height: 380px;
    top: -120px;
    right: -80px;
    background: rgba(37, 99, 235, 0.18);
}

.ct-hero-blob--2 {
    width: 300px;
    height: 300px;
    bottom: -140px;
    left: 6%;
    background: rgba(0, 153, 204, 0.14);
}

.ct-hero-inner {
    position: relative;
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}

.ct-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: var(--text-sm);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 18px;
}

.ct-eyebrow-line {
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.ct-hero h1 {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    line-height: 1.12;
    color: var(--color-text);
}

.ct-grad {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ct-lead {
    margin: 0 auto;
    max-width: 600px;
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* ---------- Body ---------- */
.ct-body {
    padding: 56px 0 96px;
}

.ct-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.ct-info {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 32px;
}

.ct-info-title {
    margin: 0 0 22px;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-text);
}

.ct-info-row {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--color-border);
}

.ct-info-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    background: rgba(37, 99, 235, 0.1);
}

.ct-info-icon--green { color: #059669; background: rgba(5, 150, 105, 0.12); }
.ct-info-icon--purple { color: #7C3AED; background: rgba(124, 58, 237, 0.12); }

.ct-info-icon svg {
    width: 22px;
    height: 22px;
}

.ct-info-text p {
    margin: 2px 0 0;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.ct-info-label {
    display: block;
    font-weight: 700;
    font-size: var(--text-sm);
    color: var(--color-text);
}

.ct-email {
    display: inline-block;
    margin-top: 4px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.ct-email:hover {
    text-decoration: underline;
}

.ct-copybtn {
    display: block;
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    color: var(--color-accent);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: underline dotted;
}

.ct-copybtn:hover {
    color: var(--color-accent-dim);
}

.ct-note {
    margin-top: 20px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(0, 153, 204, 0.08);
    border: 1px solid rgba(0, 153, 204, 0.18);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.ct-note a {
    color: var(--color-primary);
    font-weight: 600;
}

/* ---------- Form ---------- */
.ct-formcard {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.18);
}

.ct-form-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-text);
}

.ct-form-sub {
    margin: 6px 0 24px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.ct-field {
    margin-bottom: 18px;
}

.ct-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-text);
}

.ct-field input,
.ct-field select,
.ct-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-card);
    color: var(--color-text);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    background: #fff;
}

.ct-field textarea {
    resize: vertical;
    min-height: 120px;
}

.ct-field.has-error input,
.ct-field.has-error textarea {
    border-color: var(--color-danger);
}

.ct-field-error {
    display: block;
    margin-top: 6px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-danger);
}

.ct-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ct-alert {
    margin: 0 0 20px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1.55;
}

.ct-alert--success {
    color: #065F46;
    background: rgba(5, 150, 105, 0.12);
    border: 1px solid rgba(5, 150, 105, 0.3);
}

.ct-alert--error {
    color: #991B1B;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.ct-counter {
    display: block;
    margin-top: 6px;
    text-align: right;
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
}

.ct-submit {
    width: 100%;
    padding: 14px 22px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: var(--text-base);
    color: #fff;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 16px 30px -14px rgba(37, 99, 235, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ct-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -16px rgba(37, 99, 235, 0.6);
    filter: brightness(1.04);
}

.ct-note--form {
    margin-top: 16px;
    text-align: center;
    background: var(--color-card);
    border: 1px solid var(--color-border);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .ct-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ct-hero {
        padding: 64px 0 40px;
    }

    .ct-hero h1 {
        font-size: var(--text-4xl);
    }

    .ct-info,
    .ct-formcard {
        padding: 24px 20px;
    }
}