/* =========================================================
   HIMACHALRIDE — CONTACT PAGE
========================================================= */


/* =========================================================
   CONTAINER
========================================================= */

.contact-container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
    position: relative;

    min-height: 58vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(16, 45, 35, 0.90) 0%,
            rgba(16, 45, 35, 0.72) 38%,
            rgba(16, 45, 35, 0.45) 65%,
            rgba(16, 45, 35, 0.28) 100%
        ),
        url("../images/destinations/himachal-hero.jpg.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Decorative circle */

.contact-hero::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -220px;
    bottom: -300px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


/* Hero content */

.contact-hero-content {
    position: relative;

    z-index: 2;

    max-width: 760px;

    padding-top: 110px;
    padding-bottom: 80px;

    color: #fff;
}


/* Eyebrow */

.contact-hero .section-eyebrow {
    color: #d3ad70;
}


/* Heading */

.contact-hero h1 {
    margin: 22px 0;

    font-family: "Manrope", sans-serif;

    font-size: clamp(52px, 6vw, 82px);

    line-height: 0.95;

    letter-spacing: -4px;

    font-weight: 600;
}

.contact-hero h1 span {
    display: block;

    color: #d3ad70;

    font-weight: 300;

    font-style: italic;
}


/* Description */

.contact-hero p {
    max-width: 600px;

    margin: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 17px;

    line-height: 1.75;

    color: rgba(255, 255, 255, 0.72);
}


/* Vertical text */

.contact-hero-side {
    position: absolute;

    right: 0;
    bottom: 70px;

    writing-mode: vertical-rl;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.45);
}


/* =========================================================
   BOOKING SECTION
========================================================= */

.contact-booking {
    background: #f4f1e8;

    padding: 110px 0;
}


.contact-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    align-items: start;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-info {
    padding-top: 10px;
}


.contact-info .section-eyebrow {
    color: #a47b3c;
}


.contact-info h2 {
    margin: 20px 0 25px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 0.98;

    letter-spacing: -3px;

    color: #193d30;
}


.contact-info h2 span {
    display: block;

    color: #a47b3c;

    font-weight: 300;

    font-style: italic;
}


.contact-info > p {
    max-width: 500px;

    margin: 0 0 45px;

    font-family: "DM Sans", sans-serif;

    font-size: 15px;

    line-height: 1.75;

    color: #69746e;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    display: flex;

    flex-direction: column;

    border-top: 1px solid rgba(25, 61, 48, 0.15);
}


.contact-detail {
    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 22px 0;

    border-bottom: 1px solid rgba(25, 61, 48, 0.15);

    text-decoration: none;

    color: #193d30;
}


.contact-detail-label {
    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #a47b3c;
}


.contact-detail strong {
    font-family: "Manrope", sans-serif;

    font-size: 20px;

    font-weight: 600;
}


.contact-detail p {
    margin: 2px 0 0;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    line-height: 1.5;

    color: #69746e;
}


a.contact-detail {
    transition: color 0.25s ease;
}


a.contact-detail:hover strong {
    color: #a47b3c;
}


/* =========================================================
   BOOKING FORM
========================================================= */

.booking-form-wrapper {
    background: #fff;

    padding: 42px;

    border: 1px solid rgba(25, 61, 48, 0.1);

    box-shadow:
        0 25px 70px rgba(25, 61, 48, 0.08);
}


/* Form heading */

.booking-form-heading {
    margin-bottom: 35px;
}


.booking-form-heading > span {
    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #a47b3c;
}


.booking-form-heading h3 {
    margin: 12px 0 0;

    font-family: "Manrope", sans-serif;

    font-size: 32px;

    line-height: 1;

    letter-spacing: -1.5px;

    color: #193d30;
}


/* =========================================================
   FORM ROW
========================================================= */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #526159;
}


/* Inputs */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 14px 15px;

    border: 1px solid rgba(25, 61, 48, 0.16);

    border-radius: 0;

    outline: none;

    background: #faf9f5;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    color: #193d30;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


/* Textarea */

.form-group textarea {
    resize: vertical;

    min-height: 120px;
}


/* Focus */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #a47b3c;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(164, 123, 60, 0.08);
}


/* Placeholder */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ba29d;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.booking-submit {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 8px;

    padding: 14px 16px 14px 22px;

    border: none;

    background: #193d30;

    color: #fff;

    cursor: pointer;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.booking-submit strong {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    background: #b18a4d;

    font-size: 17px;

    transition: transform 0.3s ease;
}


.booking-submit:hover {
    background: #102d23;

    transform: translateY(-2px);
}


.booking-submit:hover strong {
    transform: rotate(45deg);
}


/* Form note */

.form-note {
    margin: 15px 0 0;

    text-align: center;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;

    color: #8a938d;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.contact-trust {
    background: #193d30;

    padding: 45px 0;
}


.contact-trust-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-left: 1px solid rgba(255, 255, 255, 0.12);
}


.contact-trust-grid > div {
    display: flex;

    flex-direction: column;

    gap: 6px;

    padding: 10px 30px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}


.contact-trust-grid strong {
    font-family: "Manrope", sans-serif;

    font-size: 28px;

    color: #fff;
}


.contact-trust-grid span {
    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #d3ad70;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .contact-info {
        max-width: 700px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-container {
        width: calc(100% - 30px);
    }


    /* -----------------------------------------------------
       CONTACT HERO
    ----------------------------------------------------- */

    .contact-hero {
        min-height: 600px;

        background-image:
            linear-gradient(
                90deg,
                rgba(16, 45, 35, 0.92) 0%,
                rgba(16, 45, 35, 0.72) 55%,
                rgba(16, 45, 35, 0.48) 100%
            ),
            url("../images/destinations/himachal-hero.jpg.png");

        background-size: cover;

        background-position: 62% center;

        background-repeat: no-repeat;
    }


    .contact-hero-content {
        padding-top: 110px;

        padding-bottom: 60px;
    }


    .contact-hero h1 {
        font-size: 50px;

        letter-spacing: -2.5px;
    }


    .contact-hero p {
        font-size: 14px;

        line-height: 1.7;
    }


    .contact-hero-side {
        display: none;
    }


    /* -----------------------------------------------------
       BOOKING
    ----------------------------------------------------- */

    .contact-booking {
        padding: 75px 0;
    }


    .contact-info h2 {
        font-size: 44px;

        letter-spacing: -2px;
    }


    .contact-info > p {
        font-size: 14px;
    }


    .contact-grid {
        gap: 45px;
    }


    /* -----------------------------------------------------
       FORM
    ----------------------------------------------------- */

    .booking-form-wrapper {
        padding: 25px 20px;
    }


    .booking-form-heading {
        margin-bottom: 28px;
    }


    .booking-form-heading h3 {
        font-size: 27px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px 14px;
    }


    /* -----------------------------------------------------
       TRUST STRIP
    ----------------------------------------------------- */

    .contact-trust-grid {
        grid-template-columns: 1fr 1fr;
    }


    .contact-trust-grid > div {
        padding: 18px 15px;
    }


    .contact-trust-grid strong {
        font-size: 24px;
    }

}