:root {
    --accent: #0b5fd6;
    --accent-2: #3ec7f2;
    --bg: #f7fbff;
    --card: #ffffff;
    --muted: #566073;
    --radius: 12px;
    --shadow: 0 12px 36px rgba(11, 116, 222, 0.10);
    --max-width: 1200px;
    --page-padding: 20px;
    --text: #071428;
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    background: linear-gradient(180deg, var(--bg), #eef7ff);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -webkit-font-feature-settings: "liga" 1;
    transition: none !important;
}

/* NAVBAR */
.container {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 var(--page-padding);
}

/* Bootstrap navbar custom styling */
.navbar {
    padding: 0.75rem 0 !important;
    width: 100%;
}

.navbar .container-fluid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--page-padding);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand {
    flex-shrink: 0;
    margin-right: auto;
    padding: 0;
    font-weight: 700;
}

.navbar-collapse {
    width: 100%;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
}

.nav-item {
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-link {
    padding: 8px 12px !important;
    color: var(--text) !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.12s ease;
    display: inline-block;
}

.nav-link:hover {
    background: rgba(0, 108, 228, 0.08);
}

/* site container wraps page content between header/footer */
.site-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 12px 40px;
}

/* Header */
/* Header (site header used across pages) */
.site-header {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    backdrop-filter: blur(4px);
    /* keep header visible at top when scrolling */
    position: sticky;
    top: 0;
    z-index: 9990;
    box-shadow: 0 6px 18px rgba(6,30,61,0.06);
    overflow: visible;
}

.site-header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    overflow: visible;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Make the brand text clickable while preserving layout */
.brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 12px; /* ensure spacing when logo and text are wrapped by the anchor */
}

.brand-link:focus {
    outline: 3px solid rgba(11, 116, 222, 0.12);
    border-radius: 8px;
}

.logo {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 108, 228, 0.95), rgba(0, 60, 128, 0.95));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 6px 18px rgba(6, 55, 135, 0.12);
}

.brand-text .brand-title {
    font-weight: 800;
    color: var(--text);
    font-size: 1.05rem;
}

.brand-text .brand-tagline {
    font-size: 0.78rem;
    color: var(--muted);
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: background .12s ease, transform .08s ease;
    font-size: 13px;
    flex-shrink: 0;
}

.nav-links a.active {
    background: rgba(0,108,228,0.10);
    color: rgba(0,60,128,1);
}

.nav-cta {
        background: linear-gradient(90deg, var(--accent), var(--accent-2));
        color: #fff !important;
        padding: 8px 16px;
        border-radius: 10px;
        box-shadow: var(--shadow);
        flex-shrink: 0;
        font-size: 13px;
}

/* Button tokens */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(11,116,222,0.12); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid rgba(15,20,36,0.06); }

/* Form controls */
input, select, textarea {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(15,20,36,0.06);
    background: #fff;
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
}

/* Book now CTA — more prominent, gradient primary button */


.translator{
    display: inline-block;
    position: relative;
    margin-left: 12px;
    z-index: 10000;
}
.translator button{
    background: #fff;
    border: 1px solid rgba(11,116,222,0.06);
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(11,116,222,0.06);
    transition: box-shadow .15s ease, transform .12s ease;
}
.translator button:hover{ box-shadow: 0 10px 30px rgba(11,116,222,0.08); transform: translateY(-1px); }
.translator button:focus{ outline: 3px solid rgba(11,116,222,0.12); outline-offset: 2px; }
.translator #translatorLabel{ font-weight:800; color:#07203a; }
.translator .caret{ color: rgba(7,32,58,0.6); transition: transform .15s ease; }
.translator.open .caret{ transform: rotate(180deg); }
.translator.open ul{
    display: block !important;
}
.translator ul{
    display: none !important;
    position: fixed !important;
    background: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
    min-width: 160px !important;
    z-index: 10001 !important;
    border: 1px solid #ddd !important;
    padding: 8px 6px !important;
    list-style: none !important;
    margin: 0 !important;
    top: 70px !important;
    right: 20px !important;
}
.translator ul li{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px;
    font-weight:600;
}
.translator ul li:hover{ background: rgba(11,116,222,0.04); }
.translator ul li::before{
    content: attr(data-lang);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.75rem;
    background: #eef8ff;
    color: var(--primary);
    padding: 4px 6px;
    border-radius: 6px;
    margin-right: 6px;
}
.hamburger {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: rgba(11,37,70,0.9);
    cursor: pointer;
    padding: 8px 12px;
}

nav { position: relative; overflow: visible; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: visible;
    flex-wrap: nowrap;
    white-space: nowrap;
}

@media (max-width: 860px) {
    .hamburger {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        right: 20px;
        background: white;
        border: 1px solid #ddd;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        z-index: 10001;
        min-width: 200px;
        max-width: 280px;
        flex-direction: column;
        gap: 0;
        padding: 0;
        overflow-y: auto;
        max-height: 600px;
    }
    
    .nav-links.mobile-open {
        display: flex !important;
    }
    
    .nav-links a { 
        padding: 12px 16px; 
        display: block;
        font-size: 13px;
        white-space: normal;
        border-bottom: 1px solid #f0f0f0;
        color: #071428;
        text-decoration: none;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-links .translator { 
        margin-left: 0;
        padding: 12px 16px;
        border-bottom: 1px solid #f0f0f0;
    }
}

@media (min-width: 861px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-links {
        display: flex !important;
        position: static !important;
        top: auto !important;
        right: auto !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        z-index: auto !important;
        min-width: auto !important;
        max-width: none !important;
        flex-direction: row !important;
        gap: 10px !important;
        padding: 0 !important;
        overflow: visible !important;
        max-height: none !important;
    }
}

.nav-overlay { display: none; }
.nav-overlay.active{
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(2,10,30,0.35);
    z-index: 70;
}

/* Bookings dropdown toggle */
.bookings-dropdown {
    display: none !important;
}

.bookings-dropdown.open {
    display: block !important;
}

/* Provide visible state for hamburger when expanded (aria-expanded="true") */
.hamburger[aria-expanded="true"]{ transform: scale(0.98); }

/* =======================================
   6. FOUNDING / HERITAGE SECTION
   Responsive two-column layout with an image and supporting text
   ======================================= */

.founding-info-wrapper {
    padding: 88px 0;
    background: linear-gradient(180deg, #fbfdff, #f7f9fb);
}

.founding-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.founding-text h3 {
    font-size: 2rem;
    color: var(--accent);
    margin: 0 0 12px;
}

/* small decorative accent under heading */
.founding-text h3::after{
    content: '';
    display: block;
    width: 54px;
    height: 4px;
    background: linear-gradient(90deg,var(--accent),var(--accent-2));
    border-radius: 4px;
    margin-top: 12px;
}

.founding-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #334155;
    margin-top: 14px;
}

.founding-text strong {
    color: #0b2546;
    font-weight: 700;
}

.founding-image img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: calc(var(--radius) - 2px);
    box-shadow: 0 14px 40px rgba(11,116,222,0.08);
    display: block;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .founding-info-wrapper { padding: 48px 0; }
    .founding-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    /* show image above text on smaller screens */
    .founding-image { order: -1 }
    .founding-image img { max-height: 320px }
    .founding-text h3 { font-size: 1.5rem }
}

/* Make hamburger reachable and visible on small devices */
@media (max-width: 860px) {
    .hamburger{ display: inline-flex; align-items:center; gap:8px; background:transparent; border-radius:8px; padding:6px; }
}

/* Responsive navbar behavior (match flights page) */
@media (max-width: 991px) {
    .navbar-collapse {
        width: 100% !important;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 12px 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 16px !important;
        display: block;
    }
    
    .navbar .container-fluid {
        flex-wrap: wrap;
    }
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
}

/* HERO */
.hero-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 12px auto;
    max-width: var(--max-width);
    height: auto;
    min-height: 320px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: 50% 40%;
    transform-origin: center center;
    animation: kenburns 22s ease-in-out infinite alternate
}

/* set hero background image (path relative to this CSS file) */
.hero-bg {
    background-image: url('../img/jet3.jpg')
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 30, 61, 0.45), rgba(4, 23, 40, 0.25));
    mix-blend-mode: multiply
}

.hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}

@media (min-width: 768px) {
    .hero-wrap {
        border-radius: 16px;
        margin: 16px auto;
        min-height: 400px;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr minmax(260px, 360px);
        gap: 24px;
        padding: 40px;
        align-items: center;
        justify-content: flex-start;
    }
}

@keyframes kenburns {
    from {
        transform: scale(1.05) translateY(0)
    }

    to {
        transform: scale(1.18) translateY(-6%)
    }
}

/* hero background image (moved from inline HTML). Path is relative to this CSS file */
.hero-bg {
    background-image: url('../img/jet3.jpg')
}

/* helpers for layouts previously inline in HTML */
.gap-2-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px
}

.popular-title {
    font-size: 0.85rem
}

.popular-chips {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap
}

.chip {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid #eef7fb;
    background: #fff;
    cursor: pointer
}

/* footer helpers */
.footer-desc {
    color: rgba(207, 234, 252, 0.9);
    max-width: 36ch
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(207, 234, 252, 0.95)
}

.footer-link {
    color: inherit;
    text-decoration: none
}

.newsletter-row {
    display: flex;
    margin-top: 8px
}

.newsletter-input {
    flex: 1;
    border-radius: 8px;
    padding: 10px;
    border: 0
}

.subscribe-btn {
    margin-left: 8px
}

.socials-top {
    margin-top: 14px
}

.eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.85);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.hero h1 {
    /* responsive heading - smaller on mobile */
    font-size: clamp(1rem, 2.2vw, 2.2rem);
    margin: 0 0 4px;
    color: white;
    line-height: 1.1;
    text-shadow: 0 4px 16px rgba(6, 12, 34, 0.6);
    font-weight: 700;
}

/* Map for destinations */


/* Language selector in header */
.lang-select {
    border: 1px solid rgba(15,23,36,0.06);
    background: white;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 600;
}

@media (max-width: 860px) {
    .lang-select { display: none; }
}

.hero p {
    margin: 0 0 12px 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 56ch;
    font-size: clamp(11px, 1.4vw, 14px);
    line-height: 1.3;
}

/* Hide booking buttons on mobile, show on tablet+ */
.hero div[style*="margin-top:12px"] {
    display: none !important;
}

@media (min-width: 768px) {
    .hero div[style*="margin-top:12px"] {
        display: flex !important;
    }
}

/* Also hide any buttons with display:flex on mobile by default */
@media (max-width: 767px) {
    .hero-content > div:last-child {
        display: none !important;
    }
}

/* SEARCH CARD */
.search-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(11, 116, 222, 0.1);
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .search-card {
        padding: 16px;
        border-radius: 14px;
        max-width: 420px;
        box-shadow: 0 12px 40px rgba(11, 116, 222, 0.12);
    }
}

.trip-type {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.trip-type label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 12px;
}

.trip-type input[type=radio] {
    accent-color: var(--accent)
}

.fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 768px) {
    .fields {
        grid-template-columns: 1fr 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column
}

label {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 4px;
    font-weight: 600;
}

input[type=text],
input[type=date],
input[type=number],
select {
    padding: 10px 10px;
    border-radius: 8px;
    border: 1px solid #eef7fb;
    background: #fbfdff;
    font-size: 13px;
}

@media (min-width: 768px) {
    input[type=text],
    input[type=date],
    input[type=number],
    select {
        font-size: 14px;
        padding: 10px 12px;
    }
}

input::placeholder {
    color: #9aa6b2
}

.gap-2 {
    grid-column: span 2
}

@media (max-width: 767px) {
    .gap-2 {
        grid-column: span 1;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    background: var(--accent);
    color: white;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer
}

.muted {
    font-size: 0.9rem;
    color: var(--muted)
}

.deals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.deal {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), #f8feff);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #eef7fb;
    box-shadow: 0 6px 18px rgba(11, 116, 222, 0.04)
}

/* Additional content styles */
.features h2,
.destinations h2,
.testimonials h2,
.faq h2 {
    margin: 0;
    font-size: 1.35rem
}

.features .muted,
.destinations .muted,
.testimonials .muted {
    color: var(--muted)
}

.destinations img {
    transition: transform .28s ease
}

.destinations img:hover {
    transform: scale(1.04)
}

.testimonials p {
    color: #0b1720
}

.faq details summary {
    cursor: pointer;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px
}

.faq details div {
    padding: 8px 12px
}

.cta .btn {
    padding: 12px 20px;
    border-radius: 10px
}

/* layout and card styles moved from inline attributes */
.brand-text {
    line-height: 1
}

.brand-title {
    font-weight: 700
}

.brand-tagline {
    font-size: 12px;
    color: var(--muted)
}

/* Make the brand text clickable and keyboard accessible site-wide */
.brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-link:focus {
    outline: 3px solid rgba(11,116,222,0.12);
    border-radius: 8px;
}

/* SVG sizing inside the logo container */
.logo svg {
    width: 26px;
    height: 26px;
    display: block;
}

.features {
    margin-top: 36px;
    padding: 28px 16px
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 14px;
}

.feature-card {
    background: linear-gradient(180deg, #fff, #f8feff);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(11, 116, 222, 0.04)
}

.feature-card h3 {
    margin: 8px 0
}

.feature-icon {
    font-size: 22px;
    color: var(--accent)
}

.destinations {
    padding: 28px 16px
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.destination-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(11, 116, 222, 0.06);
    background: #fff
}

.destination-card img {
    width: 100%;
    /* make images square and responsive to the card width */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.destination-info {
    padding: 10px
}

.testimonials {
    padding: 28px 16px
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.testimonial-card {
    background: #fff;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(11, 116, 222, 0.04)
}

.testimonial-author {
    font-weight: 700;
    margin-top: 8px
}

.faq {
    padding: 28px 16px;
}

.faq-list {
    margin-top: 12px;
    display: grid;
    gap: 12px;
    max-width: 980px;
}

.faq-item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f8feff);
    border: 1px solid rgba(11,116,222,0.04);
    box-shadow: 0 10px 30px rgba(11,116,222,0.04);
    transition: box-shadow .18s ease, transform .12s ease;
}

.faq-item:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(11,116,222,0.06); }

/* Style the clickable summary to look like a header row */
.faq-item summary {
    list-style: none; /* remove default marker */
    cursor: pointer;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    background: transparent;
}

.faq-item summary::-webkit-details-marker { display: none; }

/* Add a subtle plus/minus indicator using ::after */
.faq-item summary::after{
    content: '+';
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid rgba(11,116,222,0.06);
    background: #fff;
    color: var(--accent);
    font-weight: 800;
    margin-left: 8px;
}

.faq-item[open] summary::after{ content: '\2013'; /* en dash as minus */ transform: none; }

.faq-item summary:focus{
    outline: 3px solid rgba(11,116,222,0.12);
    outline-offset: 2px;
    border-radius: 8px;
}

.faq-item > div {
    padding: 14px 18px 18px;
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.45;
    background: linear-gradient(180deg, rgba(243,249,255,0.8), rgba(255,255,255,0.95));
    border-top: 1px solid rgba(11,116,222,0.02);
}

/* Smooth open/close (works in browsers that animate height of details content) */
.faq-item[open] {
    box-shadow: 0 22px 50px rgba(11,116,222,0.06);
}

.cta {
    padding: 40px 24px;
    text-align: center;
    background: linear-gradient(180deg, #f8feff, #fff);
    border-radius: 16px;
    margin: 28px auto;
    max-width: 900px;
    box-shadow: 0 18px 50px rgba(11, 116, 222, 0.08);
    border: 1px solid rgba(11, 116, 222, 0.04);
}

.cta-title {
    margin: 0 0 10px;
    font-size: 1.75rem;
    color: var(--accent);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.cta p.muted {
    color: var(--muted);
    max-width: 56ch;
    margin: 0 auto
}

.cta-actions {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.cta .btn {
    padding: 14px 22px;
    font-size: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(11, 116, 222, 0.12);
    transition: transform .12s ease, box-shadow .12s ease;
}

.cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(11, 116, 222, 0.18)
}

/* FOOTER */
footer {
    background: #0b1720;
    color: #cfeafc;
    padding: 48px 0;
    margin-top: 36px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 250px;
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px
}

.footer-grid h4 {
    margin: 0 0 12px
}

.socials a {
    color: inherit;
    margin-right: 10px
}

.newsletter input {
    padding: 10px;
    border-radius: 8px;
    border: 0;
    margin-right: 8px
}

/* replacements for inline styles */
.section-title {
    margin-top: 0
}

.gap-2-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px
}

.popular-title {
    font-size: 0.85rem
}

.popular-chips {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap
}

.chip {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid #eef7fb;
    background: #fff;
    cursor: pointer
}

.footer-desc {
    color: rgba(207, 234, 252, 0.9);
    max-width: 36ch
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(207, 234, 252, 0.95)
}

.footer-link {
    color: inherit;
    text-decoration: none
}

.newsletter-row {
    display: flex;
    margin-top: 8px
}

.newsletter-input {
    flex: 1;
    border-radius: 8px;
    padding: 10px;
    border: 0
}

.subscribe-btn {
    margin-left: 8px
}

.socials-top {
    margin-top: 14px
}

.site-credits {
    text-align: center;
    color: rgba(207, 234, 252, 0.8);
    margin-top: 24px;
    font-size: 13px
}

/* responsive */
@media (max-width:980px) {
    .hero-content {
        grid-template-columns: 1fr;
        align-items: start;
        padding: 28px
    }

    /* ensure deals grid adapts gracefully on medium screens */
    .deals { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

    /* prefer hiding nav links and showing hamburger on smaller widths */
    .nav-links { display: none !important; }
    .hamburger { display: inline-flex !important; }

    /* When menu is open we'll show the overlay to block background interactions */
    .nav-overlay { display: none; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width:600px) {
    .hero-wrap { height: auto; }

    .deals { grid-template-columns: 1fr; }

    .fields { grid-template-columns: 1fr; }

    .gap-2 { grid-column: span 1; }

    .brand .logo { width: 40px; height: 40px; }
}

/* Additional responsive adjustments */
@media (max-width:1200px) {
    .hero-content {
        grid-template-columns: 1fr 340px;
        padding: 36px
    }

    .container {
        padding: 12px
    }
}

/* Override inline grid styles used in HTML for better responsiveness */
.features>div {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px !important
}

.destinations>div {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important
}

.testimonials>div {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important
}

@media (max-width:900px) {
    .features>div {
        grid-template-columns: repeat(2, 1fr) !important
    }

    .destinations>div {
        grid-template-columns: repeat(2, 1fr) !important
    }

    .testimonials>div {
        grid-template-columns: repeat(2, 1fr) !important
    }
}

@media (max-width:640px) {
    .features>div { grid-template-columns: 1fr !important; }
    .destinations>div { grid-template-columns: 1fr !important; }
    .testimonials>div { grid-template-columns: 1fr !important; }

    /* make search card full width and stack nicely */
    .search-card { width: 100%; box-shadow: 0 10px 30px rgba(11, 116, 222, 0.08); padding: 12px; }
    .search-card .fields { gap: 8px; }
    .search-card input, .search-card select { padding: 8px; font-size: 13px; }
    .search-card .btn { padding: 6px 8px; font-size: 11px; }

    .hero-wrap { height: auto; padding-bottom: 16px; }
    .hero-content { padding: 12px 14px; grid-template-columns: 1fr; gap: 14px; }

    /* prefer clamp on hero font; kept smaller on tiny screens */
    .hero h1 { font-size: clamp(1.1rem, 5vw, 1.6rem); margin: 2px 0 6px; }
    .hero p { font-size: 13px; margin-bottom: 8px; }
    .eyebrow { padding: 4px 8px; font-size: 11px; margin-bottom: 8px; }

    .nav-links { display: none !important; }
    .hamburger { display: inline-flex !important; }

    /* Make brand area tighter on tiny screens */
    .brand { gap: 6px; }
    .brand-text { display: none; }
    .logo { width: 36px; height: 36px; font-size: 0.9rem; }

    .footer-grid { grid-template-columns: 1fr !important; padding: 12px; }
    .container { padding: 8px; }
}

@media (max-width: 380px) {
    .hero h1 { font-size: clamp(1rem, 4.5vw, 1.4rem); margin: 2px 0 4px; }
    .hero p { font-size: 12px; line-height: 1.3; }
    .eyebrow { padding: 3px 6px; font-size: 10px; }
    .search-card { padding: 10px; }
    .search-card .fields { gap: 6px; }
    .search-card input, .search-card select { padding: 6px; font-size: 12px; }
    .search-card .btn { padding: 6px 8px; font-size: 11px; }
    .site-container { padding: 12px var(--page-padding) 24px; }
    .hero-content { padding: 10px 8px; }
}

/* small touch targets and keyboard focus */
button,
a.nav-cta,
.btn {
    touch-action: manipulation
}

a:focus,
button:focus,
input:focus,
select:focus {
    outline: 3px solid rgba(11, 116, 222, 0.18);
    outline-offset: 3px
}

/* ensure images scale and cards breathe on small widths */
.destinations img {
    width: 100%;
    height: auto
}

.features div,
.testimonials div {
    min-height: 0
}