/* ===== VARIABLES ===== */
:root {
    --primary: #0d9488;
    --primary-dark: #065f46;
    --secondary: #f8d56b;
    --accent: #f8d56b;
    --text: #000000;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-alt: #f8fafc;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-primary.large, .btn-secondary.large {
    padding: 16px 32px;
    font-size: 18px;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* ===== NAVIGATION ===== */
.modern-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.modern-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.modern-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.8), rgba(6, 95, 70, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--text);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== QUICK INFO BAR - HORIZONTAL SCROLL WHEEL ===== */
.info-bar {
    background: white;
    padding: 2rem 0;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.info-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 2rem;
    padding-bottom: 1rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    cursor: grab;
}

.info-grid:active {
    cursor: grabbing;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.info-grid::-webkit-scrollbar {
    display: none;
}

.info-item {
    flex: 0 0 calc(50vw - 60px);
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 280px;
    padding: 1rem;
    background: var(--background-alt);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.info-item i {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 4px;
    color: var(--text);
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-time {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-icon {
    position: absolute;
    left: -60px;
    top: 0;
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.timeline-item.highlight .timeline-content {
    border-left-color: var(--accent);
    background: linear-gradient(135deg, #fdf2f8, white);
}

.highlight-tag {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* ===== GALLERY SECTION - HORIZONTAL SCROLL WHEEL ===== */
.gallery-section {
    background: var(--background-alt);
    overflow: hidden;
}

.gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    gap: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    cursor: grab;
}

.gallery-grid:active {
    cursor: grabbing;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 calc(100vw - 40px);
    scroll-snap-align: start;
    margin-right: 1.5rem;
    height: 60vh;
    min-height: 400px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-item:last-child {
    margin-right: 0;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(255, 251, 251, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.gallery-overlay p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Carousel navigation dots */
.gallery-navigation {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ===== INCLUSIONS ===== */
.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.inclusion-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.inclusion-card:hover {
    transform: translateY(-5px);
}

.inclusion-icon {
    width: 80px;
    height: 80px;
    background: var(--background-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
}

.inclusion-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.inclusion-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== EXCLUSIONS SECTION ===== */
.exclusions-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--background-alt);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid #f87171;
}

.exclusions-list {
    display: grid;
    gap: 1rem;
}

.exclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exclusion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.exclusion-item i {
    color: #f87171;
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.exclusion-item span {
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== PRICING ===== */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-light);
    margin: 0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--text);
}

.pricing-features i {
    color: var(--primary);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.modern-footer {
    background: var(--text);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid var(--secondary);
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: #9ca3af;
}

.contact-item i {
    width: 20px;
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* ===== FLOATING ACTIONS ===== */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn {
    background: #25D366;
}

.phone-btn {
    background: var(--primary);
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* ============================================= */
/* NAVIGATION */
/* ============================================= */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 5%;
    z-index: 10;
}

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

.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links li {
    margin-right: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.nav-links a:hover {
    color: #f8d56b;
}

/* Mobile menu toggle visibility */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-close {
    display: none;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

/* Tablet */
@media (min-width: 768px) {
    .gallery-item {
        flex: 0 0 calc(50vw - 60px);
        height: 65vh;
        min-height: 450px;
    }
    
    .info-item {
        flex: 0 0 calc(33.333vw - 80px);
        min-width: 300px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .gallery-item {
        flex: 0 0 calc(33.333vw - 80px);
        height: 70vh;
        min-height: 500px;
    }
    
    .info-item {
        flex: 0 0 calc(25vw - 100px);
        min-width: 250px;
    }
}

/* Large desktop */
@media (min-width: 1200px) {
    .gallery-item {
        flex: 0 0 calc(25vw - 100px);
        height: 75vh;
        min-height: 550px;
    }
    
    .info-item {
        flex: 0 0 calc(20vw - 120px);
        min-width: 220px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 calc(100vw - 40px);
        height: 50vh;
        min-height: 350px;
        margin-right: 1rem;
    }
    
    .info-item {
        flex: 0 0 calc(100vw - 80px);
        min-width: 250px;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay h4 {
        font-size: 1.3rem;
    }
    
    .gallery-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Show close button when menu is active */
    .nav-links.active ~ .mobile-menu-close,
    .nav-links.active + .mobile-menu-close {
        display: block;
    }
    
    /* Hide regular nav links on mobile by default */
    .nav-links {
        display: none;
    }
    
    /* Show nav links when mobile menu is active */
    .nav-links.active {
        display: flex;
    }
    
    /* Hero section */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Quick Info Bar */
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .info-item {
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .info-item i {
        font-size: 1.75rem;
    }
    
    /* Timeline */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-icon {
        left: -40px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-time {
        position: relative;
        left: 0;
        margin-bottom: 10px;
        display: inline-block;
    }
    
    /* Inclusions */
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pricing */
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    /* CTA */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Exclusions */
    .exclusions-container {
        padding: 1.5rem;
    }
    
    .exclusion-item {
        padding: 0.75rem;
    }
}

/* Ensure nav links are visible on desktop */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }
    
    .mobile-menu-toggle,
    .mobile-menu-close {
        display: none !important;
    }
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
    /* Base adjustments */
    body {
      font-size: 14px;
    }
    
    .container {
      padding: 0 15px;
    }
    
    /* Navigation improvements */
    .navbar {
      padding: 15px 5%;
    }
    
    .nav-links {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.95);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }
    
    .nav-links.active {
      transform: translateX(0);
    }
    
    .nav-links li {
      margin: 15px 0;
    }
    
    .nav-links a {
      font-size: 1.2rem;
      padding: 10px 0;
    }
    
    .mobile-menu-toggle,
    .mobile-menu-close {
      display: block;
      position: fixed;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      z-index: 1001;
      cursor: pointer;
    }
    
    .mobile-menu-close {
      display: none;
    }
    
    .nav-links.active ~ .mobile-menu-close {
      display: block;
    }
    
    .nav-links.active ~ .mobile-menu-toggle {
      display: none;
    }
    
    /* Hero section improvements */
    .modern-hero {
      height: 70vh;
      min-height: 500px;
    }
    
    .hero-content {
      padding: 0 15px;
    }
    
    .hero-title {
      font-size: 2rem;
      line-height: 1.2;
    }
    
    .hero-subtitle {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
    
    .hero-stats {
      flex-direction: column;
      gap: 10px;
      margin-bottom: 1.5rem;
    }
    
    .stat {
      font-size: 0.9rem;
    }
    
    /* Timeline improvements */
    .timeline::before {
      left: 15px;
    }
    
    .timeline-item {
      padding-left: 50px;
    }
    
    .timeline-time {
      position: relative;
      left: 0;
      margin-bottom: 10px;
      display: inline-block;
    }
    
    .timeline-icon {
      left: -35px;
      width: 30px;
      height: 30px;
      font-size: 0.8rem;
    }
    
    .timeline-content {
      padding: 1.5rem;
    }
    
    /* Inclusions improvements */
    .inclusions-grid.mobile-scrollable {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 1rem;
    }
    
    .inclusions-grid.mobile-scrollable .inclusion-card {
      flex: 0 0 280px;
      scroll-snap-align: start;
      margin-right: 1rem;
    }
    
    .inclusions-grid.mobile-scrollable .inclusion-card:last-child {
      margin-right: 0;
    }
    
    .inclusion-card {
      padding: 1.5rem;
    }
    
    .inclusion-icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
    }
    
    /* CTA section improvements */
    .cta-content h2 {
      font-size: 1.8rem;
    }
    
    .cta-content p {
      font-size: 1rem;
    }
    
    .cta-buttons {
      flex-direction: column;
      width: 100%;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
      width: 100%;
      justify-content: center;
      margin-bottom: 1rem;
    }
    
    /* Footer improvements */
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .footer-about,
    .footer-links-container {
      text-align: center;
    }
    
    .footer-social {
      justify-content: center;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
    }
    
    /* Floating actions */
    .floating-actions {
      bottom: 1rem;
      right: 1rem;
    }
    
    .floating-btn {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 480px) {
    /* Extra small devices */
    .modern-hero {
      height: 60vh;
      min-height: 400px;
    }
    
    .hero-title {
      font-size: 1.8rem;
    }
    
    .section-header h2 {
      font-size: 1.8rem;
    }
    
    .timeline-content {
      padding: 1rem;
    }
    
    .info-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .info-item {
      text-align: center;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .pricing-cards {
      grid-template-columns: 1fr;
    }
    
    .pricing-card {
      padding: 1.5rem;
    }
    
    .price {
      font-size: 2.5rem;
    }
  }
  
  /* Prevent horizontal scrolling */
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Improve touch targets */
  button, 
  a, 
  .btn-primary, 
  .btn-secondary {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Smooth scrolling for iOS */
  .mobile-scrollable {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Hide scrollbars but keep functionality */
  .mobile-scrollable::-webkit-scrollbar {
    display: none;
  }
  
  .mobile-scrollable {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

/* Remove old grid styles that might conflict */
.info-grid[style*="grid-template-columns"] {
    display: flex !important;
}

/* Ensure single line behavior */
.gallery-grid.mobile-scrollable,
.inclusions-grid.mobile-scrollable {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.gallery-grid.mobile-scrollable .gallery-item,
.inclusions-grid.mobile-scrollable .inclusion-card {
    flex: 0 0 85vw;
    scroll-snap-align: start;
    margin-right: 1rem;
}

.gallery-grid.mobile-scrollable .gallery-item:last-child,
.inclusions-grid.mobile-scrollable .inclusion-card:last-child {
    margin-right: 0;
}

/* ===== LEFT-ALIGNED HEADERS FOR ALL SECTIONS ===== */
.section-header {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.section-header h2 {
    text-align: left;
}

.section-header p {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

/* Specific section header adjustments */
.itinerary-section .section-header,
.gallery-section .section-header,
.inclusions-section .section-header,
.exclusions-section .section-header {
    text-align: left;
}

.itinerary-section .section-header h2,
.itinerary-section .section-header p,
.gallery-section .section-header h2,
.gallery-section .section-header p,
.inclusions-section .section-header h2,
.inclusions-section .section-header p,
.exclusions-section .section-header h2,
.exclusions-section .section-header p {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

/* CTA section should remain centered */
.cta-section .section-header {
    text-align: center;
}

.cta-section .section-header h2,
.cta-section .section-header p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ===== EXCLUSIONS SECTION - HORIZONTAL SCROLL WHEEL ===== */
.exclusions-section {
    background: var(--background-alt);
}

.exclusions-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    gap: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    cursor: grab;
}

.exclusions-grid:active {
    cursor: grabbing;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.exclusions-grid::-webkit-scrollbar {
    display: none;
}

.exclusion-card {
    flex: 0 0 calc(85vw - 40px);
    scroll-snap-align: start;
    margin-right: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #f87171;
}

.exclusion-card:last-child {
    margin-right: 0;
}

.exclusion-card:hover {
    transform: translateY(-5px);
}

.exclusion-icon {
    width: 80px;
    height: 80px;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #f87171;
}

.exclusion-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.exclusion-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.exclusions-note {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.exclusions-note p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

/* Tablet */
@media (min-width: 768px) {
    .exclusion-card {
        flex: 0 0 calc(50vw - 60px);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .exclusion-card {
        flex: 0 0 calc(33.333vw - 80px);
    }
}

/* Large desktop */
@media (min-width: 1200px) {
    .exclusion-card {
        flex: 0 0 calc(25vw - 100px);
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .exclusion-card {
        flex: 0 0 calc(100vw - 40px);
        margin-right: 1rem;
        padding: 1.5rem;
    }
    
    .exclusion-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Ensure single line behavior for mobile */
.exclusions-grid.mobile-scrollable {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.exclusions-grid.mobile-scrollable .exclusion-card {
    flex: 0 0 85vw;
    scroll-snap-align: start;
    margin-right: 1rem;
}

.exclusions-grid.mobile-scrollable .exclusion-card:last-child {
    margin-right: 0;
}