/* ========================================
   TODI - The Ultimate Experience
   Fancy Recreational Diving Website
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-bg: #030b1a;
    --color-bg-alt: #061229;
    --color-surface: rgba(255, 255, 255, 0.03);
    --color-surface-hover: rgba(255, 255, 255, 0.06);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-text: #c8d6e5;
    --color-text-muted: #6b7f99;
    --color-heading: #ffffff;
    --color-primary: #00d4ff;
    --color-primary-dark: #0099cc;
    --color-secondary: #0066ff;
    --color-accent: #00ffa3;
    --color-gradient: linear-gradient(135deg, #00d4ff 0%, #0066ff 50%, #a855f7 100%);
    --color-gradient-text: linear-gradient(135deg, #00d4ff, #00ffa3);
    --color-gradient-card: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 102, 255, 0.05));

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    --container-width: 1280px;
    --section-padding: 120px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* --- Utility Classes --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-gradient);
    color: #fff;
    box-shadow: 0 4px 24px rgba(0, 212, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

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

.btn-nav {
    background: var(--color-gradient);
    color: #fff;
    padding: 10px 28px;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0, 212, 255, 0.35);
    color: #fff;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loader span {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: var(--color-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.2em;
}

.loader .bubble {
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    animation: loaderBubble 1.4s ease-in-out infinite;
    position: absolute;
}

.loader .bubble:nth-child(1) {
    left: -30px;
    animation-delay: 0s;
}

.loader .bubble:nth-child(2) {
    left: 0;
    animation-delay: 0.2s;
}

.loader .bubble:nth-child(3) {
    left: 30px;
    animation-delay: 0.4s;
}

.loader {
    position: relative;
}

@keyframes loaderBubble {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.3;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- Bubbles Canvas --- */
#bubbles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

#navbar.scrolled {
    background: rgba(3, 11, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
}

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

.nav-logo img {
    height: 44px;
    transition: height var(--transition-base);
}

#navbar.scrolled .nav-logo img {
    height: 36px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
    color: var(--color-primary);
    background: rgba(0, 212, 255, 0.08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(3, 11, 26, 0.4) 0%,
            rgba(3, 11, 26, 0.2) 40%,
            rgba(3, 11, 26, 0.5) 70%,
            rgba(3, 11, 26, 1) 100%
        ),
        radial-gradient(ellipse at center, transparent 0%, rgba(3, 11, 26, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 28px;
}

.hero-line {
    display: block;
}

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

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-plus, .stat-unit {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: scrollFloat 2s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

@keyframes scrollFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.about-img-wrap {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-card:hover .about-img-wrap img {
    transform: scale(1.05);
}

.about-img-overlay {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: var(--color-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--color-text);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: var(--color-surface-hover);
    border-color: rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.feature-item strong {
    display: block;
    color: var(--color-heading);
    font-size: 0.9rem;
}

.feature-item span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* --- Activities Section --- */
.activities {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 102, 255, 0.03) 0%, transparent 60%);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.activity-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.activity-card:hover {
    background: var(--color-surface-hover);
    border-color: rgba(0, 212, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

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

.activity-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.activity-icon-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-icon-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateIcon 15s linear infinite;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.activity-icon-wrap i {
    font-size: 1.6rem;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

.activity-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.activity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.activity-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.activity-details {
    list-style: none;
    margin-bottom: 24px;
}

.activity-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--color-text);
    padding: 6px 0;
}

.activity-details i {
    color: var(--color-primary);
    font-size: 1rem;
}

.activity-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.activity-link:hover {
    gap: 14px;
    color: var(--color-accent);
}

/* --- Showcase Section --- */
.showcase {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.showcase-bg {
    position: absolute;
    inset: 0;
}

.showcase-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--color-bg) 0%, rgba(3, 11, 26, 0.85) 20%, rgba(3, 11, 26, 0.85) 80%, var(--color-bg) 100%);
}

.showcase-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.showcase-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 48px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.showcase-item {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.showcase-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.15);
}

.showcase-item i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 16px;
    display: block;
}

.showcase-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.showcase-item p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

/* --- Academy Section --- */
.academy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.academy-card {
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.academy-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.12);
    box-shadow: var(--shadow-glow);
}

.academy-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.academy-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.academy-card p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.academy-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    color: var(--color-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Pricing Section --- */
.pricing {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(168, 85, 247, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.15);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.04);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gradient);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-gradient);
    color: #fff;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    padding: 36px 28px 24px;
}

.pricing-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: var(--radius-md);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.pricing-body {
    padding: 0 28px 36px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 28px;
}

.price-currency {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-heading);
    line-height: 1;
}

.price-period {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.92rem;
}

.pricing-features li i {
    color: var(--color-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-features li.muted {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.pricing-features li.muted i {
    color: var(--color-text-muted);
}

.pricing-extras {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.extra {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.extra:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.extra i {
    font-size: 1.3rem;
    color: var(--color-primary);
}

.extra strong {
    display: block;
    color: var(--color-heading);
    font-size: 0.9rem;
}

.extra span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* --- Hours Section --- */
.hours-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hours-info .section-tag {
    margin-bottom: 24px;
}

.hours-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.hours-info > p {
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.hours-table {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background var(--transition-fast);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.hours-row.active {
    background: rgba(0, 212, 255, 0.04);
}

.hours-row .day {
    font-weight: 500;
    color: var(--color-heading);
}

.hours-row .time {
    color: var(--color-text);
    font-weight: 500;
}

.hours-row .time.closed {
    color: var(--color-text-muted);
    font-style: italic;
}

.hours-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--color-primary);
}

.hours-note i {
    color: var(--color-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.hours-note strong {
    color: var(--color-heading);
}

.hours-note p {
    font-size: 0.9rem;
}

.hours-visual {
    position: relative;
}

.hours-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.hours-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hours-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
}

.hours-float i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.hours-float strong {
    display: block;
    color: var(--color-heading);
}

.hours-float span {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    text-decoration: none;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.12);
    transform: translateX(8px);
}

.contact-card.accent-card {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.04);
}

.contact-card.accent-card:hover {
    background: rgba(0, 212, 255, 0.08);
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-primary);
}

.contact-card strong {
    display: block;
    color: var(--color-heading);
    font-size: 1rem;
}

.contact-card span {
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.contact-card > i:last-child {
    margin-left: auto;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
}

.contact-card:hover > i:last-child {
    transform: translateX(4px);
    color: var(--color-primary);
}

.map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    filter: brightness(0.75) contrast(1.1) saturate(0.8) hue-rotate(200deg);
}

/* --- CTA Section --- */
.cta {
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    padding: 80px 48px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
    border-top: 1px solid var(--color-border);
    padding: 80px 0 40px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-heading);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    transition: color var(--transition-fast);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.footer-contact i {
    color: var(--color-primary);
    font-size: 1rem;
}

.footer-contact a {
    color: var(--color-text-muted);
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

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

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-down"] {
    transform: translateY(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(50px);
}

[data-animate="fade-right"] {
    transform: translateX(-50px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Responsive --- */
@media (max-width: 1100px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(3, 11, 26, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: 12px 24px;
    }

    .mobile-toggle {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hours-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hours-visual {
        order: -1;
    }

    .hours-image-wrap {
        aspect-ratio: 16/9;
    }

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

    .academy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 64px;
    }

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

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .pricing-extras {
        flex-direction: column;
        align-items: center;
    }

    .cta-content {
        padding: 48px 24px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* --- Selection --- */
::selection {
    background: rgba(0, 212, 255, 0.3);
    color: #fff;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.4);
}
