:root {
    --primary: #1E243A; /* Deep blue for trust, inspired by Expedia */
    --primary-light: #2C3E50;
    --accent: #F59E0B; /* Sunset gold: warmer, premium feel */
    --accent-light: #FBBF24;
    /* RGB versions for rgba() helpers */
    --accent-rgb: 245, 158, 11;
    --accent-light-rgb: 251, 191, 36;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
}

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

html {
    scroll-behavior: smooth;
}

/* Typography tweaks: Inter for body text, Poppins for headings */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--primary);
}

h1, h2, h3 {
    font-family: 'Poppins', 'Segoe UI', Roboto, sans-serif;
}

/* Container with more whitespace */
.container {
    max-width: 1320px; /* Slightly wider for modern screens */
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar: Cleaner, with shadow for depth */
.navbar {
    background: rgba(30, 36, 58, 0.95); /* Semi-transparent for overlay feel */
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
}

.logo svg {
    width: 36px;
    height: 36px;
    stroke: var(--accent-light);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(var(--accent-rgb), 0.2);
}

.contact-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(var(--accent-rgb), 0.3);
}

/* Hero: Taller, with softer gradient for sky feel */
.hero {
    /* keep headline area darker, move gold accents toward the right */
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 55%, var(--accent-light) 80%, var(--accent) 100%);
    padding: 10rem 0 5rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    /* Ensure hero copy is readable on the vibrant coral/gradient background */
    color: var(--white);
}

.hero-strapline {
    margin-bottom: 1.75rem;
    font-size: 1.125rem;
    color: rgba(255,255,255,0.92);
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}
.hero-strapline span {
    opacity: 0.95;
    font-weight: 600;
}
/* insert dot separators only between the three main phrases (exclude the hours badge) */
.hero-strapline span:not(.strapline-hours) + span:not(.strapline-hours)::before {
    content: "•";
    margin: 0 0.65rem;
    color: rgba(var(--accent-rgb), 0.95);
    font-weight: 700;
}
.strapline-hours {
    background: var(--accent);
    color: var(--primary);
    font-weight: 800;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    margin-left: 0.25rem;
    font-size: 0.95rem;
    /* subtle pulse to draw attention */
    animation: badgePulse 2.6s ease-in-out infinite;
}

@keyframes badgePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0); }
    50% { transform: scale(1.06); box-shadow: 0 8px 22px rgba(var(--accent-rgb), 0.12); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0); }
}

.hero-content h1 {
    font-size: 4rem; /* Larger for impact */
    line-height: 1.1;
    margin-bottom: 1.75rem;
}

.hero-content p {
    font-size: 1.375rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.feature svg {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.hero-card {
    /* Cleaner card: square-ish corners, subtle border to feel premium */
    background: rgba(255, 255, 255, 0.06);
    padding: 2rem;
    border-radius: 8px;
    color: var(--white);
    text-align: center;
    border: 1px solid rgba(var(--accent-rgb), 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.offer-badge {
    background: var(--primary);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
}

.hero-card h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.hero-card p {
    opacity: 0.95;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

/* Airlines: Larger cards, hover effects */
.airlines {
    background: var(--gray-100);
    padding: 6rem 0;
}

.airlines h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: var(--primary);
}

.airlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.airline-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.airline-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.airline-icon {
    background: var(--accent);
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.airline-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.partner-number {
    color: var(--gray-400);
    font-size: 1rem;
}

/* Features: Updated gradient, larger cards */
.features {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    padding: 6rem 0;
    color: var(--white);
}

.features h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    /* Improve contrast: use a subtle dark overlay for cards on the gold background */
    background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.14));
    padding: 2.25rem;
    border-radius: 18px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--white);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0,0,0,0.22);
}

.feature-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 1px 0 rgba(0,0,0,0.12);
}

.feature-card p {
    opacity: 0.98;
    font-size: 1.125rem;
    color: rgba(255,255,255,0.95);
}

/* About: Centered, more line height */
.about {
    background: var(--white);
    padding: 6rem 0;
}

.about .container {
    text-align: center;
}

.about h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.about p {
    font-size: 1.25rem;
    color: var(--gray-500);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Footer: Cleaner links */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 7rem;
    position: relative;
    z-index: 999;
}

.footer-bottom {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom p {
    color: var(--gray-400);
    margin: 0;
    font-size: 0.875rem;
}

/* Sticky CTA: Bolder, with icon scale */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: var(--primary);
    padding: 0.75rem 1rem;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.12);
    animation: slideUp 0.35s ease-out;
}

.sticky-cta a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.18s ease;
    font-size: 1.25rem;
}

.sticky-cta a span {
    font-size: 1.6rem; /* Slightly smaller to match new tone */
    white-space: nowrap;
}

.sticky-cta a svg {
    width: 1.6rem;
    height: 1.6rem;
    transition: transform 0.18s ease;
}

.sticky-cta a:hover svg {
    transform: scale(1.1);
}

/* Animations: Smoother */
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(var(--accent-rgb), 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0); }
}

.cta-button {
    /* Shiny primary CTA: gold gradient, stronger weight, shimmer on hover */
    animation: none;
    font-size: 1.25rem;
    padding: 0.95rem 2.25rem;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    color: var(--primary);
    border: 0;
    box-shadow: 0 8px 22px rgba(var(--accent-rgb), 0.12);
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 48px rgba(var(--accent-rgb), 0.18);
}

/* shimmer overlay */
.cta-button::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -50%;
    width: 200%;
    height: 220%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%) rotate(12deg);
    pointer-events: none;
    opacity: 0;
}

@keyframes shineMove {
    0% { transform: translateX(-100%) rotate(12deg); opacity: 0; }
    40% { opacity: 0.9; }
    100% { transform: translateX(100%) rotate(12deg); opacity: 0; }
}

.cta-button:hover::after { animation: shineMove 0.9s ease-in-out forwards; }

.cta-button .phone-medium, .cta-button span { font-weight: 800; }

/* Popup removed: site uses direct tel: links for calls; popup CSS intentionally removed */

/* Booking modal removed: modal CSS intentionally deleted to avoid orphan styles */

@keyframes pulsePhone {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* Popup removed: no desktop hide media query required */

/* Responsive: Enhanced for PPC mobile conversions */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .feature {
        justify-content: center;
    }

    .sticky-cta {
        padding: 0.75rem;
    }

    .sticky-cta a span {
        font-size: 1.75rem;
    }

    /* popup-specific responsive rules removed (popup deleted) */
}