/* =========================================================
   TRIP ASSISTANT
   Main Website Stylesheet
   https://tripassistant.in/
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --primary: #0756a3;
    --primary-dark: #043b73;
    --secondary: #0b72ce;

    --green: #16b85a;
    --green-dark: #0d9446;

    --orange: #ff8a00;

    --dark: #102033;
    --text: #465568;
    --muted: #718096;

    --light: #f5f9fd;
    --white: #ffffff;

    --border: #e5edf5;

    --shadow:
        0 15px 45px rgba(16, 32, 51, 0.10);

    --shadow-lg:
        0 20px 60px rgba(12, 41, 70, 0.16);

    --radius: 18px;

    --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        'Plus Jakarta Sans',
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
    width: min(var(--container), 92%);
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 90px 0;
}

.section-light {
    background: var(--light);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    max-width: 780px;
    margin: 0 auto 50px;

    text-align: center;
}

.eyebrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    color: var(--primary);

    background: #eaf4ff;

    padding: 8px 14px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    margin-bottom: 15px;
}

.section-heading h2 {
    color: var(--dark);

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.2;

    margin-bottom: 16px;
}

.section-heading p {
    color: #69798b;

    font-size: 16px;
}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {
    background: var(--dark);

    color: #ffffff;

    font-size: 13px;
}

.topbar-inner {
    min-height: 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.topbar-left,
.topbar-right {
    display: flex;

    align-items: center;

    gap: 18px;
}

.topbar i {
    color: #66d895;

    margin-right: 5px;
}


/* =========================================================
   HEADER / NAVBAR
========================================================= */

header {
    position: sticky;

    top: 0;

    z-index: 9999;

    background: rgba(255, 255, 255, 0.97);

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;

    align-items: center;

    gap: 11px;

    font-size: 25px;

    font-weight: 800;

    color: var(--dark);

    white-space: nowrap;
}

.logo-icon {
    width: 42px;
    height: 42px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #16a0e8
        );

    color: #ffffff;

    display: grid;

    place-items: center;

    box-shadow:
        0 8px 20px
        rgba(7, 86, 163, 0.25);
}

.logo span {
    color: var(--primary);
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: 25px;
}

.nav-links a {
    color: var(--dark);

    font-size: 14px;

    font-weight: 600;

    transition: 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}


/* =========================================================
   HEADER BUTTONS
========================================================= */

.header-actions {
    display: flex;

    align-items: center;

    gap: 10px;
}

.header-whatsapp,
.header-book {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 11px 17px;

    border-radius: 9px;

    font-weight: 700;

    font-size: 13px;

    transition: 0.25s ease;
}

.header-whatsapp {
    background: var(--green);

    color: #ffffff;
}

.header-whatsapp:hover {
    background: var(--green-dark);

    transform: translateY(-2px);
}

.header-book {
    background: var(--primary);

    color: #ffffff;
}

.header-book:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;

    border: 0;

    background: transparent;

    font-size: 24px;

    color: var(--dark);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 690px;

    display: flex;

    align-items: center;

    color: #ffffff;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(4, 25, 48, 0.92) 0%,
            rgba(4, 25, 48, 0.72) 42%,
            rgba(4, 25, 48, 0.18) 100%
        ),
        url('../images/vistadome-hero.jpg')
        center center / cover no-repeat;
}

.hero-content {
    width: 100%;

    max-width: 760px;

    padding:
        90px
        0
        130px;
}

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    background:
        rgba(255, 255, 255, 0.14);

    border:
        1px solid
        rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(8px);

    padding: 9px 15px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 22px;
}

.hero h1 {
    font-size:
        clamp(40px, 6vw, 68px);

    line-height: 1.08;

    letter-spacing: -2px;

    margin-bottom: 22px;
}

.hero h1 span {
    color: #74d7ff;
}

.hero-description {
    font-size: 18px;

    line-height: 1.8;

    max-width: 700px;

    color:
        rgba(255, 255, 255, 0.91);

    margin-bottom: 30px;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 52px;

    padding: 0 23px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 800;

    border: 0;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-green {
    background: var(--green);

    color: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(22, 184, 90, 0.28);
}

.btn-green:hover {
    background: var(--green-dark);
}

.btn-white {
    background: #ffffff;

    color: var(--primary);
}

.btn-primary {
    background: var(--primary);

    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}


/* =========================================================
   HERO TRUST
========================================================= */

.hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 30px;

    font-size: 13px;

    font-weight: 600;
}

.hero-trust span {
    display: flex;

    align-items: center;

    gap: 7px;
}

.hero-trust i {
    color: #6be69c;
}


/* =========================================================
   QUICK BOOKING
========================================================= */

.booking-wrapper {
    position: relative;

    margin-top: -75px;

    z-index: 5;
}

.booking-card {
    background: #ffffff;

    border-radius: 20px;

    box-shadow: var(--shadow-lg);

    padding: 28px;

    border:
        1px solid
        rgba(0, 0, 0, 0.04);
}

.booking-title {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}

.booking-title h2 {
    color: var(--dark);

    font-size: 22px;
}

.booking-title span {
    color: var(--green);

    font-size: 12px;

    font-weight: 800;
}

.booking-form {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr
        1fr
        auto;

    gap: 12px;
}

.field {
    position: relative;
}

.field label {
    display: block;

    font-size: 11px;

    font-weight: 800;

    color: #718096;

    margin-bottom: 6px;

    text-transform: uppercase;
}

.field input,
.field select {
    width: 100%;

    height: 48px;

    border:
        1px solid
        var(--border);

    border-radius: 9px;

    padding: 0 13px;

    outline: none;

    color: var(--dark);

    background: #ffffff;
}

.field input:focus,
.field select:focus {
    border-color: var(--primary);
}

.booking-submit {
    align-self: end;

    height: 48px;

    border: 0;

    background: var(--primary);

    color: #ffffff;

    border-radius: 9px;

    padding: 0 20px;

    font-weight: 800;

    cursor: pointer;

    transition: 0.25s ease;
}

.booking-submit:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);
}


/* =========================================================
   SERVICES
========================================================= */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.service-card {
    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    padding: 30px 25px;

    box-shadow:
        0 7px 25px
        rgba(16, 32, 51, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.service-icon {
    width: 55px;
    height: 55px;

    border-radius: 15px;

    display: grid;

    place-items: center;

    background: #eaf4ff;

    color: var(--primary);

    font-size: 23px;

    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--dark);

    font-size: 18px;

    margin-bottom: 11px;
}

.service-card p {
    font-size: 13px;

    color: #718096;

    margin-bottom: 18px;
}

.service-link {
    color: var(--primary);

    font-size: 13px;

    font-weight: 800;
}


/* =========================================================
   VISTADOME FEATURE
========================================================= */

.feature-section {
    background: var(--dark);

    color: #ffffff;

    overflow: hidden;
}

.feature-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: center;
}

.feature-image {
    border-radius: 25px;

    overflow: hidden;

    position: relative;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.35);
}

.feature-image img {
    width: 100%;

    height: 480px;

    object-fit: cover;
}

.image-badge {
    position: absolute;

    bottom: 20px;

    left: 20px;

    right: 20px;

    background:
        rgba(5, 25, 44, 0.88);

    backdrop-filter: blur(8px);

    border-radius: 13px;

    padding: 16px;

    font-size: 13px;

    font-weight: 700;
}

.feature-content .eyebrow {
    background:
        rgba(116, 215, 255, 0.12);

    color: #74d7ff;
}

.feature-content h2 {
    font-size:
        clamp(32px, 4vw, 50px);

    line-height: 1.15;

    margin-bottom: 20px;
}

.feature-content > p {
    color:
        rgba(255, 255, 255, 0.75);

    margin-bottom: 25px;
}

.feature-list {
    list-style: none;

    display: grid;

    gap: 12px;

    margin-bottom: 28px;
}

.feature-list li {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #eaf3fa;

    font-size: 14px;
}

.feature-list i {
    color: #62d891;
}


/* =========================================================
   BRAND NETWORK
========================================================= */

.brand-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.brand-card {
    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    padding: 30px 25px;

    min-height: 230px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transition: 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);
}

.brand-domain {
    font-size: 21px;

    font-weight: 800;

    color: var(--dark);

    word-break: break-word;
}

.brand-card p {
    font-size: 13px;

    color: #718096;

    margin-top: 12px;
}

.brand-link {
    color: var(--primary);

    font-size: 13px;

    font-weight: 800;

    margin-top: 20px;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 50px;

    align-items: center;
}

.why-image {
    border-radius: 22px;

    overflow: hidden;
}

.why-image img {
    width: 100%;

    height: 500px;

    object-fit: cover;
}

.why-content h2 {
    color: var(--dark);

    font-size:
        clamp(32px, 4vw, 46px);

    line-height: 1.2;

    margin-bottom: 17px;
}

.why-content > p {
    margin-bottom: 25px;
}

.benefit-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}

.benefit {
    border:
        1px solid
        var(--border);

    border-radius: 13px;

    padding: 18px;

    background: #ffffff;
}

.benefit i {
    color: var(--primary);

    font-size: 19px;

    margin-bottom: 8px;
}

.benefit h4 {
    color: var(--dark);

    font-size: 14px;

    margin-bottom: 4px;
}

.benefit p {
    font-size: 12px;

    color: #788797;
}


/* =========================================================
   BOOKING PROCESS
========================================================= */

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.process-card {
    text-align: center;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    padding: 30px 20px;
}

.process-number {
    width: 48px;
    height: 48px;

    margin:
        0 auto 17px;

    border-radius: 50%;

    background: var(--primary);

    color: #ffffff;

    display: grid;

    place-items: center;

    font-weight: 800;
}

.process-card h3 {
    color: var(--dark);

    font-size: 16px;

    margin-bottom: 8px;
}

.process-card p {
    font-size: 12px;

    color: #748396;
}


/* =========================================================
   CTA SECTION
========================================================= */

.cta-section {
    padding: 80px 0;
}

.cta-box {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0756a3,
            #0a82d1
        );

    color: #ffffff;

    border-radius: 25px;

    padding: 60px;

    text-align: center;
}

.cta-box::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

    top: -170px;
    left: -100px;
}

.cta-box::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.06);

    bottom: -220px;
    right: -100px;
}

.cta-box > * {
    position: relative;

    z-index: 1;
}

.cta-box h2 {
    font-size:
        clamp(30px, 4vw, 48px);

    line-height: 1.15;

    margin-bottom: 15px;
}

.cta-box p {
    max-width: 720px;

    margin:
        0 auto 25px;

    color:
        rgba(255, 255, 255, 0.88);
}


/* =========================================================
   FAQ
========================================================= */

.faq-container {
    max-width: 850px;

    margin:
        0 auto;
}

.faq-item {
    border:
        1px solid
        var(--border);

    border-radius: 13px;

    margin-bottom: 12px;

    overflow: hidden;

    background: #ffffff;
}

.faq-question {
    width: 100%;

    padding: 20px;

    background: #ffffff;

    border: 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    text-align: left;

    font-weight: 800;

    color: var(--dark);
}

.faq-question i {
    transition: 0.25s ease;
}

.faq-answer {
    display: none;

    padding:
        0 20px 20px;

    color: #68788b;

    font-size: 14px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 30px;
}

.contact-card {
    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    padding: 32px;
}

.contact-card h2 {
    color: var(--dark);

    margin-bottom: 20px;
}

.contact-item {
    display: flex;

    gap: 14px;

    margin-bottom: 20px;
}

.contact-icon {
    width: 43px;
    height: 43px;

    flex:
        0 0 43px;

    border-radius: 10px;

    display: grid;

    place-items: center;

    background: #eaf4ff;

    color: var(--primary);
}

.contact-item h4 {
    color: var(--dark);

    font-size: 13px;
}

.contact-item p,
.contact-item a {
    font-size: 13px;

    color: #718096;
}

.enquiry-form {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}

.enquiry-form .full {
    grid-column: 1 / -1;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;

    border:
        1px solid
        var(--border);

    border-radius: 9px;

    padding: 14px;

    outline: none;

    background: #ffffff;

    color: var(--dark);
}

.enquiry-form textarea {
    min-height: 120px;

    resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--primary);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #071522;

    color: #aab8c6;

    padding:
        65px 0
        25px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 45px;
}

.footer-brand .logo {
    color: #ffffff;

    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 13px;

    line-height: 1.8;

    max-width: 360px;
}

footer h3 {
    color: #ffffff;

    font-size: 14px;

    margin-bottom: 18px;
}

.footer-links {
    list-style: none;

    display: grid;

    gap: 10px;
}

.footer-links a {
    font-size: 13px;

    color: #aab8c6;

    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.1);

    margin-top: 45px;

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-size: 12px;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 20px;

    bottom: 20px;

    z-index: 999;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: var(--green);

    color: #ffffff;

    display: grid;

    place-items: center;

    font-size: 27px;

    box-shadow:
        0 10px 30px
        rgba(22, 184, 90, 0.35);
}

.floating-whatsapp::after {
    content: "";

    position: absolute;

    inset: -5px;

    border:
        2px solid
        rgba(22, 184, 90, 0.25);

    border-radius: 50%;

    animation:
        pulse 2s infinite;
}

@keyframes pulse {

    0% {
        transform: scale(1);

        opacity: 1;
    }

    100% {
        transform: scale(1.35);

        opacity: 0;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .booking-form {
        grid-template-columns:
            1fr 1fr;
    }

    .booking-submit {
        width: 100%;
    }

    .service-grid,
    .brand-grid,
    .process-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 800px) {

    .topbar {
        display: none;
    }

    .header-whatsapp {
        display: none;
    }

    .hero {
        min-height: 650px;

        background:
            linear-gradient(
                rgba(4, 25, 48, 0.82),
                rgba(4, 25, 48, 0.70)
            ),
            url('../images/vistadome-hero.jpg')
            center / cover no-repeat;
    }

    .hero-content {
        padding:
            70px 0
            120px;
    }

    .feature-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature-image img,
    .why-image img {
        height: 350px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .section {
        padding: 65px 0;
    }

    .navbar {
        min-height: 68px;
    }

    .header-book {
        display: none;
    }

    .logo {
        font-size: 21px;
    }

    .logo-icon {
        width: 37px;
        height: 37px;
    }

    .hero {
        min-height: 680px;
    }

    .hero h1 {
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .booking-wrapper {
        margin-top: -55px;
    }

    .booking-card {
        padding: 20px;
    }

    .booking-form,
    .service-grid,
    .brand-grid,
    .process-grid,
    .benefit-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .booking-title {
        align-items: flex-start;

        flex-direction: column;
    }

    .cta-box {
        padding:
            45px 22px;
    }

    .enquiry-form {
        grid-template-columns: 1fr;
    }

    .enquiry-form .full {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;

        right: 15px;
        bottom: 15px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline:
        3px solid
        rgba(7, 86, 163, 0.35);

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}