/* =========================================================
   CONTACT PAGE - SAI BHAKTI TOURS & TRAVELS
========================================================= */

.contact-page {
    overflow: hidden;
    background: #fff8f4;
}


/* =========================================================
   HERO
========================================================= */

.contact-page-hero {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    padding: 100px 0 85px;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            rgba(255, 248, 244, .98) 0%,
            rgba(255, 238, 228, .94) 55%,
            rgba(255, 224, 209, .90) 100%
        );

    color: #24180f;
}


/* =========================================================
   HERO PATTERN
========================================================= */

.about-hero-pattern {
    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .10;

    background-image:
        radial-gradient(
            circle at 15% 25%,
            #f34a00 1px,
            transparent 1px
        ),
        radial-gradient(
            circle at 75% 70%,
            #f34a00 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.contact-page-hero .container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.about-hero-content {
    max-width: 850px;
}


/* =========================================================
   EYEBROW
========================================================= */

.contact-page-hero .eyebrow {
    color: #f34a00;
}


/* =========================================================
   HERO HEADING
========================================================= */

.contact-page-hero h1 {
    margin: 18px 0 22px;

    max-width: 850px;

    font-size: clamp(40px, 5vw, 68px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;

    color: #24180f;
}

.contact-page-hero h1 em {
    color: #f34a00;

    font-style: normal;
}


/* =========================================================
   HERO PARAGRAPH
========================================================= */

.contact-page-hero p {
    max-width: 680px;

    margin: 0;

    color: #756b63;

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.about-breadcrumb {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    font-size: 14px;
}


/* Home */
.about-breadcrumb a {
    color: #9b918b;

    text-decoration: none;

    transition: .25s ease;
}


/* Hover */
.about-breadcrumb a:hover {
    color: #f34a00;
}


/* Separator + Current */
.about-breadcrumb span {
    color: #bdb3ad;
}


/* Current page */
.about-breadcrumb span:last-child {
    color: #a9a09a;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    padding: 90px 0;

    background: #fff8f4;
}


/* =========================================================
   CONTACT LAYOUT
========================================================= */

.contact-layout {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 30px;

    align-items: stretch;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.contact-info {
    position: relative;

    padding: 48px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #f34a00,
            #d83f00
        );

    color: #fff;

    box-shadow:
        0 20px 55px rgba(243, 74, 0, .16);
}


/* =========================================================
   CONTACT INFO EYEBROW
========================================================= */

.contact-info .eyebrow {
    color: #ffd1c0;
}


/* =========================================================
   CONTACT INFO HEADING
========================================================= */

.contact-info h2 {
    margin: 12px 0 18px;

    font-size: clamp(30px, 3vw, 42px);

    font-weight: 800;

    line-height: 1.15;

    color: #fff;
}


/* =========================================================
   CONTACT INFO DESCRIPTION
========================================================= */

.contact-info > p {
    margin-bottom: 35px;

    color: rgba(255,255,255,.80);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


/* =========================================================
   CONTACT ITEM
========================================================= */

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 16px;
}


/* =========================================================
   CONTACT ITEM ICON
========================================================= */

.contact-item-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.18);

    color: #fff;

    font-size: 18px;
}


/* =========================================================
   ICON
========================================================= */

.contact-item-icon i {
    color: #fff;
}


/* =========================================================
   CONTACT CONTENT
========================================================= */

.contact-item-content {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 4px;
}


/* =========================================================
   SMALL TITLE
========================================================= */

.contact-item-content small {
    color: rgba(255,255,255,.60);

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   PHONE / EMAIL / ADDRESS
========================================================= */

.contact-item-content a,
.contact-item-content span {
    color: #fff;

    font-size: 15px;

    line-height: 1.6;

    font-weight: 600;

    text-decoration: none;

    overflow-wrap: anywhere;
}


/* =========================================================
   LINK HOVER
========================================================= */

.contact-item-content a:hover {
    color: #ffd1c0;
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.contact-social {
    margin-top: 40px;

    padding-top: 28px;

    border-top: 1px solid rgba(255,255,255,.18);
}


.contact-social-title {
    margin-bottom: 15px;

    color: #fff;

    font-size: 14px;

    font-weight: 700;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.contact-social-icons {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}


.contact-social-icons a {
    width: 40px;
    height: 40px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.22);

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    background: rgba(255,255,255,.08);

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}


.contact-social-icons a i {
    color: #fff;

    font-size: 16px;
}


/* =========================================================
   SOCIAL HOVER
========================================================= */

.contact-social-icons a:hover {
    transform: translateY(-4px);

    background: #fff;

    border-color: #fff;

    color: #f34a00;
}


.contact-social-icons a:hover i {
    color: #f34a00;
}


/* =========================================================
   CONTACT FORM BOX
========================================================= */

.contact-form-box {
    padding: 48px;

    border-radius: 24px;

    background: #fff;

    border: 1px solid #eeded7;

    box-shadow:
        0 20px 55px rgba(243, 74, 0, .06);
}


/* =========================================================
   FORM EYEBROW
========================================================= */

.contact-form-box .eyebrow {
    color: #f34a00;
}


/* =========================================================
   FORM HEADING
========================================================= */

.contact-form-box h2 {
    margin: 12px 0 12px;

    color: #24180f;

    font-size: clamp(30px, 3vw, 40px);

    font-weight: 800;
}


/* =========================================================
   FORM DESCRIPTION
========================================================= */

.contact-form-box > p {
    max-width: 650px;

    margin-bottom: 30px;

    color: #756b63;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   FORM GRID
========================================================= */

.contact-form {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}


.form-group {
    min-width: 0;
}


.form-group.full {
    grid-column: 1 / -1;
}


/* =========================================================
   LABEL
========================================================= */

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #3a2b23;

    font-size: 14px;

    font-weight: 700;
}


.form-group label span {
    color: #e74c3c;
}


/* =========================================================
   INPUTS
========================================================= */

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    border: 1px solid #e5dcd7;

    border-radius: 12px;

    background: #fffaf7;

    color: #3a2b23;

    font-size: 14px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


/* =========================================================
   INPUT / SELECT
========================================================= */

.contact-form input,
.contact-form select {
    height: 52px;

    padding: 0 15px;
}


/* =========================================================
   TEXTAREA
========================================================= */

.contact-form textarea {
    min-height: 145px;

    padding: 14px 15px;

    resize: vertical;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa09a;
}


/* =========================================================
   FOCUS
========================================================= */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #f34a00;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(243,74,0,.10);
}


.contact-form select {
    cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit {
    grid-column: 1 / -1;

    margin-top: 2px;
}


.contact-submit button {
    min-height: 54px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 28px;

    border: 0;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #f34a00,
            #d83f00
        );

    color: #fff;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(243,74,0,.18);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.contact-submit button i {
    font-size: 17px;
}


/* =========================================================
   BUTTON HOVER
========================================================= */

.contact-submit button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(243,74,0,.25);
}


/* =========================================================
   ADDRESS SECTION
========================================================= */

.contact-address-section {
    padding: 0 0 90px;

    background: #fff8f4;
}


/* =========================================================
   ADDRESS CARD
========================================================= */

.address-card {
    display: flex;

    align-items: center;

    gap: 25px;

    padding: 35px 40px;

    border-radius: 22px;

    background: #fff;

    border: 1px solid #eeded7;

    box-shadow:
        0 15px 40px rgba(243,74,0,.05);
}


/* =========================================================
   ADDRESS ICON
========================================================= */

.address-card-icon {
    flex: 0 0 62px;

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #fff0e9;

    color: #f34a00;

    font-size: 26px;
}


/* =========================================================
   ADDRESS HEADING
========================================================= */

.address-card h3 {
    margin: 7px 0 8px;

    color: #24180f;

    font-size: 25px;

    font-weight: 800;
}


/* =========================================================
   ADDRESS TEXT
========================================================= */

.address-card p {
    margin: 0;

    color: #756b63;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.contact-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            #8f2900,
            #c04400
        );
}


/* =========================================================
   CTA INNER
========================================================= */

.contact-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   CTA EYEBROW
========================================================= */

.contact-cta .eyebrow {
    color: #ffd1c0;
}


/* =========================================================
   CTA HEADING
========================================================= */

.contact-cta h2 {
    margin: 10px 0 12px;

    color: #fff;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 800;
}


/* =========================================================
   CTA TEXT
========================================================= */

.contact-cta p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.78);

    line-height: 1.75;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.contact-cta .btn {
    min-height: 52px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 0 24px;

    border-radius: 11px;

    background: #fff;

    color: #f34a00;

    font-weight: 700;

    white-space: nowrap;

    border: 0;

    box-shadow:
        0 10px 25px rgba(0,0,0,.10);

    transition: .25s ease;
}


.contact-cta .btn:hover {
    background: #f34a00;

    color: #fff;

    transform: translateY(-2px);
}


/* =========================================================
   VALIDATION / ERROR
========================================================= */

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
    border-color: #dc3545;
}


.contact-form .invalid-feedback {
    font-size: 12px;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    .contact-page-hero {
        min-height: auto;

        padding: 80px 0 70px;
    }


    .contact-layout {
        grid-template-columns: 1fr;
    }


    .contact-info,
    .contact-form-box {
        padding: 40px;
    }


    .contact-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

    .contact-page-hero {
        padding: 65px 0 55px;
    }


    .contact-page-hero h1 {
        font-size: 40px;

        letter-spacing: -.8px;
    }


    .contact-page-hero p {
        font-size: 16px;
    }


    .contact-section {
        padding: 55px 0;
    }


    .contact-info,
    .contact-form-box {
        padding: 30px 24px;

        border-radius: 20px;
    }


    .contact-form {
        grid-template-columns: 1fr;

        gap: 17px;
    }


    .form-group.full {
        grid-column: auto;
    }


    .contact-submit {
        grid-column: auto;
    }


    .contact-submit button {
        width: 100%;
    }


    .address-card {
        align-items: flex-start;

        padding: 28px 24px;

        flex-direction: column;

        gap: 18px;
    }


    .contact-address-section {
        padding-bottom: 60px;
    }


    .contact-cta {
        padding: 60px 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .contact-page-hero h1 {
        font-size: 34px;
    }


    .contact-info h2,
    .contact-form-box h2 {
        font-size: 29px;
    }


    .contact-item {
        gap: 12px;
    }


    .contact-item-icon {
        flex-basis: 42px;

        width: 42px;
        height: 42px;

        font-size: 16px;
    }


    .contact-item-content a,
    .contact-item-content span {
        font-size: 14px;
    }


    .contact-social-icons a {
        width: 38px;
        height: 38px;
    }


    .contact-cta .btn {
        width: 100%;

        justify-content: center;
    }

}