/* ============================================================
   css/style.css
   Maldives Holiday Package — Premium Landing Page
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Theme: Teal/ocean luxury, refined and aspirational
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --teal-900: #051f21;
    --teal-800: #0a2c2f;
    --teal-700: #0e3e41;
    --teal-600: #1b6264;
    --teal-500: #2c9a9c;
    --teal-400: #3ab8ba;
    --teal-300: #70cfcf;
    --teal-100: #d4eef0;
    --teal-50:  #edf8f9;

    --gold:      #c9a96e;
    --gold-light:#e2c898;

    --white:     #ffffff;
    --off-white: #f7fafa;
    --text-dark: #0d2b2e;
    --text-mid:  #2e5a5e;
    --text-soft: #5a7a7d;
    --text-muted:#8fa8ab;

    --bg-body:   #edf8f9;
    --bg-section:#f4fbfc;

    --radius-card: 24px;
    --radius-btn:  50px;

    --shadow-card: 0 12px 40px rgba(10, 44, 47, 0.1);
    --shadow-hover: 0 24px 60px rgba(10, 44, 47, 0.18);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', -apple-system, sans-serif;
    --font-accent:  'Italiana', Georgia, serif;

    --transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--text-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--teal-600);
    font-weight: 600;
    margin-bottom: 1rem;
    background: rgba(44, 154, 156, 0.1);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    border: 1px solid rgba(44, 154, 156, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--teal-800);
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: var(--teal-500);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 640px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 30px rgba(10, 44, 47, 0.08);
}

.site-header.scrolled .subnavbar {
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid rgba(44, 122, 123, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 24px;
}

/* Logo */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: var(--transition);
}

.site-header.scrolled .logo-main {
    color: var(--teal-800);
}

.site-header.scrolled .logo-sub {
    color: var(--teal-500);
}

.site-header.scrolled .btn-header {
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
    color: var(--white);
}

/* Navigation */
.main-nav .nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav .nav-menu a {
    font-family: var(--font-body);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 2px;
}

.main-nav .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--teal-300);
    transition: width 0.3s ease;
}

.main-nav .nav-menu a:hover {
    color: var(--white);
}

.main-nav .nav-menu a:hover::after {
    width: 100%;
}

.site-header.scrolled .main-nav .nav-menu a {
    color: var(--text-mid);
}

.site-header.scrolled .main-nav .nav-menu a:hover {
    color: var(--teal-500);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.header-phone i {
    font-size: 0.8rem;
}

.site-header.scrolled .header-phone {
    color: var(--text-mid);
}

.header-phone:hover {
    color: var(--teal-300);
}

.btn-header {
    background: var(--white);
    color: var(--teal-700);
    padding: 0.65rem 1.6rem;
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(27, 107, 109, 0.35);
    white-space: nowrap;
}

.btn-header:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 8px 28px rgba(27, 107, 109, 0.45); */
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 4px;
    gap: 5px;
    z-index: 1100;
    position: relative;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--teal-800);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-header.scrolled .menu-toggle span {
    background: var(--teal-800);
}

/* Sub-navbar */
.subnavbar {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    transition: var(--transition);
}

.subnavbar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0.6rem 24px;
    flex-wrap: wrap;
}

.featured-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(44, 122, 123, 0.25);
    padding: 0.2rem 0.7rem;
    border-radius: 30px;
}

.site-header.scrolled .featured-label {
    color: var(--teal-600);
    background: rgba(44, 122, 123, 0.1);
}

.featured-packages {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.featured-packages a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
    padding-bottom: 1px;
}

.site-header.scrolled .featured-packages a {
    color: var(--text-soft);
}

.featured-packages a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--teal-500);
    transition: width 0.3s ease;
}

.featured-packages a:hover::after {
    width: 100%;
}

.featured-packages a:hover {
    color: var(--teal-300);
}

.site-header.scrolled .featured-packages a:hover {
    color: var(--teal-500);
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 0;
    height: 95vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slider,
.hero-slide {
    width: 100%;
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

/* Slightly darker overlay — balanced & premium */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(5, 31, 33, 0.5) 0%,
        rgba(10, 44, 47, 0.4) 50%,
        rgba(5, 20, 22, 0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    padding-top: 120px;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.70rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.45rem 1.2rem;
    border-radius: 40px;
    backdrop-filter: blur(6px);
    margin-bottom: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-badge i {
    color: var(--gold-light);
    font-size: 0.75rem;
}

/* Hero title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    color: var(--white);
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero description */
.hero-desc {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 600px;
    margin: 0 auto 2.2rem;
    line-height: 1.75;
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-btn);
    background: var(--white);
    color: var(--teal-700);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: var(--off-white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-btn);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Hero stats */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 2.5rem;
    border-radius: 60px;
}

.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.stat span {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.stat span i {
    font-size: 0.6rem;
    color: var(--gold-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
}

/* Swiper controls */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
}

/* ===== HERO WAVE (Bottom Cut) ===== */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* ===== HERO WAVE (Bottom Cut) ===== */
.hero-wave svg path {
    fill: var(--bg-section);  /* Change from var(--bg-body) to var(--bg-section) */
}

/* ===== LUXURY HIGHLIGHTS SECTION ===== */
.highlights-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-card);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(44, 154, 156, 0.08);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
}

.highlight-icon i {
    font-size: 1.6rem;
    color: var(--teal-600);
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon i {
    color: var(--white);
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--teal-800);
    margin-bottom: 0.75rem;
}

.highlight-card p {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-card {
        padding: 1.5rem;
    }
}

/* ===== VISUAL JOURNEY SECTION ===== */
.visual-journey-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

/* Grid Layout — 12-column precision grid, zero wasted space */
.journey-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 320px 240px 260px;
    gap: 14px;
    margin-bottom: 3rem;
}

/* Row 1: Large hero (7 cols) + Portrait (5 cols) */
.journey-feature {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.journey-portrait {
    grid-column: 8 / 13;
    grid-row: 1 / 3;
}

/* Row 2: Two landscape tiles (each 3.5 cols = 7 total) */
.journey-landscape {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}

.journey-square {
    grid-column: 5 / 8;
    grid-row: 2 / 3;
}

/* Row 3: Three equal tiles spanning full width */
.journey-feature-small {
    grid-column: 1 / 5;
    grid-row: 3 / 4;
}

.journey-item:nth-child(6) {
    grid-column: 5 / 9;
    grid-row: 3 / 4;
}

.journey-item:nth-child(7) {
    grid-column: 9 / 13;
    grid-row: 3 / 4;
}

/* 8th item hidden on desktop — shown only on mobile to avoid orphan */
.journey-item:nth-child(8) {
    display: none;
}

/* Image Container */
.journey-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 100%;
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
}

.journey-image:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* Overlay */
.journey-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 31, 33, 0.85) 0%,
        rgba(10, 44, 47, 0.4) 50%,
        transparent 100%
    );
    opacity: 0.7;
    transition: var(--transition);
}

.journey-image:hover .journey-overlay {
    opacity: 0.85;
}

/* Content */
.journey-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: var(--white);
    z-index: 2;
    transform: translateY(0);
    transition: var(--transition);
}

.journey-image:hover .journey-content {
    transform: translateY(-8px);
}

.journey-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.journey-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.journey-feature .journey-title {
    font-size: 1.75rem;
}

.journey-location {
    font-size: 0.75rem;
    opacity: 0.85;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.journey-location::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 0.65rem;
    opacity: 0.8;
}

/* Journey Footer */
.journey-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1rem;
}

.journey-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background: transparent;
    border: 1.5px solid var(--teal-500);
    border-radius: var(--radius-btn);
    color: var(--teal-600);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.journey-btn:hover {
    background: var(--teal-500);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--teal-500);
}

.journey-btn i {
    transition: transform 0.3s ease;
}

.journey-btn:hover i {
    transform: translateX(5px);
}

.journey-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--teal-600);
    line-height: 1.2;
}

.stat-item span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: var(--teal-100);
}

/* ===== VISUAL JOURNEY RESPONSIVE ===== */

/* Tablet landscape: 2-row grid, tighter columns */
@media (max-width: 1100px) {
    .journey-grid {
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: 280px 220px 220px;
        gap: 12px;
    }

    .journey-feature      { grid-column: 1 / 5; grid-row: 1 / 2; }
    .journey-portrait     { grid-column: 5 / 9; grid-row: 1 / 3; }
    .journey-landscape    { grid-column: 1 / 4; grid-row: 2 / 3; }
    .journey-square       { grid-column: 4 / 5; grid-row: 2 / 3; }

    .journey-feature-small    { grid-column: 1 / 3; grid-row: 3 / 4; }
    .journey-item:nth-child(6){ grid-column: 3 / 6; grid-row: 3 / 4; }
    .journey-item:nth-child(7){ grid-column: 6 / 9; grid-row: 3 / 4; }
    .journey-item:nth-child(8){ display: none; }
}

/* Tablet portrait: 2-column editorial layout */
@media (max-width: 768px) {
    .visual-journey-section { padding: 3rem 0; }

    .journey-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 200px 200px 200px;
        gap: 10px;
        padding: 0 16px;
    }

    .journey-feature      { grid-column: 1 / 3; grid-row: 1 / 2; }
    .journey-portrait     { grid-column: 1 / 2; grid-row: 2 / 3; }
    .journey-landscape    { grid-column: 2 / 3; grid-row: 2 / 3; }
    .journey-square       { grid-column: 1 / 2; grid-row: 3 / 4; }
    .journey-feature-small{ grid-column: 2 / 3; grid-row: 3 / 4; }

    .journey-item:nth-child(6){ grid-column: 1 / 2; grid-row: 4 / 5; display: block; }
    .journey-item:nth-child(7){ grid-column: 2 / 3; grid-row: 4 / 5; display: block; }
    .journey-item:nth-child(8){ display: none; }

    .journey-feature .journey-title { font-size: 1.35rem; }
    .journey-title   { font-size: 1rem; }
    .journey-content { padding: 1rem; }
    .journey-badge   { font-size: 0.6rem; margin-bottom: 0.5rem; }

    .journey-footer  { flex-direction: column; text-align: center; gap: 1.5rem; }
    .journey-stats   { justify-content: center; gap: 1rem; }
    .stat-divider    { display: none; }
    .stat-item       { flex: 1; min-width: 80px; }
}

/* Mobile: single column with key images */
@media (max-width: 480px) {
    .journey-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 180px 180px 180px;
        gap: 8px;
        padding: 0 12px;
    }

    .journey-feature      { grid-column: 1 / 3; grid-row: 1 / 2; }
    .journey-portrait     { grid-column: 1 / 2; grid-row: 2 / 3; }
    .journey-landscape    { grid-column: 2 / 3; grid-row: 2 / 3; }
    .journey-square       { grid-column: 1 / 2; grid-row: 3 / 4; }
    .journey-feature-small{ grid-column: 2 / 3; grid-row: 3 / 4; }

    .journey-item:nth-child(6){ grid-column: 1 / 2; grid-row: 4 / 5; display: block; }
    .journey-item:nth-child(7){ grid-column: 2 / 3; grid-row: 4 / 5; display: block; }
    .journey-item:nth-child(8){ display: none; }

    .journey-badge   { font-size: 0.55rem; padding: 0.2rem 0.6rem; }
    .journey-title   { font-size: 0.88rem; }
    .journey-location{ font-size: 0.65rem; }
    .journey-content { padding: 0.85rem; }
}


/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.feature-card {
    background: var(--white);
    padding: 2.2rem;
    border-radius: var(--radius-card);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(44, 154, 156, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-400), var(--teal-600));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-icon-wrap {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
}

.feature-icon-wrap i {
    font-size: 1.4rem;
    color: var(--teal-600);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap i {
    color: var(--white);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--teal-800);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal-500);
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.feature-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: var(--teal-700);
}

.feature-link:hover i {
    transform: translateX(4px);
}

/* ===== PACKAGES SECTION WITH CONTROLS ===== */
.packages-slider-section {
    padding: 5rem 0;
    background: var(--bg-body);
    position: relative;
}

.packages-wrapper {
    position: relative;
    padding: 0 50px;
}

@media (max-width: 768px) {
    .packages-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .packages-wrapper {
        padding: 0 30px;
    }
}

.packages-swiper {
    padding: 1rem 0 3.5rem;
    /* overflow: visible !important; */
}

.packages-swiper .swiper-wrapper {
    padding: 0.5rem 0;
}

/* Package Card Styles */
.package-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(44, 154, 156, 0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.package-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.package-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 44, 47, 0.6), transparent 60%);
}

.package-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: linear-gradient(135deg, var(--gold), #b8864e);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 30px;
}

.package-badge--family {
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
}

.package-badge--luxury {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.package-badge--adventure {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.package-nights {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 30px;
}

.package-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.package-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--text-soft);
    font-weight: 500;
}

.package-meta i {
    color: var(--teal-500);
    font-size: 0.7rem;
}

.package-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--teal-800);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.package-info p {
    font-size: 0.87rem;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.package-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    margin-bottom: 1.2rem;
}

.package-includes span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.73rem;
    color: var(--teal-600);
    font-weight: 600;
    background: var(--teal-50);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
}

.package-includes i {
    font-size: 0.6rem;
    color: var(--teal-500);
}

/* Package Actions - Two Buttons Side by Side */
.package-actions {
    margin-top: auto;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-view-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex: 1;
    background: transparent;
    border: 1.5px solid var(--teal-500);
    color: var(--teal-600);
    padding: 0.7rem 0.5rem;
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-view-details:hover {
    background: var(--teal-500);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-view-details i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-view-details:hover i {
    transform: translateX(3px);
}

.btn-whatsapp-package {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    padding: 0.7rem 0.5rem;
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-whatsapp-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #20BA5C, #0E6B5E);
}

.btn-whatsapp-package i {
    font-size: 1rem;
}

/* ===== TESTIMONIALS SECTION WITH FIXED HEIGHT ===== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-section);
    position: relative;
}

.testimonials-wrapper {
    position: relative;
    padding: 0 50px;
}

@media (max-width: 768px) {
    .testimonials-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {

    .btn-view-details {   
    padding: 0.5rem 0.2rem;
    font-size: 0.62rem;
    }

    .testimonials-wrapper {
        padding: 0 30px;
    }
}

.testimonials-swiper {
    padding: 1rem 0 3.5rem;
    overflow: visible !important;
}

.testimonial-card {
    padding: 0 0.75rem;
    height: auto;
}

.testimonial-content {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem 2rem 1.75rem;
    position: relative;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(44, 154, 156, 0.06);
    transition: var(--transition);
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.stars i {
    font-size: 0.8rem;
    color: var(--gold);
}

.testimonial-content p {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
    overflow-y: auto;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-top: 1px solid var(--teal-100);
    padding-top: 1.2rem;
    margin-top: auto;
    flex-shrink: 0;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-100), var(--teal-200, #c0dfe0));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-avatar i {
    font-size: 1rem;
    color: var(--teal-600);
}

.client-info h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.client-info span {
    font-size: 0.78rem;
    color: var(--text-soft);
}

/* Responsive adjustments for testimonial cards */
@media (max-width: 1024px) {
    .testimonial-content {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .testimonial-content {
        height: 400px;
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        -webkit-line-clamp: 5;
    }
}

@media (max-width: 480px) {
    .testimonial-content {
        height: 380px;
        padding: 1.25rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        -webkit-line-clamp: 4;
    }
    
    .client-info h4 {
        font-size: 0.85rem;
    }
    
    .client-info span {
        font-size: 0.7rem;
    }
}

/* Package Navigation Buttons */
.packages-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.packages-nav .swiper-button-prev,
.packages-nav .swiper-button-next {
    position: absolute;
    pointer-events: auto;
    background: var(--white);
    color: var(--teal-600);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.packages-nav .swiper-button-prev {
    left: 0;
}

.packages-nav .swiper-button-next {
    right: 0;
}

.packages-nav .swiper-button-prev:hover,
.packages-nav .swiper-button-next:hover {
    background: var(--teal-500);
    color: var(--white);
    transform: scale(1.05);
}

.packages-nav .swiper-button-prev::after,
.packages-nav .swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Testimonials Navigation Buttons */
.testimonials-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.testimonials-nav .swiper-button-prev,
.testimonials-nav .swiper-button-next {
    position: absolute;
    pointer-events: auto;
    background: var(--white);
    color: var(--teal-600);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonials-nav .swiper-button-prev {
    left: 0;
}

.testimonials-nav .swiper-button-next {
    right: 0;
}

.testimonials-nav .swiper-button-prev:hover,
.testimonials-nav .swiper-button-next:hover {
    background: var(--teal-500);
    color: var(--white);
    transform: scale(1.05);
}

.testimonials-nav .swiper-button-prev::after,
.testimonials-nav .swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Responsive adjustments for navigation buttons */
@media (max-width: 768px) {
    .packages-nav .swiper-button-prev,
    .packages-nav .swiper-button-next,
    .testimonials-nav .swiper-button-prev,
    .testimonials-nav .swiper-button-next {
        width: 36px;
        height: 36px;
    }
    
    .packages-nav .swiper-button-prev::after,
    .packages-nav .swiper-button-next::after,
    .testimonials-nav .swiper-button-prev::after,
    .testimonials-nav .swiper-button-next::after {
        font-size: 0.9rem;
    }
}


/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 2.5rem 0;
    background: var(--white);
    border-top: 1px solid var(--teal-100);
    border-bottom: 1px solid var(--teal-100);
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem 2.5rem;
    flex: 1;
    min-width: 220px;
    justify-content: center;
}

.trust-item i {
    font-size: 1.6rem;
    color: var(--teal-500);
    flex-shrink: 0;
}

.trust-item strong {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.2rem;
}

.trust-item span {
    font-size: 0.78rem;
    color: var(--text-soft);
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: var(--teal-100);
    flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

.testimonials-swiper {
    padding: 1rem 0 3.5rem;
}

.testimonial-card {
    padding: 0 0.75rem;
}

.testimonial-content {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem 2rem 1.75rem;
    position: relative;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(44, 154, 156, 0.06);
    transition: var(--transition);
    height: 100%;
}

.testimonial-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.stars i {
    font-size: 0.8rem;
    color: var(--gold);
}

.testimonial-content p {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-top: 1px solid var(--teal-100);
    padding-top: 1.2rem;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-100), var(--teal-200, #c0dfe0));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-avatar i {
    font-size: 1rem;
    color: var(--teal-600);
}

.client-info h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.client-info span {
    font-size: 0.78rem;
    color: var(--text-soft);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
    border-radius: 32px;
    margin: 2rem auto 4rem;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44, 154, 156, 0.2), transparent 70%);
    pointer-events: none;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3.5rem;
    flex-wrap: wrap;
}

.cta-text {
    flex: 1;
    color: var(--white);
    min-width: 280px;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.cta-text p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    background: var(--white);
    color: var(--teal-700);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: var(--off-white);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-btn);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: rgba(37, 211, 102, 0.18);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
}

.btn-whatsapp i {
    font-size: 1.1rem;
}

.cta-image {
    flex: 0 0 280px;
}

.cta-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    height: 220px;
}

/* ===== FOOTER ===== */
.site-footer.premium-footer {
    background-color: var(--teal-900);
    color: #c5e0e3;
    padding: 5rem 0 2.5rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* Aerial Maldives photo at very low opacity — tinted to the brand teal */
.site-footer.premium-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/maldives-seaplane.webp');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    mix-blend-mode: luminosity;
    opacity: 0.38;
    pointer-events: none;
    z-index: 0;
    filter: sepia(1) hue-rotate(140deg) saturate(1.5);
}

/* Vignette — fades image at top and bottom so bg colour dominates */
.site-footer.premium-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--teal-900) 0%,
        rgba(5,31,33,0.6) 30%,
        rgba(5,31,33,0.6) 70%,
        var(--teal-900) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* All footer content above pseudo-elements */
.site-footer.premium-footer > .container {
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.footer-logo-main {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.footer-logo-sub {
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal-400);
    font-weight: 600;
}

.footer-description {
    font-size: 0.88rem;
    line-height: 1.7;
    opacity: 0.75;
    max-width: 280px;
    margin-bottom: 1.25rem;
}

.footer-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.award-badge {
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 600;
    background: rgba(44, 154, 156, 0.15);
    border: 1px solid rgba(44, 154, 156, 0.25);
    color: var(--teal-300);
    padding: 0.25rem 0.7rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links-grid {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    gap: 2.5rem;
}

.footer-section h4 {
    font-family: var(--font-body);
    color: var(--white);
    font-size: 0.85rem;
    margin-bottom: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--teal-500);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.65rem;
}

.footer-section a {
    color: rgba(197, 224, 227, 0.75);
    font-size: 0.87rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-section a:hover {
    color: var(--teal-300);
    transform: translateX(3px);
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.contact-details i {
    color: var(--teal-400);
    font-size: 0.85rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.contact-details a,
.contact-details span {
    color: rgba(197, 224, 227, 0.8);
    font-size: 0.87rem;
    line-height: 1.5;
}

.contact-details a:hover {
    color: var(--teal-300);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--teal-600);
    border-color: var(--teal-500);
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 0.9rem;
    color: var(--white);
}

/* Newsletter */
.footer-newsletter {
    background: rgba(44, 154, 156, 0.12);
    border: 1px solid rgba(44, 154, 156, 0.2);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.newsletter-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--white);
}

.newsletter-content p {
    font-size: 0.87rem;
    opacity: 0.75;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 0.8rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-btn);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    width: 280px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.newsletter-form input:focus {
    border-color: var(--teal-400);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
    border: none;
    border-radius: var(--radius-btn);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(44, 154, 156, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--teal-300);
}

.payment-methods {
    display: flex;
    gap: 0.75rem;
}

.payment-methods span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* ===== SWIPER PAGINATION (sections) ===== */
.packages-pagination,
.testimonials-pagination {
    bottom: 0 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-stats {
        gap: 1.5rem;
        padding: 0.85rem 1.75rem;
    }

    .cta-image {
        flex: 0 0 220px;
    }

    .trust-item {
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 900px) {
    .header-phone {
        display: none;
    }

    .trust-divider {
        display: none;
    }

    .trust-grid {
        gap: 1rem;
    }

    .trust-item {
        flex: 1 1 45%;
        justify-content: flex-start;
        padding: 0.75rem 1rem;
    }

    .search-bar-card {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-radius: 20px;
    }

    .search-field {
        padding: 0.85rem 1.25rem;
        border-bottom: 1px solid var(--teal-100);
    }

    .search-divider {
        display: none;
    }

    .search-btn {
        margin: 0.75rem;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        transition: right 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
        padding: 5.5rem 2.5rem 3rem;
        box-shadow: -10px 0 50px rgba(10, 44, 47, 0.15);
        z-index: 998;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1.75rem;
    }

    .nav-menu a {
        color: var(--text-dark) !important;
        font-size: 1.05rem;
        font-weight: 600;
    }

    .subnavbar {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-stats {
        gap: 1rem;
        padding: 0.75rem 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }

    .cta-actions {
        justify-content: center;
    }

    .cta-image {
        flex: 0 0 100%;
    }

    .footer-newsletter {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
    }

    .newsletter-form input {
        width: 100%;
        max-width: 320px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .payment-methods {
        justify-content: center;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .trust-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.9rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-stats {
        padding: 0.6rem 1rem;
        border-radius: 16px;
    }

    .stat strong {
        font-size: 1.3rem;
    }

    .cta-banner {
        border-radius: 20px;
        margin: 2rem 1rem 3rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
    }

    .packages-swiper {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* ===== PAGE LOAD FADE ===== */
body {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ===== ACCESSIBILITY: Focus styles ===== */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible {
    outline: 2px solid var(--teal-500);
    outline-offset: 3px;
    border-radius: 4px;
}