/* ============================================
   TEZORO CAMP - Modern Luxury Design
   Dark theme with Gold accents
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --color-black: #0a0a0a;
    --color-black-light: #111111;
    --color-gray-900: #1a1a1a;
    --color-gray-800: #252525;
    --color-gray-700: #333333;
    --color-gray-600: #4a4a4a;
    --color-gray-500: #666666;
    --color-gray-400: #888888;
    --color-gray-300: #aaaaaa;
    --color-gray-200: #cccccc;
    --color-gray-100: #e5e5e5;
    --color-white: #ffffff;
    --color-off-white: #fafafa;

    /* Gold palette */
    --color-gold: #c9a227;
    --color-gold-light: #dbb93a;
    --color-gold-dark: #a68521;
    --color-gold-muted: rgba(201, 162, 39, 0.15);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #dbb93a 0%, #c9a227 50%, #a68521 100%);
    --gradient-dark: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.8) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, 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;
    --space-5xl: 8rem;

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 8px 30px rgba(201, 162, 39, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-200);
    background-color: var(--color-black);
    overflow-x: hidden;
}

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

picture {
    display: block;
    width: 100%;
    height: 100%;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: var(--space-sm) 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

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

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

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-300);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-base);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-black);
    background: var(--gradient-gold);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: var(--transition-base);
    position: absolute;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-7px);
}

.nav-toggle span:nth-child(2) {
    transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(7px);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(0);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(0);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 320px;
    padding: 0 var(--space-lg);
}

.mobile-link {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gray-300);
    padding: var(--space-lg) 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-link:hover,
.mobile-link:active {
    color: var(--color-gold);
    letter-spacing: 0.14em;
}

.mobile-cta {
    margin-top: var(--space-xl);
    padding: var(--space-md) var(--space-2xl);
    background: var(--gradient-gold);
    color: var(--color-black);
    font-weight: 700;
    border-radius: var(--radius-full);
    border-bottom: none;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
}

.mobile-cta:hover,
.mobile-cta:active {
    color: var(--color-black);
    letter-spacing: 0.16em;
}

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

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

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

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: var(--space-4xl) var(--space-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-gold-muted);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease forwards;
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

.badge-icon svg {
    width: 100%;
    height: 100%;
}

.badge-icon.olympic-rings {
    width: 36px;
    height: 18px;
}

.badge-icon.olympic-rings svg {
    width: 100%;
    height: 100%;
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.02em;
}

.hero-title {
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.1;
}

.title-accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-gray-300);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

.meta-value {
    font-size: 0.95rem;
    color: var(--color-white);
}

.meta-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-black);
}

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

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.btn-full {
    width: 100%;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: var(--space-2xl);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: fadeInUpScroll 0.8s ease 0.5s forwards;
    opacity: 0;
}

@keyframes fadeInUpScroll {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-hint span {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gray-400);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--color-gold) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--space-5xl) 0;
    background: var(--color-off-white);
}

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold-dark);
    margin-bottom: var(--space-md);
}

.section-tag-light {
    color: var(--color-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.2;
}

.section-title-light {
    color: var(--color-white);
}

.title-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.about-card {
    position: relative;
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-gray-100);
    transition: var(--transition-base);
    overflow: hidden;
}

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

.card-number {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gray-200);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-lg);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-icon-olympic {
    width: 48px;
    height: 48px;
}

.card-icon-olympic svg {
    width: 100%;
    height: auto;
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--space-sm);
}

.about-card p {
    font-size: 0.95rem;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* ============================================
   COACHES SECTION
   ============================================ */
.coaches {
    background: var(--color-black);
}

.coaches-header {
    padding: var(--space-5xl) 0 var(--space-3xl);
    text-align: center;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-gray-400);
    max-width: 600px;
    margin: var(--space-lg) auto 0;
}

/* Coach Section */
.coach-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: var(--space-3xl);
}

.coach-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(0.8);
    transition: var(--transition-slow);
}

.coach-section:hover .coach-bg {
    filter: brightness(0.35) saturate(0.9);
    transform: scale(1.02);
}

.coach-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.coach-section .container {
    position: relative;
    z-index: 2;
}

.coach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    padding: var(--space-4xl) 0;
}

/* Coach Image */
.coach-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coach-image-frame {
    position: relative;
    max-width: 450px;
}

.coach-image-frame::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.coach-image-frame img {
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    transition: var(--transition-base);
}

.coach-section:hover .coach-image-frame img {
    transform: translateY(-10px);
    filter: drop-shadow(0 40px 80px rgba(201, 162, 39, 0.2));
}

/* Coach Info */
.coach-info {
    max-width: 500px;
}

.coach-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.badge-gold {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
}

.coach-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    line-height: 1.1;
}

.coach-specialty {
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
}

.coach-bio {
    font-size: 1rem;
    color: var(--color-gray-300);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.coach-stats {
    display: flex;
    gap: var(--space-2xl);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-white);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Coach Video Carousel — Modern Peek Design */
.coach-carousel {
    width: 100%;
    max-width: 1100px;
    margin: var(--space-xl) auto 0;
    padding-bottom: 48px;
    position: relative;
}

.carousel-track {
    position: relative;
    width: 60%;
    margin: 0 auto;
    aspect-ratio: 16/9;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.35;
    transform: scale(0.82);
    filter: brightness(0.35);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    filter: brightness(1);
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.08);
}

.carousel-slide.prev {
    transform: translateX(-75%) scale(0.82);
    z-index: 1;
}

.carousel-slide.next {
    transform: translateX(75%) scale(0.82);
    z-index: 1;
}

.carousel-slide:not(.active):hover {
    opacity: 0.5;
    filter: brightness(0.5);
}

.carousel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.carousel-poster.hidden {
    opacity: 0;
    pointer-events: none;
}

.carousel-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    z-index: 2;
    animation: carouselSpin 0.8s linear infinite;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.carousel-slide.loading .carousel-loader {
    opacity: 1;
}

@keyframes carouselSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow svg {
    width: 22px;
    height: 22px;
}

.carousel-prev {
    left: 8%;
}

.carousel-next {
    right: 8%;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-dot {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--color-gold);
    width: 40px;
}

.carousel-dot:hover {
    background: rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
    .carousel-dots {
        gap: 6px;
    }
    .carousel-dot {
        width: 16px;
        height: 3px;
    }
    .carousel-dot.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .carousel-dots {
        gap: 4px;
    }
    .carousel-dot {
        width: 12px;
        height: 3px;
    }
    .carousel-dot.active {
        width: 20px;
    }
}


/* ============================================
   VENUES SECTION
   ============================================ */
.venues {
    padding: var(--space-5xl) 0;
    background: var(--color-off-white);
    overflow: hidden;
}

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

.venues-carousel {
    max-width: 1180px;
    margin: 0 auto;
    padding-bottom: 48px;
    touch-action: pan-y;
}

.venues-track {
    width: min(72%, 920px);
    height: 570px;
    aspect-ratio: auto;
}

.venue-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-2xl);
    background: var(--color-white);
    border: 1px solid rgba(10, 10, 10, 0.06);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.venues-carousel .carousel-slide {
    opacity: 0;
    filter: none;
    transform: scale(0.76);
    border-color: rgba(10, 10, 10, 0.08);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
    pointer-events: none;
    visibility: hidden;
}

.venues-carousel .carousel-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1) translateX(0);
    z-index: 2;
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16), 0 0 30px rgba(201, 162, 39, 0.1);
}

.venues-carousel .carousel-slide.prev {
    opacity: 0.32;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-72%) scale(0.82);
    z-index: 1;
}

.venues-carousel .carousel-slide.next {
    opacity: 0.32;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(72%) scale(0.82);
    z-index: 1;
}

.venues-carousel .carousel-slide:not(.active):hover {
    opacity: 0.5;
    filter: none;
}

.venues-carousel .carousel-prev {
    left: 4%;
}

.venues-carousel .carousel-next {
    right: 4%;
}

.venues-carousel .carousel-dot {
    background: rgba(10, 10, 10, 0.18);
}

.venues-carousel .carousel-dot.active {
    background: var(--color-gold);
}

.venues-carousel .carousel-dot:hover {
    background: rgba(201, 162, 39, 0.45);
}

.venue-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.venue-card:hover .venue-image img,
.venue-card.active .venue-image img {
    transform: scale(1.05);
}

.venue-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    background: var(--color-white);
}

.venue-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.venue-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 0;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.venue-features span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-gold-dark);
    background: var(--color-gold-muted);
    padding: 5px 10px;
    border-radius: var(--radius-full);
}

/* ============================================
   ATTRACTIONS SECTION
   ============================================ */
.attractions {
    padding: var(--space-5xl) 0;
    background: var(--color-black);
}

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

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.attraction-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-gray-900);
    border: 1px solid var(--color-gray-800);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

.attraction-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.08);
    filter: brightness(1);
}

.attraction-content {
    padding: var(--space-lg);
}

.attraction-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.attraction-content p {
    font-size: 0.85rem;
    color: var(--color-gray-400);
    line-height: 1.6;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-black);
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 0%, rgba(201, 162, 39, 0.16) 0%, transparent 30%),
        radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.06) 0%, transparent 24%),
        linear-gradient(135deg, rgba(18, 18, 18, 0.98) 0%, rgba(6, 6, 6, 1) 58%, rgba(20, 15, 5, 1) 100%);
}

.packages::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.025) 45%, transparent 46%),
        radial-gradient(circle at bottom right, rgba(201, 162, 39, 0.1) 0%, transparent 38%),
        radial-gradient(circle at left center, rgba(201, 162, 39, 0.06) 0%, transparent 30%);
}

.packages .container {
    position: relative;
    z-index: 1;
}

.packages-panel {
    position: relative;
    padding: clamp(1.75rem, 3vw, 3rem);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.88) 0%, rgba(5, 5, 5, 0.96) 100%);
    border: 1px solid rgba(201, 162, 39, 0.16);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.packages-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 30%, rgba(201, 162, 39, 0.06) 100%);
    pointer-events: none;
}

.packages-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.packages-desc {
    max-width: 700px;
    color: var(--color-gray-300);
}

.packages-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    min-height: 100%;
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    background: linear-gradient(180deg, rgba(24, 24, 24, 0.96) 0%, rgba(9, 9, 9, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.26);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--package-tone);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    border-color: rgba(201, 162, 39, 0.24);
}

.package-card-core {
    --package-tone: linear-gradient(90deg, #7d4a21 0%, #b97a33 100%);
}

.package-card-assist {
    --package-tone: linear-gradient(90deg, #8c939f 0%, #d5dae1 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.package-card-premium {
    --package-tone: linear-gradient(90deg, #b98d23 0%, #f2d67d 100%);
    border-color: rgba(201, 162, 39, 0.28);
    background: linear-gradient(180deg, rgba(30, 25, 10, 0.96) 0%, rgba(10, 10, 10, 0.99) 100%);
}

.package-card-head {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-content: start;
    justify-content: flex-start;
    min-height: 200px;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.package-eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-gray-200);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.package-card-premium .package-eyebrow {
    background: rgba(201, 162, 39, 0.16);
    color: var(--color-gold-light);
}

.package-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.35rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--color-white);
}

.package-summary {
    font-size: 0.95rem;
    color: var(--color-gray-400);
    line-height: 1.7;
}

.package-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 14px 32px;
    background: transparent;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none !important;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.package-cta::after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.package-cta:hover {
    background: var(--color-white);
    color: #0a0a0a;
    border-color: var(--color-white);
}

.package-cta:hover::after {
    transform: translateX(4px);
}

.package-card-premium .package-cta {
    border-color: var(--color-gold);
    color: var(--color-gold-light);
}

.package-card-premium .package-cta:hover {
    background: var(--color-gold);
    color: #0a0a0a;
    border-color: var(--color-gold);
}

.package-payment {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: var(--space-md);
    margin-top: auto;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.package-card-premium .package-payment {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.16) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(201, 162, 39, 0.18);
}

.package-card-assist .package-payment {
    background: linear-gradient(135deg, rgba(213, 218, 225, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.package-card-core .package-payment {
    background: linear-gradient(135deg, rgba(185, 122, 51, 0.18) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.package-payment-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.package-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.package-price strong {
    font-family: var(--font-display);
    font-size: clamp(1.95rem, 3vw, 2.45rem);
    line-height: 0.95;
    color: var(--color-white);
}

.package-card-premium .package-price strong {
    color: var(--color-gold-light);
}

.package-card-assist .package-price strong {
    color: #f2f5f8;
}

.package-card-core .package-price strong {
    color: #ffc887;
}

.package-payment-note {
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--color-gray-300);
    max-width: 16rem;
}

.package-qr {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}

.package-qr img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

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

.package-group h4 {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold-light);
}

.package-card-assist .package-group h4 {
    color: #dce2ea;
}

.package-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--color-gray-200);
    line-height: 1.55;
}

.package-feature svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #34d399;
    margin-top: 2px;
}

.package-feature-muted {
    color: var(--color-gray-500);
}

.package-feature-muted svg {
    color: #fb7185;
}

.package-card a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-base);
}

.package-card a:hover {
    color: var(--color-gold-bright);
}

.equipment-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(201, 162, 39, 0.24) 0%, transparent 30%),
        linear-gradient(135deg, rgba(24, 24, 24, 0.97) 0%, rgba(8, 8, 8, 0.98) 58%, rgba(31, 23, 7, 0.98) 100%);
    border: 1px solid rgba(201, 162, 39, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 28px 70px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: -70px;
    left: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.18) 0%, rgba(201, 162, 39, 0) 72%);
    pointer-events: none;
}

.equipment-card::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 68%);
    pointer-events: none;
}

.equipment-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--space-md);
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.equipment-copy-top {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.equipment-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: rgba(201, 162, 39, 0.16);
    color: var(--color-gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.equipment-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    line-height: 1.1;
    color: var(--color-white);
    margin: 0;
}

.equipment-price-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.equipment-price-line strong {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.8vw, 2.15rem);
    line-height: 1;
    color: var(--color-gold-light);
}

.equipment-price-line span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gray-400);
}

.equipment-card p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--color-gray-300);
    margin: 0;
}

.equipment-note {
    max-width: 34rem;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--color-gray-200);
}

/*
 * Bento grid layout for equipment showcase
 * ┌───────────┬──────────┬────────┐
 * │ swimsuit  │  towel   │  bag   │
 * ├─────┬─────┼──────────┴────────┤
 * │ tee │short│     (empty)       │
 * └─────┴─────┴───────────────────┘
 */
.equipment-showcase {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 280px 250px;
    grid-template-areas:
        "swimsuit towel  bag"
        "tshirt   tshirt shorts";
    gap: var(--space-md);
}

.equip-swimsuit { grid-area: swimsuit; }
.equip-towel    { grid-area: towel; }
.equip-bag      { grid-area: bag; }
.equip-tshirt   { grid-area: tshirt; }
.equip-shorts   { grid-area: shorts; }

.equipment-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.equipment-visual-main {
    /* no special span needed */
}

.equipment-visual::before {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
    border-radius: 0 0 16px 16px;
    pointer-events: none;
}

.equipment-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.45s ease;
}

.equipment-card:hover .equipment-visual img {
    transform: scale(1.04);
}

.equipment-visual figcaption {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    display: flex;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    font-size: 0.78rem;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.equipment-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-full);
    border: 1px solid rgba(201, 162, 39, 0.5);
    background: var(--gradient-gold);
    color: var(--color-black);
    font-weight: 600;
    box-shadow: 0 16px 36px rgba(201, 162, 39, 0.24);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.equipment-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 20px 44px rgba(201, 162, 39, 0.3);
    color: var(--color-black);
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience {
    padding: var(--space-5xl) 0;
    background: var(--color-off-white);
}

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

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-xl);
}

.exp-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid var(--color-gray-100);
    transition: var(--transition-base);
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.exp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.exp-card:hover::before {
    transform: scaleX(1);
}

.exp-card-large {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-black);
    border-color: var(--color-gray-800);
}

.exp-card-large .exp-content h3,
.exp-card-large .exp-content p {
    color: var(--color-white);
}

.exp-card-large .exp-content p {
    color: var(--color-gray-400);
}

.exp-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.exp-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: var(--space-sm);
}

.exp-content p {
    font-size: 0.95rem;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* ============================================
   REGISTRATION SECTION
   ============================================ */
.register {
    padding: var(--space-5xl) 0;
    background: var(--color-gray-900);
}

.register-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: start;
}

.register-info {
    position: static;
}

.register-desc {
    font-size: 1rem;
    color: var(--color-gray-400);
    line-height: 1.8;
    margin: var(--space-lg) 0 var(--space-2xl);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.contact-item > div:last-child {
    min-width: 0;
}

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

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-400);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--color-white);
    line-height: 1.6;
    overflow-wrap: anywhere;
}

/* Form Styles */
.register-form-wrapper {
    background: var(--color-gray-900);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid var(--color-gray-800);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-white);
    background: var(--color-gray-800);
    border: 1px solid var(--color-gray-700);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(201, 162, 39, 0.05);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--color-gray-800);
    color: var(--color-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Role Selector */
.role-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    background: var(--color-gray-800);
    border-radius: var(--radius-md);
    padding: 4px;
}

.role-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    color: var(--color-gray-400);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.role-btn:hover {
    color: var(--color-white);
}

.role-btn.active {
    background: var(--color-gold);
    color: var(--color-black);
}

.role-btn.active svg {
    stroke: var(--color-black);
}

.intent-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    background: var(--color-gray-800);
    border-radius: var(--radius-md);
    padding: 4px;
    margin-bottom: var(--space-lg);
}

.intent-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    border: none;
    background: transparent;
    color: var(--color-gray-400);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.intent-btn:hover {
    color: var(--color-white);
}

.intent-btn.active {
    background: var(--color-gold);
    color: var(--color-black);
}

.intent-btn.active svg {
    stroke: var(--color-black);
}

/* Form Section Label */
.form-section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    padding-top: var(--space-sm);
}

/* Custom Checkbox */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--color-gray-300);
    user-select: none;
}

.form-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--color-gray-600);
    border-radius: var(--radius-sm);
    background: var(--color-gray-800);
    transition: var(--transition-fast);
    position: relative;
}

.form-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.form-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid var(--color-black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-black);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid var(--color-gray-800);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4xl);
    margin-bottom: var(--space-3xl);
    text-align: center;
    justify-items: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-gray-400);
    max-width: 300px;
    line-height: 1.7;
}

.footer-links h4,
.footer-social h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-gray-400);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-800);
    border-radius: var(--radius-md);
    color: var(--color-gray-400);
    transition: var(--transition-base);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-gray-500);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .nav-links {
        gap: var(--space-lg);
    }

    .about-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .coach-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .coach-content-reverse {
        direction: ltr;
    }

    .coach-info {
        max-width: 100%;
    }

    .coach-stats {
        justify-content: center;
    }

    .coach-image-frame {
        max-width: 350px;
    }

    /* Carousel on tablet */
    .carousel-track {
        width: 65%;
    }

    .carousel-slide.prev {
        transform: translateX(-70%) scale(0.82);
    }

    .carousel-slide.next {
        transform: translateX(70%) scale(0.82);
    }

    .carousel-prev {
        left: 5%;
    }

    .carousel-next {
        right: 5%;
    }

    .venues-track {
        width: 74%;
        height: 550px;
    }

    .venues-carousel .carousel-prev {
        left: 2%;
    }

    .venues-carousel .carousel-next {
        right: 2%;
    }

    /* Attractions responsive */
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .packages-panel {
        padding: var(--space-2xl);
    }

    .package-card-head {
        min-height: 0;
    }

    .equipment-card {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .equipment-showcase {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "swimsuit towel"
            "tshirt   shorts"
            "bag      .";
    }

    .equipment-visual-main {
        grid-row: auto;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .exp-card-large {
        grid-row: auto;
    }

    .register-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .register-info {
        position: static;
        text-align: center;
    }

    .contact-details {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-xl);
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --space-4xl: 4rem;
        --space-5xl: 5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero mobile - tighten spacing so everything fits */
    .hero-content {
        padding: var(--space-2xl) var(--space-md);
    }

    .hero-badge {
        margin-bottom: var(--space-md);
    }

    .hero-title {
        margin-bottom: var(--space-md);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: var(--space-lg);
    }

    .hero-meta {
        gap: var(--space-sm);
        margin-bottom: var(--space-lg);
    }

    .meta-divider {
        display: none;
    }

    .meta-item {
        padding: var(--space-xs) var(--space-sm);
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-md);
    }

    .meta-label {
        font-size: 0.65rem;
    }

    .meta-value {
        font-size: 0.85rem;
    }

    .scroll-hint {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    /* Contact items - icon on top when stacked */
    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .coach-section {
        min-height: auto;
        padding: var(--space-4xl) 0;
    }

    .coach-image-frame {
        max-width: 280px;
    }

    .coach-name {
        font-size: 2rem;
    }

    /* Carousel on mobile */
    .carousel-track {
        width: 92%;
    }

    .carousel-slide {
        border-radius: 10px;
    }

    .carousel-slide.prev {
        transform: translateX(-55%) scale(0.72);
        opacity: 0.2;
    }

    .carousel-slide.next {
        transform: translateX(55%) scale(0.72);
        opacity: 0.2;
    }

    .carousel-arrow {
        display: none;
    }

    .coach-carousel {
        padding-bottom: 36px;
    }

    /* Attractions mobile - single column */
    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .attraction-image {
        height: 200px;
    }

    .venues-track {
        width: 92%;
        height: 540px;
    }

    .venue-image {
        height: 340px;
    }

    .venues-carousel .carousel-slide.prev {
        transform: translateX(-58%) scale(0.74);
        opacity: 0.22;
    }

    .venues-carousel .carousel-slide.next {
        transform: translateX(58%) scale(0.74);
        opacity: 0.22;
    }

    .packages-panel,
    .package-card,
    .equipment-card {
        padding: var(--space-lg);
    }

    .packages-grid {
        gap: var(--space-lg);
    }

    .package-card h3 {
        font-size: 1.75rem;
    }

    .venues-carousel .carousel-arrow {
        display: none;
    }

    .equipment-showcase {
        grid-template-columns: 1fr;
        grid-template-areas:
            "swimsuit"
            "towel"
            "tshirt"
            "shorts"
            "bag";
    }

    .equip-towel {
        min-height: 200px;
    }

    .equipment-visual-main {
        grid-column: auto;
    }

    .equipment-link {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    /* Hero small mobile - compact everything */
    .hero-content {
        padding: var(--space-xl) var(--space-md);
    }

    .hero-badge {
        padding: var(--space-xs) var(--space-sm);
        margin-bottom: var(--space-sm);
    }

    .hero-badge span {
        font-size: 0.7rem;
    }

    .hero-title {
        margin-bottom: var(--space-sm);
    }

    .title-line {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: var(--space-md);
    }

    .hero-meta {
        margin-bottom: var(--space-md);
    }

    .hero-actions {
        max-width: 260px;
    }

    .btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-card,
    .exp-card {
        padding: var(--space-lg);
    }

    .register-form-wrapper {
        padding: var(--space-lg);
    }

    /* Venues small mobile */
    .venues {
        padding: var(--space-4xl) 0;
    }

    .venues-track {
        width: 100%;
        height: 520px;
    }

    .venue-content {
        padding: var(--space-md);
    }

    .venue-content h3 {
        font-size: 1.2rem;
    }

    .venue-features span {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .venue-image {
        height: 320px;
    }

    /* Attractions small mobile */
    .attractions {
        padding: var(--space-4xl) 0;
    }

    .attraction-content {
        padding: var(--space-md);
    }

    .attraction-content h3 {
        font-size: 1.1rem;
    }

    .attraction-content p {
        font-size: 0.8rem;
    }

    .attraction-image {
        height: 160px;
    }

    .packages-panel {
        padding: var(--space-lg) var(--space-md);
    }

    .equipment-card h3 {
        font-size: 1.8rem;
    }

    .package-card h3 {
        font-size: 1.5rem;
    }

    .package-price strong {
        font-size: 1.85rem;
    }

    .equipment-showcase {
        grid-template-columns: 1fr;
        grid-template-areas:
            "swimsuit"
            "towel"
            "tshirt"
            "shorts"
            "bag";
    }

    .equipment-copy {
        padding: var(--space-md);
    }

    .equipment-price-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .equipment-visual-main {
        grid-column: auto;
        min-height: 220px;
    }

}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll offset for fixed header */
[id] {
    scroll-margin-top: 100px;
}

/* ============================================
   Payment QR Modal
   ============================================ */
.payment-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.payment-modal-overlay.active {
    display: flex;
}

.payment-modal {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    color: #1a1a1a;
}

.payment-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 4px;
}

.payment-modal-close svg {
    width: 20px;
    height: 20px;
}

.payment-modal h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.payment-modal-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 24px;
}

.payment-modal-details {
    margin-bottom: 24px;
}

.payment-modal-package {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.payment-modal-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.payment-tabs {
    display: flex;
    gap: 4px;
    background: #f3f3f3;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 20px;
}

.payment-tab {
    flex: 1;
    padding: 8px 4px;
    border: none;
    background: transparent;
    color: #888;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.payment-tab:hover {
    color: #555;
}

.payment-tab.active {
    background: #1a1a1a;
    color: #fff;
}

.payment-tab-content {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-tab-pane {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.payment-tab-pane.active {
    display: flex;
}

.payment-tab-qr {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.payment-tab-qr canvas {
    border-radius: 8px;
}

.payment-tab-hint {
    font-size: 0.78rem;
    color: #999;
    text-align: center;
    line-height: 1.5;
}

.payment-manual-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.manual-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.manual-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.manual-label {
    font-size: 0.75rem;
    color: #999;
    flex-shrink: 0;
    white-space: nowrap;
}

.manual-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: right;
    word-break: keep-all;
    white-space: nowrap;
}
