/* =========================================
   VARIABLES & DESIGN SYSTEM
   ========================================= */
:root {
    --primary: #ff000d; /* Exact Red from logo */
    --primary-light: #ff333d;
    --secondary: #009ee3; /* Exact Blue from logo */
    --dark: #1a1a2e;
    --darker: #10101a;
    --light: #f8f9fa;
    --white: #ffffff;
    --text-main: #333333;
    --text-muted: #6c757d;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
    --radius: 12px;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Cooper Black", serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Cooper Black", serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: var(--secondary); /* Use airplane blue for headings */
}
h1 { font-size: 3.2rem; }
h2 { font-size: 2.6rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.highlight { color: var(--primary); }
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(242, 92, 5, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(242, 92, 5, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

/* =========================================
   NAVIGATION
   ========================================= */
#navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

#navbar.scrolled {
    /* No longer needed as default is now solid */
}

#navbar.scrolled .logo-text,
#navbar.scrolled .nav-phone {
    color: var(--text-main);
}

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

.nav-links {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}
#navbar.scrolled .mobile-menu-btn {
    color: var(--text-dark);
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        display: flex;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--text-dark) !important;
        font-size: 22px;
    }
    .nav-links a::after {
        display: none;
    }
    .nav-contact {
        display: none;
    }
    .logo-text {
        font-size: 1.4rem;
    }
    .logo-icon {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
    .nav-links a {
        color: var(--text-main);
        font-weight: 600;
        font-size: 22px;
        position: relative;
        text-decoration: none;
        transition: color 0.3s;
    }
    #navbar.scrolled .nav-links a {
        color: var(--text-main);
    }
    .nav-links a:hover, .nav-links a.active,
    #navbar.scrolled .nav-links a:hover, #navbar.scrolled .nav-links a.active {
        color: var(--primary);
    }
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary);
        transition: width 0.3s ease;
    }
    .nav-links a:hover::after, .nav-links a.active::after {
        width: 100%;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--secondary);
    font-size: 2rem;
}

.logo-text {
    font-family: "Cooper Black", serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-phone {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-phone:hover {
    color: var(--primary);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../images/hero_tropical_resort.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Floating Hero Bar */
.hero-glass-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2.5rem;
    border-radius: 60px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-glass-bar {
        flex-direction: column;
        border-radius: 20px;
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

.hero-glass-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.hero-glass-item i {
    font-size: 1.8rem;
    color: var(--primary);
    background: rgba(255,255,255,0.9);
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero-glass-item .glass-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-glass-item strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.hero-glass-btn {
    padding: 1rem 2rem;
    box-shadow: 0 5px 15px rgba(230,0,0,0.4);
}

/* Animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
    padding: 8rem 0;
    background-color: var(--white);
}

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

.section-title {
    font-family: "Cooper Black", serif;
    font-size: 3.2rem;
    color: var(--secondary); /* Blue color matching the logo/airplane */
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.section-title em {
    font-style: italic;
    color: var(--primary); /* Red color matching the logo */
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 4rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary); /* Matching the new logo blue */
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.about-gallery {
    position: relative;
    height: 500px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.6s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    z-index: 10 !important;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.item-1 {
    width: 55%;
    height: 280px;
    top: 0;
    left: 0;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}
.item-2 {
    width: 50%;
    height: 240px;
    bottom: 20px;
    left: 10%;
    z-index: 3;
    animation: float 8s ease-in-out infinite reverse;
}
.item-3 {
    width: 60%;
    height: 320px;
    top: 100px;
    right: 0;
    z-index: 1;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@media (max-width: 768px) {
    .about-gallery {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .gallery-item {
        position: relative;
        width: 100% !important;
        height: 250px !important;
        top: 0 !important; left: 0 !important; right: 0 !important;
        animation: none !important;
    }
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */
.why-choose-us {
    padding: 6rem 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(0, 158, 227, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 0% 100%, rgba(255, 0, 13, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-box {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 158, 227, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 2.2rem;
    transition: all 0.5s ease;
}

.feature-box:hover .feature-icon-wrapper {
    background: var(--secondary);
    color: var(--white);
    transform: rotateY(360deg);
}

.feature-box h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* =========================================
   PACKAGES SECTION
   ========================================= */
.packages {
    padding: 6rem 0;
    background-color: transparent;
}

.title-underline {
    height: 4px;
    width: 80px;
    background: var(--primary);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.package-img {
    height: 240px;
    width: 100%;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-img img {
    transform: scale(1.05);
}

.package-info {
    padding: 2rem 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-img {
    position: relative;
}

.glass-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 600;
}

.package-rating {
    color: #f59e0b; /* Golden star */
    background: #fffbeb;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
}

.package-info h3 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.package-info p {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 500;
    flex-grow: 1;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.package-price {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.package-price span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* =========================================
   TOUR BOOK NOW PARALLAX
   ========================================= */
.book-now-parallax {
    position: relative;
    padding: 8rem 0;
    background-image: url('../images/tropical_beach_people.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(0, 158, 227, 0.7) 100%);
}

.parallax-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.parallax-content h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.parallax-content p {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.parallax-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.parallax-actions .btn-outline {
    backdrop-filter: blur(5px);
}

.parallax-actions .btn-outline:hover {
    background: var(--white);
    color: var(--secondary) !important;
}

@media (max-width: 768px) {
    .book-now-parallax {
        padding: 5rem 0;
        background-attachment: scroll; /* Better performance on mobile */
    }
    .parallax-content h2 {
        font-size: 2.2rem;
    }
    .parallax-actions {
        flex-direction: column;
        align-items: center;
    }
    .parallax-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* =========================================
   NEWS & FEATURES SECTION
   ========================================= */
.news-features {
    padding: 6rem 0;
    background-color: transparent;
}

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

.feature-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.05);
}

.feature-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-overlay-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
    color: var(--white);
}

.feature-content {
    padding: 2.5rem 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bg-brand {
    background: linear-gradient(135deg, var(--primary), #b30000);
    color: var(--white);
}

.feature-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-content .feature-link {
    color: var(--white);
    font-weight: 700;
    text-decoration-color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.feature-content .feature-link:hover {
    color: var(--white);
    text-decoration-color: var(--white);
}

.feature-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-top: auto;
}

.feature-link:hover {
    color: var(--primary);
}

/* =========================================
   CTA BANNER SECTION
   ========================================= */
.cta-section {
    padding: 4rem 0;
    background-color: #fdfaf5; /* Light background for contrast */
}

.cta-banner {
    background: linear-gradient(135deg, var(--secondary), #0077ab); /* Logo blue gradient */
    padding: 3.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-text h2 {
    font-family: "Cooper Black", serif; /* Matching the rest of the site */
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.cta-btn {
    background-color: var(--primary); /* Logo red */
    color: var(--white);
    border-radius: 50px; /* Matching site buttons */
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 0, 13, 0.3);
    transition: var(--transition);
}

.cta-btn:hover {
    background-color: #d6000b;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 13, 0.5);
}

@media (max-width: 768px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }
    .cta-text h2 {
        font-size: 2.2rem;
    }
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.footer {
    position: relative;
    background-image: url('../images/summer_getaway_hd.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-main);
    padding-top: 6rem;
}

.footer-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.85); /* Light overlay for contrast */
}

.footer-container {
    position: relative;
    z-index: 10;
}

.footer-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    padding-bottom: 4rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.contact-item:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p, .contact-item a {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary);
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 115, 230, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 115, 230, 0.3);
}

.footer-bottom {
    position: relative;
    z-index: 10;
    background-color: var(--secondary);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    font-size: 1.2rem;
    font-family: "Cooper Black", serif;
    font-weight: 600;
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.feature-card, .package-card, .gallery-item, .contact-item, .about-text {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card.animate-show, 
.package-card.animate-show, 
.gallery-item.animate-show, 
.contact-item.animate-show, 
.about-text.animate-show {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Grid Elements */
.packages-grid .package-card:nth-child(1) { transition-delay: 0.1s; }
.packages-grid .package-card:nth-child(2) { transition-delay: 0.2s; }
.packages-grid .package-card:nth-child(3) { transition-delay: 0.3s; }

.about-gallery .gallery-item:nth-child(1) { transition-delay: 0.1s; }
.about-gallery .gallery-item:nth-child(2) { transition-delay: 0.2s; }
.about-gallery .gallery-item:nth-child(3) { transition-delay: 0.3s; }

.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }

/* Preserve Hover Effects for Animated Elements */
.package-card.animate-show:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition-delay: 0s;
}
.feature-card.animate-show:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    transition-delay: 0s;
}
.contact-item.animate-show:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    transition-delay: 0s;
}

/* =========================================
   ANIMATIONS & RESPONSIVE
   ========================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 65vh;
        min-height: 500px;
    }
    .hero .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        width: auto;
        display: inline-block;
    }
    #navbar {
        padding: 1rem 0;
    }
    .nav-contact .btn {
        display: none;
    }
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Keep headings small on mobile */
    h1, .page-title { font-size: 2.2rem !important; }
    h2, .section-title { font-size: 1.8rem !important; }
    h3 { font-size: 1.5rem !important; }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   APP-LIKE MOBILE BOTTOM NAVIGATION
   ========================================= */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 991px) {
    body {
        padding-bottom: 70px; /* Space for the bottom nav */
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 -5px 20px rgba(0,0,0,0.08);
        z-index: 9999;
        padding-bottom: env(safe-area-inset-bottom); /* iOS support */
        justify-content: space-around;
        align-items: center;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .mobile-bottom-nav .nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0.8rem 0;
        color: var(--text-muted);
        font-size: 0.75rem;
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
        position: relative;
    }

    .mobile-bottom-nav .nav-item i {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
        transition: transform 0.3s ease;
    }

    .mobile-bottom-nav .nav-item.active,
    .mobile-bottom-nav .nav-item:hover {
        color: var(--primary);
    }

    .mobile-bottom-nav .nav-item.active i {
        transform: translateY(-2px);
    }

    .mobile-bottom-nav .nav-item.active::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background-color: var(--primary);
        border-radius: 0 0 4px 4px;
    }

    /* Hide traditional mobile menu items */
    .mobile-menu-btn {
        display: none !important;
    }
    
    .nav-links {
        display: none !important;
    }

    /* Additional mobile optimisations for 'app-like' feel */
    .container {
        padding: 0 16px; /* Slightly tighter padding */
    }
    
    .section-title {
        font-size: 2rem !important; /* Proper sizing for app */
    }
    
    .feature-box, .package-card {
        border-radius: 16px; /* Slightly softer corners on mobile */
    }

    /* Reduce huge vertical gaps between sections on mobile */
    section, .about, .packages, .news-features, .why-choose-us, .cta-section {
        padding: 3rem 0 !important;
    }

    .cta-banner {
        margin-top: -1rem; /* Pull it slightly up if needed */
        margin-bottom: 2rem;
    }
}
