/* =========================================
   CONTACT PAGE
========================================= */
html {
    scroll-behavior: smooth;
}

.contact-hero {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 480px;

    padding-top: 150px;
    padding-bottom: 90px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(4,10,18,0.54),
            rgba(7,18,32,0.48)
        ),
        url('../images/contact/contact-hero.webp') center center / cover;
}

.contact-hero::before {
    content: "";
    backdrop-filter: blur(2px);
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(224,179,90,0.08),
            transparent 42%
        );
}
.contact-hero-content {
    padding-top: 60px;
}
.contact-hero-inner {
    position: relative;

    z-index: 2;
    padding-left: 10px;
    max-width: 700px;
}

.contact-hero h1 {
    margin: 14px 0 18px;

    font-size: clamp(2.8rem, 5vw, 4.5rem);

    line-height: 0.95;

    letter-spacing: -3px;

    color: #ffffff;

    font-family: 'Poppins', sans-serif;
}

.contact-hero p {
    max-width: 560px;

    font-size: 1.04rem;

    line-height: 1.8;

    color: rgba(255,255,255,0.82);
}

/* =========================================
   MAIN CONTACT SECTION
========================================= */

.contact-section {
    padding: 110px 0 90px;

    background: #f5f5f3;
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 0.98fr;

    gap: 80px;

    align-items: stretch;
}

/* =========================================
   LEFT SIDE
========================================= */
.contact-info {
    max-width: 760px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    margin: 16px 0 22px;

    font-size: clamp(2rem, 3.2vw, 3rem);

    line-height: 0.95;

    letter-spacing: -2px;

    color: #1d1d1f;

    font-family: 'Poppins', sans-serif;

}

.contact-intro,
.form-intro {
    max-width: 560px;

    margin-bottom: 42px;

    font-size: 1.02rem;

    line-height: 1.85;

    color: #60636b;
}

/* =========================================
   INFO BLOCKS
========================================= */

.contact-info-block,
.opening-hours-card {
    padding: 30px;

    background: #ffffff;

    border-radius: 28px;

    border:
        1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 18px 44px rgba(0,0,0,0.06);
}

.contact-info-block {
    margin-bottom: 26px;
}

.contact-card {
    display: flex;

    align-items: flex-start;

    gap: 22px;
}

.contact-card:not(:last-child) {
    margin-bottom: 34px;

    padding-bottom: 34px;

    border-bottom:
        1px solid rgba(0,0,0,0.06);
}

.opening-hours-card {
    display: flex;

    align-items: flex-start;

    gap: 22px;

    margin-bottom: 40px;
}

.contact-icon {
    width: 56px;

    height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #22364d,
            #183049
        );

    color: #e0b35a;

    border:
        1px solid rgba(255,255,255,0.04);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 10px 24px rgba(0,0,0,0.14);
}

.contact-icon i {
    font-size: 1.35rem;
}

.contact-card-content strong {
    line-height: 1.9;
}

.contact-card-content span {
    display: block;

    margin-bottom: 10px;

    font-size: 0.82rem;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #8b8d94;
}

.contact-card-content strong {
    display: block;

    line-height: 1.9;

    font-size: 1rem;

    font-weight: 600;

    color: #1d1d1f;
}

.hours-divider {
    margin-top: 20px;
}

/* =========================================
   MAP
========================================= */

.contact-map {

    margin-top: 54px;

    border:
        1px solid rgba(0,0,0,0.06);

    width: 100%;
    overflow: hidden;
    border-radius: 28px;
    box-shadow:
        0 18px 42px rgba(0,0,0,0.08);
}

.contact-map iframe {
        width: 100%;
        height: 520px;
        border: 0;
        border-radius: 28px;
        display: block;

    filter:
        grayscale(0.08)
        contrast(1.02)
        saturate(0.94);
}

/* =========================================
   FORM SIDE
========================================= */

.contact-form-wrapper {
    padding: 46px;

    margin-top: 48px;

    background:
    linear-gradient(
        to bottom,
        #ffffff,
        #fbfbfa
    );

    border-radius: 32px;

    border:
        1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 24px 60px rgba(0,0,0,0.08);
}

.contact-form {
    margin-top: 34px;
}

.contact-form input,
.contact-form textarea {
    background: #ffffff;
    border: 1px solid #d8d8d8;
}



/* =========================================
   HIDDEN HONEYPOT FIELD
========================================= */

.hidden-field {
    display: none;
}

/* =========================================
   FORM GROUPS
========================================= */

.form-group {
    margin-bottom: 26px;
}

.form-group label {
    display: block;

    margin-bottom: 10px;

    font-size: 0.95rem;

    font-weight: 600;

    color: #1d1d1f;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 16px 18px;

    border-radius: 18px;

    border:
        1px solid rgba(0,0,0,0.08);

    background: #ffffff;

    font-size: 1rem;

    font-family: 'Inter', sans-serif;

    color: #1d1d1f;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.form-group textarea {
    resize: vertical;

    min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;

    border-color: rgba(224,179,90,0.5);

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(224,179,90,0.08);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(224,179,90,0.22);
}

.form-success {
    display: none;

    margin-top: 24px;

    padding: 18px 22px;

    font-size: 0.95rem;

    border-radius: 18px;

    background:
        rgba(46,125,50,0.05);

    border:
        1px solid rgba(46,125,50,0.08);

    color: #2e7d32;

    font-weight: 600;
}

.form-success.show {
    display: block;
}

/* =========================================
   BUTTON
========================================= */

.contact-form .btn {
    width: 100%;

    justify-content: center;

    padding: 18px 24px;

    border-radius: 18px;

    font-size: 1rem;

    font-weight: 600;
    
    background:
    linear-gradient(
        135deg,
        #e0b35a,
        #c99735
    );
cursor: pointer;
position: relative;
overflow: hidden;
color: #111111;

font-weight: 700;

box-shadow:
    0 14px 30px rgba(201,151,53,0.24);

transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.contact-form .btn:hover {
    transform: translateY(-3px);

    background:
        linear-gradient(
            135deg,
            #e7bb63,
            #d6a340
        );

    box-shadow:
        0 22px 42px rgba(201,151,53,0.34);
}
.contact-form .btn:active {
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}

@media (max-width: 768px) {

    .contact-hero {
        min-height: 340px;

        padding: 90px 0 70px;
    }

    .contact-info-block,
    .opening-hours-card,
    .contact-form-wrapper {
        padding: 28px;
    }

    .contact-icon {
        width: 58px;
        height: 58px;
    }

    .contact-icon i {
        font-size: 1.45rem;
    }

    .contact-map iframe {
        height: 360px;
    }

}