/**
 * =====================================================
 * INFINITY PARTY BOAT V4 - TROPICAL PARTY ADVENTURE
 * Vibrant, energetic design reflecting adventure & party
 * Typography: Titan One + Inter
 * =====================================================
 */

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

/* ======================= CSS VARIABLES ======================= */
:root {
    /* Tropical Party Colors */
    --tropical-green: #00C853;
    --tropical-green-dark: #009624;
    --tropical-teal: #00BFA5;
    --sunset-orange: #FF6D00;
    --sunset-coral: #FF5252;
    --golden-yellow: #FFD600;
    --golden-amber: #FFAB00;
    --hot-pink: #FF4081;
    --ocean-blue: #00B8D4;
    --deep-blue: #0277BD;
    --color-ocean-deep: #0C2D48;
    --palm-green: #2E7D32;
    --sand-light: #FFF8E1;
    --sand-cream: #FFFDE7;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-500: #9E9E9E;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --black: #000000;

    /* Primary & Secondary */
    --primary: var(--sunset-orange);
    --primary-hover: #E65100;
    --primary-glow: rgba(255, 109, 0, 0.4);
    --secondary: var(--tropical-green);
    --secondary-hover: var(--tropical-green-dark);
    --accent: var(--golden-yellow);
    --accent-alt: var(--hot-pink);

    /* Gradients */
    --gradient-sunset: linear-gradient(135deg, var(--sunset-orange) 0%, var(--hot-pink) 50%, var(--golden-amber) 100%);
    --gradient-tropical: linear-gradient(135deg, var(--tropical-green) 0%, var(--tropical-teal) 50%, var(--ocean-blue) 100%);
    --gradient-party: linear-gradient(135deg, var(--hot-pink) 0%, var(--sunset-orange) 50%, var(--golden-yellow) 100%);
    --gradient-ocean: linear-gradient(180deg, var(--ocean-blue) 0%, var(--deep-blue) 100%);
    --gradient-hero-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);

    /* Typography */
    --font-display: 'Titan One', cursive;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15), 0 6px 10px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px var(--primary-glow);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Layout */
    --header-height: 90px;
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

/* ======================= BASE STYLES ======================= */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

/* ======================= TYPOGRAPHY ======================= */
h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

h4,
h5,
h6 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

/* ======================= LUCIDE ICONS ======================= */
i[data-lucide] {
    display: inline-block;
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* ======================= BUTTONS ======================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn svg,
.btn i[data-lucide] {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--gradient-party);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: var(--shadow-md), 0 4px 20px rgba(255, 109, 0, 0.3);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 8px 30px rgba(255, 109, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-glow {
    animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: var(--shadow-md), 0 4px 20px rgba(255, 109, 0, 0.3);
    }

    50% {
        box-shadow: var(--shadow-lg), 0 8px 40px rgba(255, 109, 0, 0.5);
    }
}

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

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

.btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-submit {
    position: relative;
}

.btn-submit .btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    display: block;
    position: absolute;
}

/* ======================= HEADER ======================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    /* background: transparent; */
    background: rgba(253, 251, 247, 0.7);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(12, 45, 72, 0.05);
    transition: all var(--transition-base);
}

.header.scrolled {
    /* background: rgba(255, 255, 255, 0.95); */
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(12, 45, 72, 0.05);
}

.header.scrolled .logo-text,
.header.scrolled .logo-accent {
    color: var(--gray-900);
}

.header.scrolled .logo-accent {
    background: var(--gradient-party);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header.scrolled .nav-link {
    color: var(--color-ocean-deep);
}

.header.scrolled .nav-link:hover {
    color: var(--primary);
}

.header.scrolled .hamburger-line {
    background: var(--gray-900);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-xl);
}

/* Logo */
.logo {
    display: flex;
    flex-direction: row;
    line-height: 1;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    transition: color var(--transition-base);
}

.logo-accent {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--golden-yellow);
    transition: all var(--transition-base);
}

/* Navigation */
.nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-ocean-deep);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

.header-cta {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--color-ocean-deep);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    .nav {
        display: block;
    }

    .header-cta {
        display: inline-flex;
    }

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

    .mobile-menu {
        display: none !important;
    }

    .mobile-nav-cta {
        display: none !important;
    }
}

/* Mobile Navigation Menu (exact v3 style) */
.nav.mobile-open {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #FDFBF7;
    padding: var(--space-lg);
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.nav.mobile-open .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav.mobile-open .nav-link {
    display: block;
    padding: var(--space-md) 0;
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--color-ocean-deep);
    border-bottom: 1px solid var(--gray-200);
    text-decoration: none;
}

.nav.mobile-open .nav-link:hover {
    color: var(--primary);
}

/* Mobile CTA Button */
.mobile-nav-cta {
    display: none;
}

.nav.mobile-open .mobile-nav-cta {
    display: inline-flex;
    width: 100%;
    margin-top: var(--space-lg);
    justify-content: center;
}

/* ======================= MOBILE DROPDOWN MENU ======================= */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #FDFBF7;
    padding: var(--space-xl) var(--container-padding);
    z-index: 100;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.mobile-menu.open {
    display: flex;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* Mobile Nav List */
.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--space-xl);
    width: 100%;
    max-width: 400px;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-sm);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-ocean-deep);
    text-decoration: none;
    transition: all var(--transition-fast);
    border-radius: var(--radius-sm);
    text-align: center;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: var(--primary);
    background: rgba(255, 109, 0, 0.05);
}

/* Mobile Menu Actions */
.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
    max-width: 400px;
}

@media (min-width: 480px) {
    .mobile-menu-actions {
        flex-direction: row;
        gap: var(--space-md);
    }
}

.mobile-cta-book {
    flex: 1;
    justify-content: center;
    gap: var(--space-sm);
}

.mobile-cta-book i[data-lucide] {
    width: 18px;
    height: 18px;
}

/* WhatsApp Button - Similar to hero style */
.btn-whatsapp {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.5rem;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.btn-whatsapp:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.3);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    top: var(--header-height);
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 99;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Tablet adjustments - keep same layout as mobile */
@media (min-width: 768px) and (max-width: 1023px) {
    .mobile-menu {
        padding: var(--space-xl) var(--space-2xl);
    }

    .mobile-menu-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
        max-width: 400px;
        margin: 0 auto;
    }

    .mobile-cta-book,
    .btn-whatsapp {
        width: 100%;
    }
}

/* Hide desktop nav on mobile/tablet */
@media (max-width: 1023px) {
    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }
}

/* ======================= HERO SECTION ======================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero-overlay);
}

/* Decorative palm leaves */
.hero-decor {
    position: absolute;
    z-index: -1;
    color: rgba(0, 200, 83, 0.15);
    pointer-events: none;
}

.hero-decor svg {
    width: 200px;
    height: auto;
}

.hero-decor-left {
    left: -50px;
    top: 10%;
    transform: rotate(-15deg);
}

.hero-decor-right {
    right: -50px;
    top: 20%;
    transform: rotate(15deg) scaleX(-1);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: var(--space-3xl) 0;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--gradient-party);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hero-badge svg,
.hero-badge i[data-lucide] {
    width: 1rem;
    height: 1rem;
}

.hero-title {
    color: var(--white);
    margin-bottom: var(--space-lg);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
}

.title-highlight {
    background: var(--gradient-party);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 10px rgba(255, 109, 0, 0.4));
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9375rem;
}

.hero-benefits svg,
.hero-benefits i[data-lucide] {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--tropical-green);
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
}

.pill svg,
.pill i[data-lucide] {
    width: 1rem;
    height: 1rem;
    color: var(--golden-yellow);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
    color: var(--white);
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    min-height: 60px;
}

/* ======================= HERO LIFESTYLE SECTION ======================= */
.hero-lifestyle {
    background: var(--sand-cream);
    padding: calc(var(--header-height) + var(--space-xl)) 0 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-lifestyle>.container {
    max-width: none;
}

@media (min-width: 1024px) {
    .hero-lifestyle>.container {
        padding-left: calc((100vw - var(--container-max)) / 2 + var(--container-padding));
        padding-right: 0;
    }
}

.hero-lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-lifestyle-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-2xl);
    }
}

/* Hero Lifestyle Content (Left Side) */
.hero-lifestyle-content {
    order: 1;
    padding: 0;
}

@media (min-width: 1024px) {
    .hero-lifestyle-content {
        order: 1;
        padding: var(--space-xl) var(--space-xl) var(--space-xl) 0;
    }
}

/* Badge */
.hero-lifestyle-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 109, 0, 0.1);
    border: 1px solid rgba(255, 109, 0, 0.2);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.hero-lifestyle-badge .badge-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* Title */
.hero-lifestyle-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-ocean-deep);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.02em;
}

.hero-lifestyle-title .hero-lifestyle-accent {
    /* background: var(--gradient-party); */
    background: var(--ocean-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero-lifestyle-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-xl);
    /* max-width: 480px; */
}

/* CTAs Area */
.hero-lifestyle-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.hero-lifestyle-ctas .btn {
    padding: 0 1.75rem;
    height: 54px;
    box-sizing: border-box;
    line-height: 54px;
}

.hero-lifestyle-ctas .btn i,
.hero-lifestyle-ctas .btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Divider */
.hero-lifestyle-divider {
    width: 100%;
    max-width: 400px;
    height: 1px;
    background: var(--gray-300);
    margin-bottom: var(--space-md);
}

/* Hero Lifestyle Features Grid */
.hero-lifestyle-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.hero-lifestyle-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-lifestyle-feature .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-lifestyle-feature .feature-icon i[data-lucide] {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.hero-lifestyle-feature span {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--primary);
}

@media (max-width: 480px) {
    .hero-lifestyle-features {
        gap: var(--space-md);
    }

    .hero-lifestyle-feature .feature-icon i[data-lucide] {
        width: 18px;
        height: 18px;
    }

    .hero-lifestyle-feature span {
        font-size: 0.875rem;
    }
}

/* Hero Lifestyle Visual (Right Side) */
.hero-lifestyle-visual {
    order: 2;
    padding: 0 0 var(--space-2xl);
}

@media (min-width: 1024px) {
    .hero-lifestyle-visual {
        order: 2;
        height: 100vh;
        margin-top: calc((var(--header-height) + var(--space-xl)) * -1);
        padding: 0;
    }
}

.hero-lifestyle-image-wrapper {
    position: relative;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-lifestyle-image-wrapper {
        height: 100%;
    }
}

.hero-lifestyle-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .hero-lifestyle-image {
        aspect-ratio: 16 / 10;
    }
}

@media (min-width: 1024px) {
    .hero-lifestyle-image {
        width: 100%;
        height: 100%;
        aspect-ratio: unset;
        border-radius: 0;
        box-shadow: none;
    }
}

/* Logo Image Styles */
.logo-image {
    height: 60px;
    width: auto;
}

@media (min-width: 768px) {
    .logo-image {
        height: 70px;
    }
}

.header.scrolled .logo-image {
    filter: none;
}

.footer-logo-image {
    height: 70px;
    width: auto;
}

/* ======================= TRUST BAR ======================= */
.trust-bar {
    background: var(--color-ocean-deep);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-3xl) 0;
    width: 100%;
}

@media (min-width: 768px) {
    .trust-bar {
        padding: var(--space-3xl) 0;
    }
}

.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3xl) var(--space-3xl);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (min-width: 1024px) {
    .trust-bar-inner {
        justify-content: space-between;
        flex-wrap: nowrap;
    }
}

.trust-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
}

@media (min-width: 768px) {
    .trust-bar-item {
        flex-direction: row;
        gap: 0.75rem;
    }
}

.trust-bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gradient-party);
    border-radius: var(--radius-md);
}

.trust-bar-icon i[data-lucide],
.trust-bar-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
    stroke: var(--white);
}

.trust-bar-item span {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-200);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .trust-bar-item span {
        font-size: 0.9375rem;
    }
}

/* ======================= SECTION STYLES ======================= */
section {
    padding: var(--space-4xl) 0;
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient-tropical);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.section-title {
    color: var(--color-ocean-deep);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 640px;
}

.section-header-center .section-subtitle {
    margin: 0 auto;
}

/* ======================= TOURS SECTION ======================= */
.tours {
    background: linear-gradient(180deg, var(--sand-cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.tours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(255, 214, 0, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.tours-grid {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tour-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Clickable Card Link */
.tour-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tour-card-featured {
    border: 3px solid var(--primary);
}

.tour-card-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    z-index: 10;
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient-party);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

.tour-card-badge-alt {
    background: var(--gradient-tropical);
}

.tour-card-badge-luxury {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--gray-900);
}

/* Price Badge on Image */
.tour-card-price-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    z-index: 10;
    padding: var(--space-sm) var(--space-md);
    background: var(--gradient-tropical);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
}

.tour-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.tour-card-image .image-placeholder {
    transition: transform var(--transition-base);
}

.tour-card:hover .tour-card-image .image-placeholder {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-blue) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
}

.tour-card-content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
}

.tour-meta {
    margin-bottom: var(--space-sm);
}

.tour-duration {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--gray-600);
}

.tour-duration svg,
.tour-duration i[data-lucide] {
    width: 1rem;
    height: 1rem;
}

.tour-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.tour-description {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

/* Experience Label */
.tour-experience-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 150, 255, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

/* Departure Note */
.tour-departure-note {
    display: block;
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--gray-500);
    margin-bottom: var(--space-sm);
}

.tour-departure-note::before {
    content: '📍 ';
}

/* Pickup/Transportation Note for Island Tours */
.tour-pickup-note {
    display: block;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    border-left: 3px solid var(--tropical-green);
}

/* Meta Row with Icons */
.tour-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
}

.tour-meta-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8rem;
    color: var(--gray-600);
}

.tour-meta-item i[data-lucide],
.tour-meta-item svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--primary);
    flex-shrink: 0;
}

.tour-highlights {
    margin-bottom: var(--space-lg);
}

.tour-highlights li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-xs);
    font-size: 0.875rem;
    color: var(--gray-700);
}

.tour-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background: var(--tropical-green);
    border-radius: 50%;
}

.tour-cta {
    width: 100%;
    margin-top: auto;
}

/* Tour Pricing Styles */
.tour-pricing {
    margin-bottom: var(--space-md);
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--deep-blue) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tour-pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.price-from {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xs);
}

.tour-price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.price-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.price-note {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Shared boat specific - per person style */
.tour-card:first-child .tour-pricing {
    background: linear-gradient(135deg, var(--tropical-green) 0%, var(--tropical-teal) 100%);
}

.tour-card:first-child .price-label {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}

/* ======================= TOURS ALT SECTION ======================= */
.tours-alt {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.tours-alt-grid {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .tours-alt-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tour-alt-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.tour-alt-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Tour Alt Image */
.tour-alt-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.tour-alt-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-blue) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    transition: transform var(--transition-base);
}

.tour-alt-card:hover .tour-alt-image .image-placeholder {
    transform: scale(1.05);
}

/* Price Badge */
.tour-alt-price-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--gradient-tropical);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
}

/* Tour Alt Content */
.tour-alt-content {
    padding: var(--space-xl);
}

.tour-alt-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.tour-alt-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tour Alt Meta */
.tour-alt-meta {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
}

.tour-alt-info {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--gray-600);
}

.tour-alt-info i[data-lucide],
.tour-alt-info svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

/* Tour Alt CTA */
.tour-alt-cta {
    width: 100%;
    text-align: center;
}

/* ======================= EXPERIENCE SECTION ======================= */
.experience {
    background: var(--white);
}

.experience-layout {
    display: grid;
    gap: var(--space-3xl);
    align-items: stretch;
}

@media (min-width: 992px) {
    .experience-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.experience-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1.5fr 1fr;
    gap: var(--space-md);
    height: 100%;
    min-height: 400px;
}

.exp-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.exp-image-1 {
    grid-column: span 2;
}

.exp-image .image-placeholder {
    background: linear-gradient(135deg, var(--tropical-green) 0%, var(--tropical-teal) 100%);
}

.experience-content .section-title {
    margin-bottom: var(--space-lg);
}

.experience-intro {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: var(--space-2xl);
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.journey-step {
    display: flex;
    gap: var(--space-lg);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-party);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    border-radius: var(--radius-md);
}

.step-content h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
}

/* ======================= INCLUSIONS SECTION ======================= */
.inclusions {
    background: linear-gradient(180deg, var(--sand-cream) 0%, var(--white) 100%);
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-4xl);
}

@media (min-width: 768px) {
    .inclusions-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.inclusion-card {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background: linear-gradient(180deg, var(--white) 0%, rgba(0, 200, 83, 0.05) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.inclusion-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 200, 83, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.inclusion-card:hover {
    background: linear-gradient(180deg, var(--white) 0%, rgba(0, 200, 83, 0.12) 100%);
    border-color: var(--tropical-green);
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.12);
}

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

.inclusion-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    padding: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-tropical);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.3);
    transition: transform var(--transition-base);
    position: relative;
    z-index: 1;
}

.inclusion-card:hover .inclusion-icon {
    transform: scale(1.1) rotate(-5deg);
}

.inclusion-icon svg,
.inclusion-icon i[data-lucide] {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.inclusion-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
    position: relative;
    z-index: 1;
}

.inclusion-card p {
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin: 0;
    position: relative;
    z-index: 1;
}

.inclusions-note {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(251, 146, 60, 0.1);
    border-radius: var(--radius-md);
}

.inclusions-note svg,
.inclusions-note i[data-lucide] {
    width: 28px;
    height: 28px;
    color: var(--sunset-orange);
    flex-shrink: 0;
}

.inclusions-note p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-800);
    margin: 0;
}

.inclusions-notes-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .inclusions-notes-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ======================= ITINERARY SECTION ======================= */
.itinerary {
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-track {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-tropical);
    border-radius: var(--radius-full);
}

@media (min-width: 768px) {
    .timeline-track {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 64px;
    padding-bottom: var(--space-2xl);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .timeline-item {
        flex-direction: row;
        align-items: center;
        padding-left: 0;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: row-reverse;
    }

    .timeline-item:nth-child(odd) .timeline-time {
        text-align: left;
        padding-left: var(--space-2xl);
        padding-right: 0;
    }

    .timeline-item:nth-child(odd) .timeline-card {
        text-align: right;
        padding-right: var(--space-2xl);
        padding-left: 0;
    }
}

.timeline-marker {
    position: absolute;
    left: 12px;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--white);
    border: 4px solid var(--tropical-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .timeline-marker {
        left: 50%;
        transform: translateX(-50%);
    }
}

.marker-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.timeline-time {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
    .timeline-time {
        flex: 1;
        text-align: right;
        padding-right: var(--space-2xl);
        margin-bottom: 0;
    }
}

.timeline-card {
    flex: 1;
}

@media (min-width: 768px) {
    .timeline-card {
        padding-left: var(--space-2xl);
    }
}

.timeline-card h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.timeline-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
}

.itinerary-note {
    max-width: 800px;
    margin: var(--space-4xl) auto 0;
}

/* ======================= TRUST/REVIEWS SECTION ======================= */
.trust {
    background: var(--sand-cream);
    padding-bottom: var(--space-3xl);
}

.trust-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.trust-header .section-subtitle {
    margin: 0 auto;
}

.reviews-carousel {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .reviews-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
}

.review-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: var(--space-md);
    left: var(--space-lg);
}

.review-text {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-sm);
}

.review-stars svg,
.review-stars i[data-lucide] {
    width: 18px;
    height: 18px;
    color: var(--golden-yellow);
    fill: currentColor;
}

.review-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.badge-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-tropical);
    border-radius: var(--radius-md);
}

.badge-icon svg,
.badge-icon i[data-lucide] {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.badge-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* ======================= FAQ SECTION ======================= */
.faq {
    background: var(--white);
}

.faq-grid {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    background: var(--gray-200);
}

.faq-item.active {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-800);
    transition: transform var(--transition-base);
}

.faq-icon svg,
.faq-icon i[data-lucide] {
    width: 16px;
    height: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
}

/* ======================= CTA SECTION ======================= */
.cta-section {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-party);
    z-index: -1;
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(200px, 200px);
    }
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.cta-section .btn-primary:hover {
    background: var(--sand-cream);
    transform: translateY(-4px);
}

.cta-reassurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.cta-reassurance span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-reassurance svg,
.cta-reassurance i[data-lucide] {
    width: 1rem;
    height: 1rem;
}

/* ======================= CONTACT SECTION ======================= */
.contact {
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    gap: var(--space-3xl);
    align-items: start;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info .section-title {
    margin-bottom: var(--space-md);
}

.contact-info>p {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    text-decoration: none;
}

a.contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-tropical);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-icon svg,
.contact-icon i[data-lucide] {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: var(--space-xs);
}

.contact-item p {
    font-size: 1rem;
    color: var(--gray-800);
    margin: 0;
}

.contact-cta-card {
    background: var(--gradient-party);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
}

.contact-cta-card h3 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.contact-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

.contact-cta-card .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.contact-cta-card .btn-primary:hover {
    background: var(--sand-cream);
}

/* ======================= FOOTER ======================= */
.footer {
    background: var(--color-ocean-deep);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    margin-bottom: var(--space-md);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-accent {
    color: var(--golden-yellow);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--gray-300);
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer a,
.footer li {
    font-size: 0.9375rem;
    color: var(--gray-300);
    transition: color var(--transition-base);
}

.footer a:hover {
    color: var(--tropical-teal);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-700);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

/* ======================= FLOATING CTA ======================= */
.floating-cta {
    position: fixed;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.floating-cta-btn {
    padding: var(--space-md) var(--space-2xl);
    box-shadow: var(--shadow-xl), 0 8px 30px rgba(255, 109, 0, 0.4);
}

@media (min-width: 768px) {
    .floating-cta {
        display: none;
    }
}

/* ======================= BOOKING MODAL ======================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-base);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
}

.modal-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.modal-close svg,
.modal-close i[data-lucide] {
    width: 20px;
    height: 20px;
    color: var(--gray-600);
}

.modal-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.modal-header p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
}

/* Modal Booking Reassurance */
.modal .booking-reassurance {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.modal .reassurance-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--gray-600);
    white-space: nowrap;
}

.modal .reassurance-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-tropical-green);
    flex-shrink: 0;
}

/* ======================= BOOKING FORM ======================= */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

/* Ensure date input respects container width */
.form-group input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 109, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--sunset-coral);
}

.form-row {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-note {
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: var(--space-sm);
}

/* ======================= BOOKING SUCCESS ======================= */
.booking-success {
    text-align: center;
    padding: var(--space-xl) 0;
}

.success-animation {
    margin-bottom: var(--space-lg);
}

.checkmark {
    width: 80px;
    height: 80px;
}

.checkmark-circle {
    stroke: var(--tropical-green);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: checkmarkCircle 0.6s ease-in-out forwards;
}

.checkmark-check {
    stroke: var(--tropical-green);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: checkmarkCheck 0.3s ease-in-out 0.6s forwards;
}

@keyframes checkmarkCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmarkCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.booking-success h3 {
    font-family: var(--font-display);
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.booking-success p {
    color: var(--gray-600);
}

.success-note {
    background: var(--sand-cream);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

/* ======================= UTILITIES ======================= */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ======================= RESPONSIVE ADJUSTMENTS ======================= */
@media (max-width: 767px) {
    :root {
        --container-padding: 1rem;
    }

    section {
        padding: var(--space-3xl) 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-benefits {
        align-items: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-pills {
        justify-content: center;
    }

    .experience-images {
        min-height: 340px;
        margin-bottom: var(--space-xl);
    }

    .hero-lifestyle-subtitle {
        font-size: 1rem;
    }

    .hero-lifestyle-ctas {
        flex-direction: column;
    }

    .hero-lifestyle-ctas .btn {
        width: 100%;
    }

    .trust-bar-inner {
        gap: var(--space-2xl) var(--space-2xl);
    }

    .tour-title {
        font-size: 1.25rem;
    }

    .inclusions-note {
        align-items: flex-start;
        text-align: left;
        gap: var(--space-md);
    }
}