:root {
    --primary-color: #008080;
    /* Teal */
    --secondary-color: #004d4d;
    /* Dark Teal */
    --accent-color: #DAA520;
    /* GoldenRod */
    --accent-hover: #B8860B;
    /* Dark GoldenRod */
    --text-dark: #222;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --red-stats: #a00000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 40px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.align-center {
    align-items: center;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #008080 0%, #004d4d 100%);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background: #FDF9F6;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.logo-icon-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a0a0 100%);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.25);
    color: #fff;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.brand-name span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-phone i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.nav-phone div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-phone span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.nav-phone a {
    font-weight: 700;
    color: var(--text-dark);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)), url('assets/img/hero_bg.jpg') no-repeat center center/cover;
    min-height: 600px;
    padding: 50px 0;
    /* Reduced from 100vh to ensure content flow */
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-tagline {
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f9f9f9;
    font-size: 17px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.payment-icons img {
    height: 35px;
    object-fit: contain;
    transition: transform 0.3s;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 5px;
    background: #fff;
}

.payment-icons img:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.secure-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Trusted Agency */
.rounded-img {
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.check-list i {
    color: var(--primary-color);
    /* Or green */
}

.rating {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.rating span {
    color: var(--text-light);
    margin-left: 10px;
    font-weight: 600;
}

/* How to Book */
.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 128, 128, 0.2);
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

/* Deals Section */
.call-action {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    background: #eef4fc;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.call-action i {
    font-size: 2rem;
    color: var(--primary-color);
}

.call-action h3 {
    margin: 0;
    color: var(--primary-color);
}

/* Stats Section */
.stats-section {
    background: var(--bg-light);
    /* Clean background behind the banner */
    position: relative;
    padding: 40px 0;
}

/* Banner style overlay */
.stats-banner {
    background: linear-gradient(135deg, #008080 0%, #004d4d 100%);
    /* Premium Blue Gradient */
    border-radius: 20px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 50, 150, 0.15);
    /* Blue-ish shadow */
    position: relative;
    overflow: hidden;
}

/* Subtle decorative circle */
.stats-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.stats-banner h2 {
    color: var(--white);
    max-width: 500px;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.stat-content p {
    max-width: 500px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.stats-bubbles {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    /* Safety for mobile */
    position: relative;
    z-index: 2;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    width: 150px;
    height: 150px;
    border-radius: 20px;
    /* Modern Soft Square */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.stat-bubble:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-bubble h3 {
    color: var(--accent-color);
    /* Highlight number */
    margin: 0;
    font-size: 2.2rem;
    font-weight: 800;
}

.stat-bubble p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--white);
    font-weight: 500;
    line-height: 1.2;
}

/* Airlines Grid */
.airlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Larger cards */
    gap: 30px;
    margin: 40px 0;
}

.airline-card {
    background: var(--white);
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.airline-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.airline-card img {
    height: 50px;
    margin-bottom: 20px;
    object-fit: contain;
    max-width: 100%;
}

.airline-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.airline-card p {

    color: var(--text-light);
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Why Book (Values) */
.features-grid.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.white-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    /* Circle */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Footer CTA */
.footer-cta-wrapper {
    background: var(--primary-color);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.footer-cta h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta-orange {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
}

.btn-cta-white {
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
}

/* Footer Links */
.footer-links {
    background: #111;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #999;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-col p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .cta-buttons {
        flex-direction: column;
    }

    .grid-2,
    .stats-banner,
    .features-grid.three-col,
    .footer-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .stats-banner {
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .stats-bubbles {
        justify-content: center;
        flex-wrap: wrap;
    }

    .image-wrapper {
        /* Order images top on mobile in some cases */
        order: -1;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

.mobile-fixed-btn {
    display: none;
}

.main-img img {
    object-fit: cover;
    height: 800px;
}

@media (max-width: 768px) {
    .main-img img {
        object-fit: cover;
        height: auto;
    }

    .nav-links {
        display: none;
        /* simple hide for now, requires js toggle */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile Fixed Button */
    .mobile-fixed-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #008080 0%, #004d4d 100%);
        color: var(--white);
        padding: 15px;
        font-weight: 700;
        font-size: 1.2rem;
        z-index: 2000;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
        text-transform: uppercase;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer {
        padding-bottom: 70px;
        /* Prevent button covering footer content */
    }
}

@media (max-width: 768px) {
    .brand-logo {
        gap: 8px;
    }

    .logo-icon-box {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .logo-icon-box i {
        font-size: 1.1rem;
    }

    .brand-name {
        font-size: 1.25rem;
    }
}