/*
=========================================================
              RAJASTHAN AURA TOURS
                   CONTACT PAGE
                  FINAL VERSION
=========================================================
*/


/*
=========================================================
                    GLOBAL RESET
=========================================================
*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: #ffffff;
    color: #222222;

    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}


/*
=========================================================
                        HEADER
=========================================================
*/

.contact-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;
}

.contact-header-container {
    width: 94%;
    max-width: 1400px;
    min-height: 85px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


/*
=========================================================
                         LOGO
=========================================================
*/

.contact-logo {
    flex-shrink: 0;

    color: #222222;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;

    white-space: nowrap;
}


/*
=========================================================
                      NAVIGATION
=========================================================
*/

.contact-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;
}

.contact-nav a {
    position: relative;

    padding: 31px 0;

    color: #333333;

    font-size: 12px;
    font-weight: 500;

    white-space: nowrap;

    transition: color 0.3s ease;
}

.contact-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 23px;

    width: 0;
    height: 1px;

    background: #b68b42;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.contact-nav a:hover,
.contact-nav a.active,
.contact-nav a[aria-current="page"] {
    color: #b68b42;
}

.contact-nav a:hover::after,
.contact-nav a.active::after,
.contact-nav a[aria-current="page"]::after {
    width: 100%;
}


/*
=========================================================
                   HEADER BUTTON
=========================================================
*/

.contact-header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    min-height: 44px;

    padding: 12px 20px;

    background: #b68b42;
    border: 1px solid #b68b42;

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;

    white-space: nowrap;
    text-transform: uppercase;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.contact-header-button:hover {
    background: #222222;
    border-color: #222222;

    transform: translateY(-1px);
}


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

.contact-hero {
    width: 100%;
    min-height: 520px;

    padding: 100px 5%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1d1d1b;
    color: #ffffff;

    text-align: center;
}

.contact-hero-content {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;
}

.contact-hero-content span {
    display: block;

    margin-bottom: 20px;

    color: #c79a55;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;

    text-transform: uppercase;
}

.contact-hero-content h1 {
    margin: 0 0 25px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1.15;
}

.contact-hero-content p {
    max-width: 720px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.75);

    font-size: 16px;
    line-height: 1.9;
}


/*
=========================================================
                    CONTACT INTRO
=========================================================
*/

.contact-intro {
    padding: 100px 5% 75px;

    background: #ffffff;

    text-align: center;
}

.contact-intro-container {
    width: 100%;
    max-width: 820px;

    margin: 0 auto;
}

.contact-subtitle {
    display: block;

    margin-bottom: 16px;

    color: #9a7134;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;

    text-transform: uppercase;
}

.contact-intro h2 {
    margin: 0 0 25px;

    color: #222222;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.25;
}

.contact-intro p {
    max-width: 720px;

    margin: 0 auto;

    color: #666666;

    font-size: 15px;
    line-height: 1.9;
}


/*
=========================================================
                    CONTACT OPTIONS
=========================================================
*/

.contact-options {
    padding: 0 5% 110px;

    background: #ffffff;
}

.contact-options-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 25px;
}


/*
=========================================================
                     CONTACT CARD
=========================================================
*/

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 0;

    padding: 50px 30px;

    background: #ffffff;

    border: 1px solid #e5e2dc;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);

    border-color: #b68b42;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}


/*
=========================================================
                     CONTACT ICON
=========================================================
*/

.contact-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid #b68b42;
    border-radius: 50%;

    color: #b68b42;

    font-size: 22px;

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

.contact-card:hover .contact-icon {
    background: #b68b42;
    color: #ffffff;

    transform: translateY(-2px);
}

.contact-icon i {
    display: block;

    line-height: 1;
}


/*
=========================================================
                    CONTACT CARD TEXT
=========================================================
*/

.contact-card > span {
    display: block;

    margin-bottom: 12px;

    color: #9a7134;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;

    text-transform: uppercase;
}

.contact-card h3 {
    margin: 0 0 17px;

    color: #222222;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.3;
}

.contact-card p {
    margin: 0 0 20px;

    color: #777777;

    font-size: 13px;
    line-height: 1.8;
}

.contact-card strong {
    display: block;

    margin-top: auto;

    color: #333333;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;

    overflow-wrap: anywhere;
}


/*
=========================================================
                    JOURNEY DETAILS
=========================================================
*/

.contact-details {
    padding: 110px 5%;

    background: #f7f5f1;
}

.contact-details-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}


/*
=========================================================
                  DETAILS HEADING
=========================================================
*/

.contact-details-heading {
    max-width: 750px;

    margin: 0 auto 65px;

    text-align: center;
}

.contact-details-heading > span {
    display: block;

    margin-bottom: 16px;

    color: #9a7134;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;

    text-transform: uppercase;
}

.contact-details-heading h2 {
    margin: 0 0 22px;

    color: #222222;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 43px;
    font-weight: 400;
    line-height: 1.25;
}

.contact-details-heading p {
    margin: 0;

    color: #666666;

    font-size: 15px;
    line-height: 1.9;
}


/*
=========================================================
                    DETAILS GRID
=========================================================
*/

.contact-details-grid {
    display: grid;

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

    gap: 20px;
}

.contact-detail-item {
    min-width: 0;

    padding: 35px 25px;

    background: #ffffff;

    border: 1px solid rgba(182, 139, 66, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateY(-4px);

    border-color: rgba(182, 139, 66, 0.45);

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
}

.contact-detail-item > span {
    display: block;

    margin-bottom: 20px;

    color: #b68b42;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
}

.contact-detail-item h3 {
    margin: 0 0 15px;

    color: #222222;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
}

.contact-detail-item p {
    margin: 0;

    color: #777777;

    font-size: 13px;
    line-height: 1.8;
}


/*
=========================================================
                     WHATSAPP CTA
=========================================================
*/

.contact-cta {
    padding: 110px 5%;

    background: #1d1d1b;

    color: #ffffff;

    text-align: center;
}

.contact-cta-content {
    width: 100%;
    max-width: 800px;

    margin: 0 auto;
}

.contact-cta-content > span {
    display: block;

    margin-bottom: 18px;

    color: #c79a55;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;

    text-transform: uppercase;
}

.contact-cta-content h2 {
    margin: 0 0 24px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 47px;
    font-weight: 400;
    line-height: 1.25;
}

.contact-cta-content p {
    max-width: 650px;

    margin: 0 auto 35px;

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

    font-size: 15px;
    line-height: 1.9;
}


/*
=========================================================
                      CTA BUTTON
=========================================================
*/

.contact-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 15px 28px;

    background: #ffffff;
    border: 1px solid #ffffff;

    color: #1d1d1b;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.contact-cta-button:hover {
    background: #b68b42;
    border-color: #b68b42;

    color: #ffffff;

    transform: translateY(-2px);
}


/*
=========================================================
                         FOOTER
=========================================================
*/

.contact-footer {
    padding: 65px 5% 30px;

    background: #111111;

    color: #ffffff;

    text-align: center;
}

.contact-footer-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}


/*
=========================================================
                      FOOTER BRAND
=========================================================
*/

.contact-footer-brand a {
    display: inline-block;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.3;
}

.contact-footer-brand p {
    margin: 10px 0 0;

    color: rgba(255, 255, 255, 0.50);

    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.5px;
}


/*
=========================================================
                      FOOTER LINKS
=========================================================
*/

.contact-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px 25px;

    margin-top: 30px;
}

.contact-footer-links a {
    color: rgba(255, 255, 255, 0.70);

    font-size: 12px;

    transition: color 0.3s ease;
}

.contact-footer-links a:hover,
.contact-footer-links a[aria-current="page"] {
    color: #c79a55;
}


/*
=========================================================
                    FOOTER CONTACT
=========================================================
*/

.contact-footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px 25px;

    margin-top: 25px;
}

.contact-footer-contact a {
    color: rgba(255, 255, 255, 0.58);

    font-size: 12px;

    overflow-wrap: anywhere;

    transition: color 0.3s ease;
}

.contact-footer-contact a:hover {
    color: #c79a55;
}


/*
=========================================================
                     FOOTER BOTTOM
=========================================================
*/

.contact-footer-bottom {
    margin-top: 40px;
    padding-top: 25px;

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

.contact-footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.40);

    font-size: 10px;
}


/*
=========================================================
                    SMALL DESKTOP
=========================================================
*/

@media (max-width: 1100px) {

    .contact-header-container {
        width: 92%;

        gap: 20px;
    }

    .contact-nav {
        gap: 17px;
    }

    .contact-nav a {
        font-size: 11px;
    }

    .contact-header-button {
        padding-left: 16px;
        padding-right: 16px;

        font-size: 10px;
    }

}


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

@media (max-width: 1000px) {

    .contact-header-container {
        width: 90%;
        min-height: auto;

        padding-top: 20px;
        padding-bottom: 20px;

        flex-wrap: wrap;
        justify-content: center;

        gap: 18px 25px;
    }

    .contact-logo {
        width: 100%;

        text-align: center;
    }

    .contact-nav {
        flex-wrap: wrap;

        gap: 14px 20px;
    }

    .contact-nav a {
        padding: 5px 0;
    }

    .contact-nav a::after {
        bottom: -3px;
    }

    .contact-hero-content h1 {
        font-size: 52px;
    }

    .contact-options-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-details-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


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

@media (max-width: 650px) {

    /*
    HEADER
    */

    .contact-header-container {
        width: 100%;

        padding: 20px 18px;

        gap: 17px;
    }

    .contact-logo {
        font-size: 23px;
    }

    .contact-nav {
        width: 100%;

        gap: 10px 15px;
    }

    .contact-nav a {
        padding: 4px 0;

        font-size: 11px;
    }

    .contact-header-button {
        width: 100%;
        max-width: 320px;

        min-height: 44px;

        text-align: center;
    }


    /*
    HERO
    */

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

        padding: 80px 20px;
    }

    .contact-hero-content span {
        margin-bottom: 16px;

        font-size: 9px;
        letter-spacing: 2px;
    }

    .contact-hero-content h1 {
        margin-bottom: 21px;

        font-size: 41px;
        line-height: 1.16;
    }

    .contact-hero-content p {
        font-size: 14px;
        line-height: 1.8;
    }


    /*
    INTRO
    */

    .contact-intro {
        padding: 75px 20px 60px;
    }

    .contact-subtitle {
        margin-bottom: 13px;

        font-size: 9px;
        letter-spacing: 2.3px;
    }

    .contact-intro h2 {
        margin-bottom: 20px;

        font-size: 35px;
        line-height: 1.25;
    }

    .contact-intro p {
        font-size: 14px;
        line-height: 1.8;
    }


    /*
    CONTACT OPTIONS
    */

    .contact-options {
        padding: 0 20px 80px;
    }

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

        gap: 18px;
    }

    .contact-card {
        padding: 42px 25px;
    }

    .contact-icon {
        width: 58px;
        height: 58px;

        margin-bottom: 22px;

        font-size: 20px;
    }

    .contact-card h3 {
        font-size: 25px;
    }

    .contact-card p {
        font-size: 13px;
    }


    /*
    JOURNEY DETAILS
    */

    .contact-details {
        padding: 80px 20px;
    }

    .contact-details-heading {
        margin-bottom: 45px;
    }

    .contact-details-heading > span {
        font-size: 9px;
        letter-spacing: 2.2px;
    }

    .contact-details-heading h2 {
        font-size: 34px;
        line-height: 1.25;
    }

    .contact-details-heading p {
        font-size: 14px;
        line-height: 1.8;
    }

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

        gap: 15px;
    }

    .contact-detail-item {
        padding: 30px 24px;
    }


    /*
    CTA
    */

    .contact-cta {
        padding: 80px 20px;
    }

    .contact-cta-content > span {
        font-size: 9px;
        letter-spacing: 2.2px;
    }

    .contact-cta-content h2 {
        font-size: 36px;
        line-height: 1.25;
    }

    .contact-cta-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .contact-cta-button {
        width: 100%;
        max-width: 340px;
    }


    /*
    FOOTER
    */

    .contact-footer {
        padding: 55px 20px 25px;
    }

    .contact-footer-brand a {
        font-size: 24px;
    }

    .contact-footer-brand p {
        font-size: 11px;
    }

    .contact-footer-links,
    .contact-footer-contact {
        flex-direction: column;

        gap: 12px;
    }

    .contact-footer-bottom {
        margin-top: 35px;
        padding-top: 22px;
    }

}


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

@media (max-width: 380px) {

    .contact-header-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .contact-logo {
        font-size: 21px;
    }

    .contact-nav {
        gap: 9px 12px;
    }

    .contact-nav a {
        font-size: 10px;
    }

    .contact-hero {
        min-height: 450px;
    }

    .contact-hero-content h1 {
        font-size: 36px;
    }

    .contact-hero-content p {
        font-size: 13px;
    }

    .contact-intro h2,
    .contact-details-heading h2 {
        font-size: 31px;
    }

    .contact-card {
        padding: 38px 20px;
    }

    .contact-card h3 {
        font-size: 23px;
    }

    .contact-detail-item {
        padding: 27px 21px;
    }

    .contact-cta-content h2 {
        font-size: 32px;
    }

}


/*
=========================================================
                     ACCESSIBILITY
=========================================================
*/

.contact-header a:focus-visible,
.contact-card:focus-visible,
.contact-cta-button:focus-visible,
.contact-footer a:focus-visible {
    outline: 2px solid #b68b42;
    outline-offset: 3px;
}


/*
=========================================================
                 REDUCED MOTION
=========================================================
*/

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}


/*
=========================================================
                  END OF FINAL CSS
=========================================================
*/