:root {
    --primary: #015f80;       /* Deep Ocean Blue */
    --secondary: #028090;     /* Teal Blue */
    --accent: #00a896;        /* Fresh Aqua */
    --gold: #f4c542;          /* Warm Golden Yellow */
    --light-gold: #ffd166;    /* Soft Sunlit Gold */
    --dark-gold: #c59b20;     /* Rich Deep Gold */
    --light: #f9fafc;         /* Clean Light Background */
    --dark: #2b2b2b;          /* Charcoal for Text */
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}
        
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}
        
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
        
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    box-shadow: 0 5px 15px rgba(202, 173, 42, 0.4);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
        
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(202, 173, 42, 0.5);
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
}
        
section {
    padding: 80px 0;
}
        
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
        
.section-title h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}
        
.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--gold);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}
        
header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 15px 0;
}
        
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
        
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
    padding-top: 10px;
    background-color: rgba(255, 255, 255, 0.7); /* semi-transparent white */
    border-radius: 8px; /* optional: rounded corners */
    padding: 5px; /* space inside background */
}

header.scrolled .logo {
    color: var(--primary);
}
        
nav ul {
    display: flex;
    list-style: none;
}
        
nav ul li {
    margin-left: 30px;
}
        
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a.active {
  color: var(--gold);
}

header.scrolled nav ul li a {
    color: var(--primary);
}

header.scrolled nav ul li a:hover {
    color: var(--gold);
}
        
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}
        
header.scrolled .mobile-menu-btn {
    color: var(--primary);
}

.mobile-menu-btn i {
    transition: color 0.3s ease;
}

header.menu-open .mobile-menu-btn i {
    color: var(--gold);
}
        
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
        
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1200px;
    width: 90%;
    padding: 0 20px;
}
        
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.9);
    animation: fadeInDown 1s ease;
    margin-top: 80px;
    margin-bottom: 30px;
}
        
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}
        
.hero-scroll span {
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 1px;
}
        
.hero-scroll i {
    font-size: 20px;
    animation: bounce 2s infinite;
}
        
/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
        
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
        
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
        
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.info-bar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(202, 173, 42, 0.15);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
        
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
        
.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    border-radius: 12px;
    background: rgba(106, 188, 199, 0.1);
    transition: all 0.3s ease;
}
        
.info-item:hover {
    background: rgba(106, 188, 199, 0.2);
    transform: translateY(-3px);
}
        
.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    color: white;
    font-size: 20px;
}
        
.info-label {
    font-size: 14px;
    color: var(--dark-gold);
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
        
.info-value {
    font-family: 'Montserrat', serif;
    font-size: 15px;
    font-weight: 500;
    color: #015f80;
}

.packages-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
        
/* Packages Grid */
.packages-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
        
.package-card-modern {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(1, 95, 128, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}
        
.package-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(1, 95, 128, 0.2);
}
        
.package-img-modern {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
        
.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
        
.package-content-modern {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
        
.package-content-modern h3 {
    font-size: 22px;
    color: #015f80;
    margin-bottom: 12px;
    font-weight: 700;
}
        
.package-content-modern p {
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
        
.price-tag {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}
        
.price-note {
    font-size: 14px;
    color: #ffffff;
    margin-top: 5px;
}
        
/* Button Styling */
.btn-package {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(1, 95, 128, 0.3);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
        
.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(1, 95, 128, 0.4);
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
}
        
.btn-package i {
    margin-left: 8px;
    font-size: 14px;
}
        
/* Package Features */
.package-features {
    margin: 15px 0;
    padding: 0;
    list-style: none;
}
        
.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #5a5a5a;
}
        
.package-features li i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 14px;
}
        
/* Decorative Elements */
.water-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%23015f80"></path></svg>');
    background-size: cover;
    opacity: 0.5;
}
        
/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
        
.package-card-modern {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}
        
.package-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}
        
.package-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}
        
.package-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
        
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}
        
.feature-card:hover {
    transform: translateY(-10px);
}
        
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}
        
.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 22px;
}
        
.feature-card p {
    color: #666;
    line-height: 1.6;
}
        
.resorts-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
        
.resorts-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
        
/* Resort Grid */
.resorts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
        
/* Resort Card Styling */
.resort-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
        
.resort-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 105, 148, 0.15);
}
        
.resort-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
        
.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
        
.resort-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
        
.rating {
    color: #FFC107;
    margin-bottom: 10px;
}
        
.resort-content h3 {
    font-size: 1.4rem;
    color: #006994;
    margin-bottom: 10px;
}
        
.resort-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
}
        
.btn-resort {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    box-shadow: 0 4px 15px rgba(202, 173, 42, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}
        
.btn-resort:hover {
    box-shadow: 0 6px 20px rgba(202, 173, 42, 0.4);
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
}
        
/* Water Wave Effect */
.water-wave {
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23006994"></path></svg>');
    background-size: 1200px 100px;
    background-repeat: repeat-x;
    margin-top: 60px;
}
        
/* Rating Stars */
.rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}
        
.rating i {
    color: #FFC107;
    font-size: 16px;
}
        
.excursions-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
        
/* Excursions Grid */
.excursions-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
        
.excursion-card-modern {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(1, 95, 128, 0.15);
    transition: all 0.4s ease;
    height: 300px;
}
        
.excursion-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(1, 95, 128, 0.25);
}
        
.excursion-img-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.5s ease;
}
        
.excursion-card-modern:hover .excursion-img-modern {
    transform: scale(1.05);
}
        
.excursion-overlay-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(1, 95, 128, 0.85), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}
        
.excursion-card-modern:hover .excursion-overlay-modern {
    transform: translateY(0);
    opacity: 1;
}
        
.excursion-overlay-modern h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}
        
.excursion-overlay-modern p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}
        
.btn-excursion {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(202, 173, 42, 0.9);
    box-shadow: 0 5px 15px rgba(202, 173, 42, 0.4);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
        
.btn-excursion:hover {
    background: var(--gold);
    transform: translateX(5px);
}
        
.btn-excursion i {
    margin-left: 8px;
    font-size: 14px;
}
        
/* Top Label */
.excursion-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}
        
        /* Facts Section */
        .facts-section {
            padding: 80px 0;
        }
        
        .facts-container {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 15px;
            padding: 50px;
            color: white;
            box-shadow: var(--shadow);
        }
        
        .facts-container h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 32px;
            color: white;
        }
        
        .facts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .fact-item {
            text-align: center;
        }
        
        .fact-item i {
            font-size: 40px;
            color: var(--gold);
            margin-bottom: 15px;
        }
        
        .fact-item h3 {
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        .fact-item p {
            opacity: 0.9;
        }

/* Mobile Responsive */
@media (max-width: 768px) {
    .facts-section {
        padding: 40px 0;
    }
    
    .facts-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .facts-container h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .fact-item i {
        font-size: 35px;
    }
    
    .fact-item h3 {
        font-size: 18px;
    }
    
    .fact-item p {
        font-size: 14px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .facts-section {
        padding: 30px 0;
    }
    
    .facts-container {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .facts-container h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .fact-item i {
        font-size: 32px;
    }
}
        
.testimonials-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
        
/* Section Title Styling */
.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}
        
.section-title-center h2 {
    font-size: 36px;
    font-weight: 700;
    color: #015f80;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
        
.section-title-center h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--light-gold));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
        
.section-title-center p {
    font-size: 18px;
    color: #808080;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
        
/* Testimonials Grid */
.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
        
.testimonial-card-modern {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(1, 95, 128, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
        
.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(1, 95, 128, 0.2);
}
        
.testimonial-card-modern:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--light-gold));
}
        
.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
        
.rating i {
    color: #FFC107;
    font-size: 18px;
}
        
.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}
        
.testimonial-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a5a5a;
    font-style: italic;
    position: relative;
    padding: 0 10px;
}
        
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
        
.client-details h4 {
    font-size: 18px;
    color: #015f80;
    margin-bottom: 5px;
}
        
/* Decorative quote icon */
.quote-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.1;
    font-size: 60px;
    color: var(--gold);
    transform: rotate(180deg);
}
        
/* Background pattern */
.testimonials-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(106, 188, 199, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Media Section Styles */
.media-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f9fafc 0%, #ffffff 100%);
    position: relative;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.media-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(1, 95, 128, 0.15);
    height: 280px;
}

.media-item:hover {
    box-shadow: 0 15px 35px rgba(1, 95, 128, 0.25);
}

.media-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.media-item:hover .media-image {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .media-item {
        height: 220px;
    }
    
    .media-overlay {
        padding: 20px;
    }
    
    .media-content h3 {
        font-size: 18px;
    }
    
    .media-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .media-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .media-item {
        height: 200px;
    }
    
    .media-section {
        padding: 60px 0;
    }
}
        
/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f5f9fa;
}
        
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
        
.faq-question {
    padding: 20px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
        
.faq-answer {
    padding: 0 20px 20px;
    color: #5a5a5a;
    display: none;
}
        
.faq-question i {
    transition: transform 0.3s ease;
}
        
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
        
.faq-item.active .faq-answer {
    display: block;
}

/* Footer Styles */
footer {
    background: linear-gradient(to bottom, var(--primary), #014a66);
    color: white;
    padding: 2.5rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    text-align: left;
    margin-right: 20px;
}

.footer-logo-img {
    max-width: 100px;
    height: auto;
}

.footer-description {
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--light-gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--light-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--light-gold);
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--light-gold);
    margin-top: 0.15rem;
    min-width: 16px;
}

.contact-info span {
    opacity: 0.9;
    line-height: 1.4;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.8;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    /* Base adjustments */
    body {
        font-size: 14px;
        line-height: 1.5;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    /* Header adjustments */
    .header-container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 60px;
        padding-top: 5px;
    }
    
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(1, 95, 128, 0.98);
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    nav.active {
        display: flex;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        font-size: 18px;
        padding: 12px 25px;
        display: block;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        font-size: 28px;
    }
    
    /* Hero section - FIXED to not overflow */
    .hero {
        height: calc(100vh - 65px);
        padding-top: 70px;
        overflow: hidden;
    }
    
    .hero-content {
        width: 90%;
        padding: 0 10px;
        margin-top: -50px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-top: 0;
        margin-bottom: 40px;
        line-height: 1.2;
    }
    
    .hero-scroll {
        bottom: 30px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
        margin-top: 20px;
    }
    
    /* Info bar - COMPLETELY REORGANIZED */
    .info-bar {
        display: none;
        margin-top: 150px;
        padding: 12px 5px;
        border-radius: 12px;
        transform: translateY(-50%);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin: 0 auto;
        max-width: 90%;
    }
    
    .info-item {
        padding: 10px 5px;
        border-radius: 8px;
        margin: 0 2px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .info-label {
        display: none;
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .info-value {
        font-size: 12px;
        font-weight: 600;
    }
    
    /* Packages section - INCREASED MARGINS */
    .packages {
        padding: 40px 0;
    }
    
    .packages-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 0 20px;
    }
    
    .package-card-modern {
        margin-bottom: 20px;
    }
    
    /* Features section - INCREASED MARGINS */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 0 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    /* Resorts section - INCREASED MARGINS */
    .resorts {
        padding: 40px 0;
    }
    
    .resorts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 0 20px;
    }
    
    .resort-img {
        height: 200px;
    }
    
    .excursions-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .excursion-card-modern {
        height: 260px;
    }

    .excursion-overlay-modern {
        padding: 20px;
    }

    .excursion-overlay-modern h3 {
        font-size: 20px;
    }

    .excursion-overlay-modern p {
        font-size: 14px;
        line-height: 1.4;
    }

    .btn-excursion {
        padding: 8px 16px;
        font-size: 14px;
    }

    .section-title-center h2 {
        font-size: 28px;
    }

    .section-title-center p {
        font-size: 16px;
        padding: 0 10px;
    }
    
    /* Testimonials - INCREASED MARGINS */
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 0 20px;
    }
    
    .testimonial-card-modern {
        padding: 25px 20px;
    }
    
    /* FAQ section */
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 15px 15px;
    }
    
    /* Footer */
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
        margin-right: 0;
    }

    .footer-col h4 {
        font-size: 1.7rem;
    }

    .footer-col h4::after {
        display: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
        text-align: center;
    }
    
    /* Section titles */
    .section-title-center {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .section-title-center h2 {
        font-size: 28px;
    }
    
    .section-title-center p {
        font-size: 16px;
        padding: 0 15px;
    }
    
    /* Utility classes */
    .water-wave {
        display: none;
        height: 10px;
    }
}

/* Additional adjustments for very small devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        max-width: 85%;
    }
    
    .info-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
        margin: 5px 0;
        padding: 12px 10px;
    }
    
    .info-icon {
        margin-right: 12px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .package-img-modern, 
    .resort-img, 
    .excursion-img-modern {
        height: 180px;
    }
    
    .package-content-modern,
    .resort-content {
        padding: 20px 15px;
    }
    
    .packages-grid-modern,
    .features-grid,
    .resorts-grid,
    .excursions-grid-modern,
    .testimonials-grid-modern {
        margin: 0 15px;
    }
    
    /* Excursion card image fix for very small screens */
    .excursion-card-modern {
        height: 250px;
    }
}

/* HARD OVERRIDES — ensure the image fills the entire card */
.excursions-grid-modern .excursion-card-modern {
  position: relative !important;
  padding: 0 !important;
  overflow: hidden !important;
  height: 300px;
}

.excursions-grid-modern .excursion-card-modern .excursion-img-modern {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  margin: 0 !important;
  z-index: 0 !important;
}

.excursions-grid-modern .excursion-card-modern .excursion-overlay-modern {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1 !important;
}