:root {
    --bg: #003b95;
    --accent: #0b74de;
    --text: #ffffff;
    --muted: #6b7280;
    --shadow: 0 6px 18px rgba(10, 10, 10, 0.08);
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, system-ui, Segoe UI, Roboto, Arial;
    color: var(--text);
    background: #f7f7fb
}

/* Header */
.site-header {
    position: sticky;
    /* sticky */
    top: 0;
    z-index: 9999;
    background: var(--bg);
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
    padding: 12px 0
}

.logo {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    font-size: 25px;
}

.brand span {
    font-weight: 600
}

/* Desktop nav */
nav.primary {
    display: flex;
    gap: 8px;
    align-items: center;
}

nav.primary ul {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0
}

nav.primary a {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 25px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

nav.primary a:hover {
    background: #ffffff21;
    color: var(--text);
}

nav.primary a.active {
    color: var(--text);
    font-weight: 700;
    background-color: #ffffff21;
    border: 1px solid var(--text);
}

/* CTA */
.actions {
    display: flex;
    gap: 10px;
    align-items: center
}

.btn {
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 600
}

.btn-primary {
    background: var(--accent);
    color: white
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(15, 23, 42, 0.06)
}

/* Mobile */
.mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    border-radius: 8px;
    color: #fff;
}

.mobile-toggle:focus {
    outline: 2px solid rgba(11, 116, 222, 0.16)
}

/* Mobile menu panel */
.mobile-menu {
    display: none
}

.mobile-menu.open {
    display: block;
    background: var(--bg);
    border-top: 1px solid rgba(15, 23, 42, 0.04)
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 12px
}

.mobile-menu a {
    display: block;
    padding: 10px 8px;
    text-decoration: none;
    color: var(--text);
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mobile-menu a:hover {
    background: rgba(15, 23, 42, 0.04)
}

/* Responsive breakpoints */
@media (max-width:880px) {
    nav.primary {
        display: none
    }

    .mobile-toggle {
        display: inline-flex
    }

    .actions .desktop-only {
        display: none
    }
}

/* small screens tweaks */
@media (max-width:420px) {
    .brand span {
        display: none
    }

    .logo {
        width: 38px;
        height: 38px
    }
}

/* ----- HERO AREA ----- */
.v-hero {
    position: relative;
    padding: 20px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Background image */
.v-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/bg1.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    z-index: -1;
    margin-top: 2px;
}

/* Container */
.v-hero-container {
    max-width: 700px;
    margin: auto;
}

/* Title */
.v-hero-title {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 14px;
    font-weight: 700;
}

/* Subtitle */
.v-hero-sub {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 24px;
}

/* Button */
.v-hero-btn {
    display: inline-block;
    padding: 14px 26px;
    background: #0078ff;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 28px;
    transition: 0.3s;
}

.v-hero-btn:hover {
    background: #005fcc;
}

/* Reuse .container from global styles */
.section-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px
}

.section-head h2 {
    font-size: 22px;
    margin: 10;
    color: #000;
}

.muted {
    color: #000;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
}

.feature {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 12px;
    padding: 18px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
}

.feature .icon {
    font-size: 45px;
}

.feature h3 {
    margin: 0;
    font-size: 16px;
    color: #000;
}

.feature p {
    margin: 0;
    font-size: 14px;
    color: #000;
}

/* Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    margin: 28px 0
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 12px;
}

.card {
    background: var(--panel);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(2, 6, 23, 0.06)
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block
}

.card-body {
    padding: 12px
}

.card-body h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #000;
}

.card-body p {
    margin: 0 0 10px;
    color: #000;
    font-size: 14px
}

.card-cta {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700
}

/* Responsive adjustments */
@media (max-width:1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:720px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .card img {
        height: 200px
    }

    .v-hero,
    .features-section {
        padding-left: 18px;
        padding-right: 18px
    }
}

.top-deals-section {
    padding: 40px 0
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px
}

.muted {
    color: var(--muted)
}

/* Grid */
.deal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.deal-card {
    background: var(--panel);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(2, 6, 23, 0.06);
}

.deal-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.deal-body {
    padding: 14px;
}

.deal-body h3 {
    margin: 0 0 6px;
    font-size: 17px;
    color: #000;
}

.deal-body p {
    margin: 0 0 10px;
    font-size: 14px;
}

/* Prices */
.deal-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.price-current {
    font-size: 20px;
    font-weight: 800;
    color: #0b74de;
}

.price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

/* CTA */
.btn-deal {
    display: inline-block;
    padding: 8px 12px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
}

/* Responsive */
@media(max-width:1100px) {
    .deal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:720px) {
    .deal-grid {
        grid-template-columns: 1fr;
    }

    .deal-card img {
        height: 220px;
    }
}

/* Booking */
.booking-cta-section {
    padding: 70px 0;
    background: #ffffff;
}

.booking-cta-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
    background: #f8faff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-points {
    margin: 0 0 25px 0;
    padding: 0;
    list-style: none;
}

.cta-points li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #444;
}

.cta-points i {
    color: #0B74E5;
    margin-right: 8px;
}

.cta-btn {
    background: #0B74E5;
    color: #fff;
    padding: 14px 35px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #005bb8;
}

.cta-image img {
    width: 100%;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .booking-cta-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-points li {
        justify-content: center;
        display: flex;
    }
}



.faq-section {
    padding: 48px 0
}

.section-head {
    margin-bottom: 18px
}

.faq-list {
    display: grid;
    gap: 12px
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.04)
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    border: 0;
    background: transparent;
    color: #000;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-q:focus {
    outline: 2px solid rgba(11, 116, 222, 0.18);
    outline-offset: 2px
}

.chev {
    font-size: 20px;
    color: #000;
    margin-left: 8px
}

.faq-a {
    padding: 0 18px 16px 18px;
    color: #000;
    line-height: 1.6
}

/* small screens: tighter spacing */
@media (max-width:720px) {
    .faq-q {
        padding: 12px 14px
    }

    .faq-a {
        padding: 0 14px 12px
    }
}

.popular-destinations {
    padding: 70px 0;
    background: #f7f7f7;
}

.popular-destinations .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.popular-destinations .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.destination-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}

.destination-info h3 {
    font-size: 22px;
    margin: 0;
}

.destination-info p {
    margin: 3px 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.hotel-deals {
    padding: 70px 0;
}

.hotel-deals .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.hotel-deals .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
}

.deal-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.07);
    position: relative;
    transition: 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-6px);
}

.deal-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4d4d;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.deal-info {
    padding: 18px;
}

.deal-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.rating {
    color: #ffaa00;
    font-size: 15px;
    margin: 6px 0;
}

.location {
    font-size: 14px;
    color: #555;
}

.price {
    margin-top: 10px;
    font-weight: 600;
    font-size: 16px;
}

.price span {
    font-size: 22px;
    color: #0f5fff;
    font-weight: 700;
}

.btn-book {
    display: inline-block;
    margin-top: 10px;
    background: #0f5fff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-book:hover {
    background: #0844c7;
}

.why-section {
    padding: 48px 0;
    background: transparent
}

.section-head h2 {
    font-size: 24px;
    margin: 0
}

.muted {
    color: #97a0b3
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.why-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(2, 6, 23, 0.04);
    text-align: center;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
}

.why-icon {
    font-size: 34px
}

.why-card h3 {
    margin: 0;
    font-size: 18px;
    color: #000;
}

.why-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45
}

.btn-primary {
    display: inline-block;
    margin-left: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700
}

.btn-ghost {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #000;
    text-decoration: none;
    font-weight: 700
}

@media(max-width:900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:560px) {
    .why-grid {
        grid-template-columns: 1fr
    }

    .why-card {
        min-height: auto;
        padding: 18px
    }

    .btn-primary,
    .btn-ghost {
        display: block;
        margin: 10px auto 0;
    }
}

/* Footer */
.site-footer {
    background: var(--bg);
    color: var(--text);
    padding: 36px 0 18px;
    font-family: Inter, system-ui, Arial, sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px
}

/* grid */
.footer-top {
    padding-bottom: 18px
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--gap);
    align-items: start;
}

.col h3 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.col ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.col ul li {
    margin: 8px 0
}

.col a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: color .15s ease;
}

.col a:hover {
    color: var(--text);
    text-decoration: underline
}

/* contact column */
.contact-col address {
    font-style: normal;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
    margin: 0
}

.contact-col a {
    color: var(--text);
    text-decoration: none
}

.contact-col a:hover {
    color: var(--text)
}

.footer-actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.btn {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600
}

.btn.outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.06)
}

/* bottom row */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 14px;
    margin-top: 18px;
}

.bottom-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 600
}

.bottom-right a {
    color: var(--text);
    text-decoration: none;
    margin-left: 16px;
    font-size: 14px
}

.bottom-right a:hover {
    color: var(--text)
}

/* responsive */
@media (max-width:990px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:720px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

    .contact-col {
        grid-column: 1 / -1
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .bottom-right a {
        margin-left: 0;
        margin-right: 12px
    }
}

/* mobile accordion behavior (visually simple) */
@media (max-width:520px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .col h3 {
        cursor: pointer;
        position: relative;
        padding-right: 22px;
        margin-bottom: 6px;
    }

    .col ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height .26s ease, opacity .18s;
        opacity: 0;
        margin: 0;
    }

    .col.open ul {
        max-height: 400px;
        opacity: 1;
        margin-top: 8px
    }

    .col h3::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 0;
        font-weight: 700;
        color: var(--muted)
    }

    .col.open h3::after {
        content: '−'
    }
}

/* utility */
.sr-only {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap
}