/* MALDIVES TRAVEL EXPERTS - MAIN STYLES */
/* Improved version with accessibility, Maldives theme, and missing components */

:root {
    --bg-primary: #f8f5f0; /* Sand color */
    --bg-secondary: #ffffff;
    --text-primary: #1a5f5a; /* Deep teal */
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --accent-color: #ff7e5f; /* Coral */
    --maldives-teal: #1a7a8c; /* Turquoise water */
    --maldives-coral: #ff7e5f; /* Coral/sunset */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --font-size-base: 1.125rem;
    --line-height-base: 1.6;
    --letter-spacing-tight: -0.01em;
    --letter-spacing-normal: 0.01em;
    --letter-spacing-wide: 0.03em;
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-loose: 1.8;
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 20px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--maldives-teal);
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--maldives-teal);
}

h3 {
    font-size: 1.625rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--maldives-teal);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

a {
    color: var(--maldives-teal);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--maldives-coral);
}

/* ================================
   FOCUS STATES - Accessibility
   ================================ */
.btn:focus,
a:focus,
.sidebar-left nav a:focus,
.mobile-footer a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--maldives-coral);
    outline-offset: 3px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn:focus,
    a:focus {
        outline: 3px solid black;
    }
}

/* Remove focus outline for mouse users but keep for keyboard */
.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

.container {
    display: grid;
    grid-template-columns: 200px 1fr 350px;
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-lg);
    min-height: 100vh;
}

.sidebar-left {
    position: sticky;
    top: var(--spacing-xl);
    height: fit-content;
}

.logo {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--maldives-coral);
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--maldives-teal);
    display: block;
}

.logo-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: var(--letter-spacing-wide);
    color: var(--maldives-coral);
    margin-top: 4px;
}

.logo-tagline {
    font-size: 0.813rem;
    color: var(--text-muted);
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-normal);
    margin-top: 8px;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.sidebar-left nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.sidebar-left nav a {
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: var(--letter-spacing-normal);
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
}

.sidebar-left nav a:hover,
.sidebar-left nav a.active,
.sidebar-left nav a:focus {
    color: var(--maldives-coral);
    background-color: rgba(255, 126, 95, 0.05);
    border-left-color: var(--maldives-coral);
    transform: translateX(4px);
}

.social {
    margin-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.social-link {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: var(--spacing-xs) 0;
}

.social-link:hover,
.social-link:focus {
    color: var(--maldives-coral);
}

.content {
    max-width: 700px;
    margin: 0 auto;
}

/* ================================
   HERO CAROUSEL
   ================================ */
.hero-carousel {
    margin-bottom: var(--spacing-xl);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.carousel-slide {
    position: relative;
    min-height: 400px;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.carousel-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl);
    color: white;
    background: linear-gradient(to right, rgba(26, 122, 140, 0.8), rgba(26, 122, 140, 0.4));
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.carousel-content .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.375rem;
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-normal);
    max-width: 600px;
    margin-bottom: var(--spacing-lg);
}

/* ================================
   SECTIONS & COMPONENTS
   ================================ */
.section {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.section-alt {
    background-color: rgba(26, 122, 140, 0.02);
    border: 1px solid rgba(26, 122, 140, 0.05);
}

/* ================================
   PACKAGE CARDS
   ================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.package-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--maldives-coral);
}

.package-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Image overlay for accessibility */
.package-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.1));
}

.package-content {
    padding: var(--spacing-lg);
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--maldives-coral);
}

/* ================================
   FEATURES GRID (Why Choose Us)
   ================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature {
    background-color: rgba(26, 122, 140, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    transition: var(--transition-base);
}

.feature:hover,
.feature:focus-within {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--maldives-coral);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.feature h3 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    color: var(--maldives-teal);
}

.feature p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* ================================
   TESTIMONIALS - Missing in original
   ================================ */
.testimonials {
    display: grid;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.testimonial {
    background-color: rgba(26, 122, 140, 0.02);
    border-left: 4px solid var(--maldives-coral);
    padding: var(--spacing-lg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    transition: var(--transition-base);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-normal);
}

.testimonial-author {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ================================
   RIGHT SIDEBAR
   ================================ */
.sidebar-right {
    position: sticky;
    top: var(--spacing-xl);
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.promo-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--maldives-coral);
}

.promo-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.promo-content {
    padding: var(--spacing-md);
}

.widget {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.widget-highlight {
    background-color: rgba(255, 126, 95, 0.05);
    border-color: rgba(255, 126, 95, 0.2);
}

/* ================================
   BUTTONS - Enhanced with states
   ================================ */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid var(--maldives-coral);
    border-radius: var(--radius-sm);
    color: var(--maldives-coral);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: var(--letter-spacing-wide);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    position: relative;
}

.btn:hover {
    background-color: var(--maldives-coral);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* Loading state */
.btn.loading {
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-primary {
    background-color: var(--maldives-coral);
    color: white;
    border-color: var(--maldives-coral);
}

.btn-primary:hover {
    background-color: #e86d4c;
    border-color: #e86d4c;
}

.btn-secondary {
    border-color: var(--maldives-teal);
    color: var(--maldives-teal);
}

.btn-secondary:hover {
    background-color: var(--maldives-teal);
    color: white;
}

/* ================================
   MOBILE HEADER
   ================================ */
.mobile-header {
    display: none;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) var(--spacing-md);
    text-align: center;
}

.mobile-header-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: var(--letter-spacing-tight);
    line-height: var(--line-height-tight);
}

.mobile-header-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
    letter-spacing: var(--letter-spacing-normal);
    line-height: var(--line-height-tight);
}

.mobile-header-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-normal);
    max-width: 320px;
    margin: 0 auto;
}

/* ================================
   MOBILE FOOTER
   ================================ */
.mobile-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-sm);
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.mobile-footer a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xs);
    color: var(--text-muted);
    transition: var(--transition-fast);
    min-height: 44px; /* Touch target */
    text-decoration: none;
    border-radius: var(--radius-sm);
}

.mobile-footer a:hover,
.mobile-footer a.active,
.mobile-footer a:focus {
    color: var(--maldives-coral);
    background-color: rgba(255, 126, 95, 0.05);
}

.mobile-footer svg {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.mobile-footer span {
    font-size: 0.75rem;
}

/* ================================
   SOCIAL PROOF SUBSTITUTE SECTION
   ================================ */
.social-proof {
    background-color: rgba(26, 122, 140, 0.02);
    border: 1px solid rgba(26, 122, 140, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--maldives-coral), var(--maldives-teal));
}

.social-proof-content {
    max-width: 800px;
    margin: 0 auto;
}

.social-proof-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.social-proof-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--maldives-teal);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.social-proof-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 122, 140, 0.1);
    border-radius: 50%;
    color: var(--maldives-teal);
}

.social-proof-body {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.social-proof-lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    letter-spacing: -0.01em;
}

.social-proof-question {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--maldives-coral);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    font-style: italic;
    letter-spacing: -0.01em;
    padding: var(--spacing-md);
    background-color: rgba(255, 126, 95, 0.05);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--maldives-coral);
}

.social-proof-question em {
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: var(--maldives-teal);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.social-proof-insight {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    border: 1px solid rgba(26, 122, 140, 0.1);
}

.social-proof-conclusion {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--maldives-teal);
    text-align: center;
    padding: var(--spacing-lg);
    background-color: rgba(26, 122, 140, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(26, 122, 140, 0.2);
    position: relative;
}

.social-proof-conclusion::before {
    content: '💡';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 0 8px;
    font-size: 1.5rem;
}

/* Typography animations */
.social-proof-lead,
.social-proof-question,
.social-proof-insight,
.social-proof-conclusion {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.social-proof-lead { animation-delay: 0.1s; }
.social-proof-question { animation-delay: 0.2s; }
.social-proof-insight { animation-delay: 0.3s; }
.social-proof-conclusion { animation-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-proof {
        padding: var(--spacing-lg);
    }
    
    .social-proof-title {
        font-size: 1.75rem;
    }
    
    .social-proof-icon {
        font-size: 1.75rem;
        width: 40px;
        height: 40px;
    }
    
    .social-proof-lead {
        font-size: 1.125rem;
    }
    
    .social-proof-question {
        font-size: 1.25rem;
        padding: var(--spacing-sm);
    }
    
    .social-proof-insight {
        font-size: 1rem;
        padding: var(--spacing-md);
    }
    
    .social-proof-conclusion {
        font-size: 1.25rem;
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .social-proof-header {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .social-proof-title {
        font-size: 1.5rem;
    }
    
    .social-proof-icon {
        font-size: 1.5rem;
        width: 36px;
        height: 36px;
    }
    
    .social-proof-question {
        font-size: 1.125rem;
    }
    
    .social-proof-conclusion {
        font-size: 1.125rem;
    }
}

/* ================================
   PACKAGES TEASER SECTION
   ================================ */
.packages-teaser {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(26, 122, 140, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.packages-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--maldives-teal), var(--maldives-coral));
}

.packages-teaser-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--maldives-teal);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    text-align: center;
    letter-spacing: -0.02em;
}

.packages-teaser-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    letter-spacing: var(--letter-spacing-normal);
}

.packages-teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.package-teaser-card {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(26, 122, 140, 0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-teaser-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--maldives-teal), var(--maldives-coral));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-teaser-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--maldives-coral);
    background-color: white;
}

.package-teaser-card:hover::before {
    opacity: 1;
}

.package-teaser-header {
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(26, 122, 140, 0.1);
    padding-bottom: var(--spacing-md);
}

.package-teaser-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--maldives-teal);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.package-teaser-subtitle {
    font-size: 1.125rem;
    color: var(--maldives-coral);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: var(--letter-spacing-normal);
    margin: 0;
}

.package-teaser-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-teaser-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    letter-spacing: var(--letter-spacing-normal);
    margin-bottom: var(--spacing-lg);
    flex: 1;
}

.package-teaser-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--maldives-teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.package-teaser-link:hover,
.package-teaser-link:focus {
    color: var(--maldives-coral);
    border-bottom-color: var(--maldives-coral);
    transform: translateX(4px);
}

.package-teaser-link::before {
    content: '→';
    font-weight: 700;
    transition: transform 0.3s ease;
}

.package-teaser-link:hover::before {
    transform: translateX(4px);
}

/* Staggered animations for package cards */
.package-teaser-card:nth-child(1) { animation-delay: 0.1s; }
.package-teaser-card:nth-child(2) { animation-delay: 0.2s; }
.package-teaser-card:nth-child(3) { animation-delay: 0.3s; }
.package-teaser-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .packages-teaser {
        padding: var(--spacing-lg);
    }
    
    .packages-teaser-title {
        font-size: 1.875rem;
    }
    
    .packages-teaser-intro {
        font-size: 1.125rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .packages-teaser-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .package-teaser-card {
        padding: var(--spacing-md);
    }
    
    .package-teaser-title {
        font-size: 1.375rem;
    }
    
    .package-teaser-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .packages-teaser-title {
        font-size: 1.625rem;
    }
    
    .packages-teaser-intro {
        font-size: 1rem;
    }
    
    .package-teaser-header {
        padding-bottom: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
    }
}

/* ================================
   BENEFITS TO YOU SECTION
   ================================ */
.benefits-section {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(26, 122, 140, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--maldives-coral), var(--maldives-teal));
}

.benefits-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--maldives-teal);
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    text-align: center;
    letter-spacing: -0.02em;
}

/* Subtitle removed - CSS kept for potential future use */
.benefits-subtitle {
    display: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-card {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(26, 122, 140, 0.1);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--maldives-coral), var(--maldives-teal));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--maldives-coral);
    background-color: white;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(26, 122, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--maldives-teal);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: var(--maldives-teal);
    color: white;
    transform: scale(1.1);
}

.benefit-content {
    flex: 1;
}

.benefit-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--maldives-teal);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.benefit-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    letter-spacing: var(--letter-spacing-normal);
    margin: 0;
}

/* Staggered animations for benefit cards */
.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-section {
        padding: var(--spacing-lg);
    }
    
    .benefits-title {
        font-size: 1.875rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .benefit-card {
        padding: var(--spacing-md);
    }
    
    .benefit-heading {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .benefits-title {
        font-size: 1.625rem;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .benefit-icon {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
        margin: 0 auto;
    }
}

/* ================================
   INTRODUCTION + CREDIBILITY SECTION
   ================================ */
.intro-credibility {
    background: linear-gradient(135deg, rgba(26, 122, 140, 0.02) 0%, rgba(255, 126, 95, 0.02) 100%);
    border: 1px solid rgba(26, 122, 140, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.intro-credibility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--maldives-teal), var(--maldives-coral));
}

.intro-credibility-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--maldives-teal);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    letter-spacing: -0.02em;
}

.intro-title-line {
    display: block;
}

.intro-title-line:first-child {
    margin-bottom: 0.25em;
}

.intro-body {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.intro-lead {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    letter-spacing: -0.01em;
}

.text-emphasis {
    background: linear-gradient(120deg, var(--maldives-teal) 0%, var(--maldives-coral) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    padding: 0 2px;
    position: relative;
}

.text-emphasis::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--maldives-teal), var(--maldives-coral));
    opacity: 0.5;
}

.intro-main {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--maldives-coral);
}

.highlight-word {
    font-weight: 700;
    color: var(--maldives-teal);
    position: relative;
    display: inline-block;
    padding: 0 4px;
}

.highlight-word::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 122, 140, 0.1);
    border-radius: 4px;
    z-index: -1;
    transform: skewX(-5deg);
}

.intro-features {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: rgba(26, 122, 140, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(26, 122, 140, 0.1);
}

.intro-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--maldives-teal);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.intro-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-sm);
}

.intro-feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: var(--spacing-sm);
    background-color: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.intro-feature-list li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--maldives-coral);
}

.feature-icon {
    font-size: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maldives-teal);
    background-color: rgba(26, 122, 140, 0.08);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.intro-feature-list li:hover .feature-icon {
    background-color: var(--maldives-teal);
    color: white;
    transform: scale(1.1);
}

.intro-conclusion {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    padding: var(--spacing-lg);
    background-color: rgba(255, 126, 95, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 126, 95, 0.2);
    position: relative;
}

.strikethrough {
    text-decoration: line-through;
    text-decoration-color: var(--maldives-coral);
    text-decoration-thickness: 2px;
    color: var(--text-muted);
    margin: 0 4px;
}

.emphasis-coral {
    color: var(--maldives-coral);
    font-weight: 700;
    margin: 0 4px;
    position: relative;
}

.emphasis-coral::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--maldives-coral);
    opacity: 0.5;
}

/* Typography animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-title-line,
.intro-lead,
.intro-main,
.intro-features,
.intro-conclusion {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.intro-title-line:first-child { animation-delay: 0.1s; }
.intro-title-line:last-child { animation-delay: 0.2s; }
.intro-lead { animation-delay: 0.3s; }
.intro-main { animation-delay: 0.4s; }
.intro-features { animation-delay: 0.5s; }
.intro-conclusion { animation-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .intro-credibility {
        padding: var(--spacing-lg);
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-lead {
        font-size: 1.25rem;
    }
    
    .intro-main {
        font-size: 1.125rem;
        padding: var(--spacing-md);
    }
    
    .intro-conclusion {
        font-size: 1.25rem;
        padding: var(--spacing-md);
    }
    
    .intro-feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .intro-title {
        font-size: 1.75rem;
    }
    
    .intro-lead {
        font-size: 1.125rem;
    }
    
    .intro-main {
        font-size: 1rem;
    }
}

/* ================================
   INSTAGRAM-STYLE CAROUSEL
   ================================ */
.instagram-carousel {
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-secondary);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 600px;
}

.instagram-slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.instagram-slide.active {
    opacity: 1;
    position: relative;
}

.instagram-image {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.instagram-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.instagram-caption {
    padding: var(--spacing-lg);
    background-color: var(--bg-secondary);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.instagram-statement {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--maldives-teal);
    line-height: 1.3;
    letter-spacing: var(--letter-spacing-tight);
    margin: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: var(--spacing-md);
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: var(--border-color);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--maldives-coral);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background-color: var(--maldives-teal);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.carousel-arrow:hover {
    background-color: white;
    box-shadow: var(--shadow-md);
    border-color: var(--maldives-coral);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--maldives-teal);
}

.carousel-arrow-prev {
    left: var(--spacing-md);
}

.carousel-arrow-next {
    right: var(--spacing-md);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-track {
        height: 500px;
    }
    
    .instagram-statement {
        font-size: 1.25rem;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .carousel-track {
        height: 400px;
    }
    
    .instagram-statement {
        font-size: 1.125rem;
    }
    
    .carousel-arrow {
        width: 36px;
        height: 36px;
        top: 40%;
    }
}

/* ================================
   PRE-HERO SECTION
   ================================ */
.pre-hero {
    background-color: rgba(26, 122, 140, 0.03);
    border: 1px solid rgba(26, 122, 140, 0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.pre-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.pre-hero-large {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--maldives-teal);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: var(--letter-spacing-tight);
}

.pre-hero-small {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    letter-spacing: var(--letter-spacing-normal);
}

.pre-hero-medium {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--maldives-coral);
    line-height: 1.3;
    letter-spacing: var(--letter-spacing-normal);
}

/* Responsive adjustments for Pre-Hero */
@media (max-width: 768px) {
    .pre-hero {
        padding: var(--spacing-lg);
    }
    
    .pre-hero-large {
        font-size: 1.875rem;
    }
    
    .pre-hero-small {
        font-size: 1rem;
    }
    
    .pre-hero-medium {
        font-size: 1.25rem;
    }
}

/* ================================
   SITE FOOTER
   ================================ */
.site-footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 0 var(--spacing-md) var(--spacing-lg);
    margin-top: var(--spacing-xl);
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-decoration {
    margin-bottom: var(--spacing-lg);
    text-align: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-end-image {
    width: 100%;
    height: 300px;
    max-height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.footer-copyright-text {
    font-size: 0.813rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-normal);
}

.footer-links {
    font-size: 0.813rem;
    color: var(--text-secondary);
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--maldives-coral);
}

.footer-separator {
    margin: 0 8px;
    color: var(--text-muted);
}

.footer-divider {
    width: 80px;
    margin: 20px auto;
    border: none;
    border-top: 1px solid var(--border-color);
}

/* ================================
   ADDITIONAL COMPONENTS
   ================================ */
.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

.package-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.package-excerpt {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-normal);
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-md);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.813rem;
}

.destination-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.destination-list li {
    margin-bottom: 8px;
}

.destination-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    display: block;
    padding: 4px 0;
}

.destination-list a:hover,
.destination-list a:focus {
    color: var(--maldives-coral);
    padding-left: 8px;
}

.weather-widget {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.weather-city {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ================================
   IMAGE CONTAINERS
   ================================ */
.carousel-image img,
.package-image img,
.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ensure containers handle img properly */
.carousel-image,
.package-image,
.promo-image {
    position: relative;
    overflow: hidden;
}

.carousel-image img {
    position: absolute;
    top: 0;
    left: 0;
}

/* ================================
   FORM STYLES
   ================================ */
.inquiry-form {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.inquiry-form input,
.inquiry-form textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    transition: var(--transition-fast);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--maldives-coral);
    box-shadow: 0 0 0 3px rgba(255, 126, 95, 0.1);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: var(--text-muted);
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* ================================
   UTILITY CLASSES
   ================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* ================================
   SCROLL REVEAL ANIMATIONS
   ================================ */
.reveal-group {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-group.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items */
.packages-grid .reveal-group:nth-child(1) { transition-delay: 0.1s; }
.packages-grid .reveal-group:nth-child(2) { transition-delay: 0.2s; }
.packages-grid .reveal-group:nth-child(3) { transition-delay: 0.3s; }

.features-grid .reveal-group:nth-child(1) { transition-delay: 0.1s; }
.features-grid .reveal-group:nth-child(2) { transition-delay: 0.2s; }
.features-grid .reveal-group:nth-child(3) { transition-delay: 0.3s; }
.features-grid .reveal-group:nth-child(4) { transition-delay: 0.4s; }

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .reveal-group {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
