﻿/* ── HERO ── */
.contact-hero {
    min-height: 55vh;
    padding: 90px 5vw 80px;
    background: linear-gradient(150deg, var(--green-50) 0%, var(--cream) 60%, var(--earth-100) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .contact-hero::before {
        content: '';
        position: absolute;
        right: -50px;
        top: 50%;
        transform: translateY(-50%);
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, var(--green-100) 0%, transparent 70%);
        border-radius: 50%;
    }

.contact-hero-inner {
    max-width: 620px;
    position: relative;
    z-index: 1;
}

    .contact-hero-inner h1 {
        font-family: var(--font-display);
        font-size: clamp(2.5rem, 5vw, 3.8rem);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: var(--text-dark);
        margin-bottom: 20px;
        animation: fadeUp .7s .1s ease both;
    }

        .contact-hero-inner h1 em {
            font-style: normal;
            color: var(--green-600);
        }

    .contact-hero-inner p {
        font-size: 1.1rem;
        color: var(--text-mid);
        line-height: 1.8;
        font-weight: 300;
        max-width: 480px;
        animation: fadeUp .7s .2s ease both;
    }

/* ── CONTACT CARDS ── */
.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    padding: 0 5vw;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition);
}

    .contact-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--green-200);
    }

.cc-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 14px;
    transition: all var(--transition);
}

.contact-card:hover .cc-icon {
    background: var(--green-600);
    color: white;
}

.contact-card h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    font-weight: 300;
}

.contact-card a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-600);
    text-decoration: none;
    display: block;
    margin-top: 10px;
    transition: color var(--transition);
}

    .contact-card a:hover {
        color: var(--green-700);
    }

/* ── MAIN CONTACT SECTION ── */
.contact-main {
    padding: 80px 5vw;
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 60px;
}

/* LEFT INFO */
.contact-left-info {
}

    .contact-left-info .section-eyebrow {
        margin-top: 40px;
    }

    .contact-left-info h2 {
        font-family: var(--font-display);
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        font-weight: 800;
        line-height: 1.15;
        color: var(--text-dark);
        margin-bottom: 16px;
    }

    .contact-left-info > p {
        font-size: 0.95rem;
        color: var(--text-muted);
        line-height: 1.75;
        font-weight: 300;
        margin-bottom: 36px;
    }

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cd-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

    .cd-item:hover {
        border-color: var(--green-200);
        box-shadow: var(--shadow-sm);
    }

.cd-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    flex-shrink: 0;
    background: var(--green-100);
    color: var(--green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.cd-item h5 {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.cd-item p {
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 400;
}

.working-hours {
    margin-top: 28px;
    padding: 20px;
    background: var(--green-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--green-200);
}

    .working-hours h5 {
        font-family: var(--font-display);
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--green-700);
        margin-bottom: 12px;
    }

.wh-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid var(--green-200);
    font-size: 0.82rem;
}

    .wh-row:last-child {
        border-bottom: none;
    }

    .wh-row span:first-child {
        color: var(--text-mid);
        font-weight: 500;
    }

    .wh-row span:last-child {
        color: var(--green-600);
        font-weight: 600;
    }

/* RIGHT FORM */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 52px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

    .contact-form-wrap h3 {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 6px;
    }

    .contact-form-wrap > p {
        font-size: 0.88rem;
        color: var(--text-muted);
        margin-bottom: 32px;
        font-weight: 300;
    }

.cform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cform-group {
    margin-bottom: 20px;
}

    .cform-group label {
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--text-mid);
        display: block;
        margin-bottom: 7px;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }

    .cform-group input,
    .cform-group textarea,
    .cform-group select {
        width: 100%;
        padding: 12px 16px;
        border: 1.5px solid var(--border);
        border-radius: var(--radius-sm);
        font-family: var(--font-body);
        font-size: 0.9rem;
        color: var(--text-dark);
        background: var(--cream);
        outline: none;
        transition: border-color var(--transition);
        appearance: none;
    }

        .cform-group input:focus,
        .cform-group textarea:focus,
        .cform-group select:focus {
            border-color: var(--green-400);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(94,201,138,0.1);
        }

    .cform-group textarea {
        height: 130px;
        resize: vertical;
    }

.cform-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

    .cform-check input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 1px;
        flex-shrink: 0;
        accent-color: var(--green-600);
    }

    .cform-check label {
        font-size: 0.82rem;
        color: var(--text-muted);
        font-weight: 300;
        line-height: 1.5;
    }

.cform-submit {
    width: 100%;
    background: var(--green-600);
    color: white;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 15px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .cform-submit:hover {
        background: var(--green-700);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(42,122,74,0.3);
    }

/* ── MAP SECTION ── */
.map-section {
    padding: 0 5vw 80px;
}

    .map-section .section-header {
        margin-bottom: 32px;
    }

.map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(160deg, var(--green-700), var(--green-900));
    height: 400px;
    position: relative;
    border: 1px solid var(--border);
}

.map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,0.3);
    font-size: 3rem;
}

    .map-placeholder p {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.4);
        font-weight: 300;
    }

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-pin-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green-400);
    position: relative;
    box-shadow: 0 0 0 6px rgba(94,201,138,0.3);
    animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {
    0%,100% {
        box-shadow: 0 0 0 6px rgba(94,201,138,0.3);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(94,201,138,0.1);
    }
}

.map-label {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

    .map-label::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: white;
    }

/* ── FAQ ── */
.faq-section {
    padding: 0 5vw 100px;
}

    .faq-section .section-header {
        margin-bottom: 40px;
        max-width: 500px;
    }

.faq-list {
    max-width: 700px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

    .faq-item.open {
        border-color: var(--green-300);
    }

.faq-q {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: background var(--transition);
}

    .faq-q:hover {
        background: var(--green-50);
    }

.faq-item.open .faq-q {
    color: var(--green-700);
}

.faq-arrow {
    color: var(--green-600);
    transition: transform var(--transition);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.open .faq-arrow {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    padding: 0 24px;
    background: var(--white);
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 24px 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .contact-cards-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-cards-row {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-wrap {
        padding: 32px;
    }
}

@media (max-width: 560px) {
    .contact-cards-row {
        grid-template-columns: 1fr;
    }

    .cform-row {
        grid-template-columns: 1fr;
    }
}
