:root {
    /* Color Palette */
    --bg-dark: #000B18;
    /* Deep Abyss Blue */
    --bg-surface: #02162B;
    /* Deep Navy */
    --bg-surface-light: #052648;
    /* Lighter Navy */

    --primary: #00B4D8;
    /* Vibrant Teal/Cyan */
    --primary-glow: rgba(0, 180, 216, 0.4);

    --accent: #E8B971;
    /* Gold/Sand Accent mimicking the buttons from layout */
    --accent-dark: #C49045;

    --text-primary: #FFFFFF;
    --text-secondary: #A0B2C6;
    --text-muted: #6482A0;

    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-highlight: rgba(255, 255, 255, 0.2);

    /* Layout */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --transition-snappy: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.italic {
    font-style: italic;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.section {
    padding: 6rem 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

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

.fade-in {
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all var(--transition-snappy);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(232, 185, 113, 0.2);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 185, 113, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-highlight);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(0, 11, 24, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    /* Adjust based on actual logo proportion */
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    /* Offset for navbar */
    overflow: hidden;
}

.hero-about {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 2rem;
}

.hero-about+.about-content {
    padding-top: 0;
}

.hero-logo {
    max-width: 550px;
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('assets/background.jpg') center top / cover no-repeat;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 11, 24, 0.2) 0%, var(--bg-dark) 100%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
}

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

.hero-title {
    font-size: 2.8rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #B0C4DE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Series Format Section */
.series-format {
    background-color: var(--bg-dark);
    padding-bottom: 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth);
    cursor: default;
}

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

.card-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.card-header-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border-subtle);
}

.card-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.pool-gradient {
    background: radial-gradient(circle at bottom left, rgba(0, 180, 216, 0.4), transparent 70%);
}

.ocean-gradient {
    background: radial-gradient(circle at bottom right, rgba(2, 62, 138, 0.6), transparent 70%);
}

.card:hover .card-gradient {
    opacity: 0.8;
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.detail-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.detail-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.detail-distances {
    display: flex;
    gap: 0.5rem;
}

.badge {
    background: rgba(232, 185, 113, 0.1);
    color: var(--accent);
    border: 1px solid rgba(232, 185, 113, 0.3);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Register Section */
.register-section {
    position: relative;
    padding: 3rem 0 8rem 0;
    background: url('assets/background.jpg') center bottom / cover no-repeat;
}

.register-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(0, 11, 24, 0.5) 50%, var(--bg-dark) 100%);
    z-index: 0;
}

.register-section>.container {
    position: relative;
    z-index: 1;
}

.quote-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 3rem 0;
}

/* Stats Section */
.border-top {
    border-top: 1px solid var(--border-subtle);
}

.stats-grid,
.believe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    padding: 4rem 0;
}

.believe-grid {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.detail-list {
    list-style: none;
    margin-top: 1rem;
    text-align: left;
}

.detail-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.detail-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.founder-name {
    margin-top: -1rem;
    font-size: 2rem;
    letter-spacing: 1px;
}

.founder-grid,
.about-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.about-split-content {
    text-align: left;
}

.about-split-side {
    position: relative;
    padding: 2rem;
    border-left: 1px solid var(--accent);
}

.about-text.large {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-primary);
}

@media (max-width: 868px) {

    .founder-grid,
    .about-split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-split-side {
        border-left: none;
        border-top: 1px solid var(--accent);
        padding: 2rem 0;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: var(--border-subtle);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 0 20px rgba(232, 185, 113, 0.2);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-subtle);
    background-color: var(--bg-dark);
}

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

.footer-social {
    margin-bottom: 1.25rem;
}

.footer-social-link {
    color: var(--text-secondary);
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Responsive */
.carousel-section {
    padding: 1rem 0 4rem;
    background: var(--bg-dark);
}

.carousel-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-viewport {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 2rem 0;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.carousel-viewport::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.carousel-item {
    flex: 0 0 calc(33.333% - 1rem);
    /* 3 items visible on desktop */
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    background: var(--bg-surface);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-item:hover {
    transform: scale(1.02);
}

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

@media (max-width: 1024px) {
    .carousel-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 85%;
    }
}

/* About Page Styles (Mobile-First Base) */
.about-page {
    background-color: var(--bg-dark);
}

/* 1. General Layouts & Hero */
.about-split-layout,
.founder-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.hero-about {
    padding-top: 100px;
    padding-bottom: 2rem;
    min-height: auto;
    text-align: center;
    display: flex;
    align-items: center;
}

.about-hero-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.about-hero-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
    color: var(--text-primary);
}

/* 2. About Intro Split */
.about-intro-split {
    margin-top: 0;
    gap: 1.5rem;
}

.about-intro-text p {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-intro-text p.last-para {
    margin-bottom: 0;
}

.about-intro-text p .about-text-primary-highlight,
.about-intro-text p .highlight {
    color: inherit;
    font-weight: inherit;
}

.about-text-primary-highlight {
    color: var(--primary);
    font-weight: 600;
}

.about-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding-top: 2rem;
    position: relative;
}

.about-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    width: auto;
    background-color: var(--accent);
}

.about-intro-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

/* 3. Brand Panels & Grid */
.about-brand-wrapper {
    margin-top: 3rem;
}

.about-brand-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-brand-panel {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    box-sizing: border-box;
}

.about-brand-logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.about-brand-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    text-align: center;
    width: 100%;
}

.brand-panel-p {
    margin-bottom: 0;
}

.brand-panel-p.margin-bottom {
    margin-bottom: 1rem;
}

.brand-title-highlight {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
}

/* 4. Together & Transformation Blocks */
.about-together-section {
    margin-top: 3rem;
    text-align: center;
}

.about-together-title,
.series-format-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-align: center;
    text-transform: none;
}

.about-together-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 100%;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.about-together-desc .highlight {
    color: inherit;
    font-weight: inherit;
}

.about-transformation-panel {
    max-width: 100%;
    margin: 3rem auto 0;
    padding: 2rem 1.5rem;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.transform-title {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    max-width: 100%;
    color: var(--text-secondary);
    text-align: center;
}

.transform-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: 100%;
    line-height: 1.7;
    text-align: center;
}

/* 5. Coach & Milestones Section */
.about-founder-section {
    padding-top: 3rem;
    margin-top: 0;
}

.coach-profile-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    border-radius: 8px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

.about-split-side {
    border-left: none;
    border-top: 1px solid var(--accent);
    padding: 1.5rem 0 0 0;
    text-align: center;
}

.coach-p-large {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
}

.coach-p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    text-align: center;
    color: var(--text-secondary);
}

.coach-highlight-sub {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
    color: var(--text-secondary);
    letter-spacing: normal;
}

.founder-details-wrapper {
    margin-top: 3rem;
}

.founder-details-title {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
    text-align: center;
    line-height: 1.4;
}

.milestone-card {
    padding: 1.75rem 1.25rem;
}

.coach-footer-section {
    margin-top: 3.5rem;
    text-align: center;
}

.coach-footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: var(--primary);
}

.coach-footer-sub {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.coach-quote-panel {
    max-width: 100%;
    margin: 2rem auto;
    padding: 1.5rem;
}

.coach-quote-text {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.6;
    font-style: italic;
}

/* 6. Believe Section */
.believe-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    text-transform: none;
    text-align: center;
    margin-bottom: 2rem;
}

.believe-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
    padding: 3rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.believe-grid .stat-item::after {
    display: none;
}

.believe-footer-wrapper {
    margin-top: 3.5rem;
}

.believe-footer-text-1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.believe-footer-text-2 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Progressive Enhancement Media Queries (About Us Page) */
@media (min-width: 768px) {

    .about-split-layout,
    .founder-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        text-align: left;
    }

    .hero-about {
        padding-top: 140px;
    }

    .about-hero-title {
        font-size: 3rem;
        text-align: left;
    }

    .about-hero-subtitle {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
        text-align: left;
    }

    .about-intro-text p {
        text-align: left;
        font-size: 1.1rem;
    }

    .about-logo-wrapper {
        margin-top: -3rem;
        padding-top: 0;
        padding-left: 2rem;
    }

    .about-logo-wrapper::before {
        left: 0;
        top: 3rem;
        bottom: 0;
        width: 1px;
        height: auto;
        background-color: var(--accent);
    }

    .about-intro-logo {
        width: 180px;
        height: 180px;
    }

    .about-brand-wrapper {
        margin-top: 6rem;
    }

    .about-brand-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .about-brand-panel {
        padding: 2.5rem;
        align-items: flex-start;
        text-align: left;
        height: 100%;
    }

    .about-brand-text {
        font-size: 1.05rem;
        text-align: left;
    }

    .about-together-section {
        margin-top: 6rem;
    }

    .about-together-title,
    .series-format-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .about-together-desc {
        font-size: 1.1rem;
        max-width: 800px;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .about-transformation-panel {
        max-width: 900px;
        margin: 4rem auto 0;
        padding: 4rem;
    }

    .transform-title {
        font-size: 1.05rem;
    }

    .transform-desc {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .about-founder-section {
        padding-top: 4rem;
        margin-top: -3rem;
    }

    .coach-profile-img {
        height: 500px;
    }

    .about-split-side {
        border-top: none;
        border-left: 1px solid var(--accent);
        padding: 2rem 0 2rem 2rem;
        text-align: left;
    }

    .coach-p-large {
        font-size: 1.1rem;
        text-align: left;
        margin-bottom: 2rem;
    }

    .coach-p {
        font-size: 1.1rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .coach-highlight-sub {
        font-size: 1.1rem;
        text-align: left;
    }

    .founder-details-wrapper {
        margin-top: 4rem;
    }

    .founder-details-title {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        letter-spacing: 2px;
    }

    .milestone-card {
        padding: 2.5rem;
    }

    .coach-footer-section {
        margin-top: 6rem;
    }

    .coach-footer-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .coach-footer-sub {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .coach-quote-panel {
        max-width: 800px;
        margin: 3rem auto;
        padding: 2.5rem;
    }

    .coach-quote-text {
        font-size: 1.4rem;
    }

    .believe-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 4rem 0;
    }

    .believe-grid .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -1rem;
        top: 50%;
        transform: translateY(-50%);
        height: 60%;
        width: 1px;
        background: var(--border-subtle);
        display: block;
    }

    .believe-footer-wrapper {
        margin-top: 6rem;
    }

    .believe-footer-text-1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .believe-footer-text-2 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
}

/* Register Page Styles (Mobile-First) */
.register-page {
    background-color: var(--bg-dark);
}

/* 1. Navbar & Mobile Toggle */
.register-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.register-nav .nav-content {
    justify-content: space-between;
    width: 100%;
}

.register-nav-logo {
    display: flex;
    align-items: center;
}

.register-logo-img {
    height: 38px;
    width: 38px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.register-logo-img:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: color var(--transition-snappy), transform var(--transition-snappy);
}

.nav-toggle:hover {
    color: var(--primary);
    transform: scale(1.05);
}

.register-nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(2, 22, 43, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    border-left: 1px solid var(--border-subtle);
    transition: right var(--transition-smooth);
    z-index: 999;
}

.register-nav-links.active {
    right: 0;
}

.register-nav-links .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.register-nav-links .nav-cta {
    width: 100%;
    margin-top: 1rem;
}

/* 2. Hero Section */
.register-hero {
    min-height: 70vh;
    padding-top: 100px;
    padding-bottom: 3rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.register-hero .hero-bg {
    background-image: url('assets/pool-image.jpg');
    background-position: center bottom;
    background-size: cover;
    opacity: 0.45;
}

.register-hero-content {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}

.register-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: none;
    line-height: 1.15;
}

.register-hero-title .highlight-text {
    color: inherit;
}

.register-hero-subtitle-top {
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--text-primary);
}

.register-hero-desc {
    text-align: center;
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

/* 3. Info Bar Section */
.register-info-section {
    padding-top: 2rem;
    padding-bottom: 0;
}

.register-info-container {
    margin-bottom: 1.5rem;
}

.register-info-glass {
    padding: 1.5rem;
    background: rgba(5, 38, 72, 0.6);
    border-radius: 8px;
}

.register-info-bar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 0;
    border-top: none;
}

.register-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.register-info-item .info-item-icon {
    font-size: 1.75rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

.register-info-item .info-item-body {
    flex: 1;
}

.register-info-item .info-item-title {
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.register-info-item .info-item-subtext {
    opacity: 0.7;
    font-size: 0.8rem;
    font-style: italic;
    display: block;
    margin-top: 0.4rem;
    line-height: 1.4;
}

.register-info-item .info-item-detail {
    opacity: 0.8;
    font-size: 0.85rem;
    display: block;
    margin-top: 0.2rem;
    line-height: 1.4;
}

.register-info-item .btn-maps {
    display: inline-block;
    margin-top: 0.75rem;
    border-radius: 4px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* 4. About Event & Grid */
.register-event-section {
    padding-top: 3rem;
}

.register-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: none;
}

.register-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: center;
}

.about-grid-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.about-grid-col-center {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    gap: 1rem;
}

.about-icon-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-col-icon {
    font-size: 1.35rem;
    color: var(--primary);
    width: 24px;
    text-align: center;
}

.about-col-text {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.about-grid-p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.about-grid-p-highlight {
    color: var(--accent);
    font-weight: 500;
}

/* 5. Categories / Awards / Age Grid */
.register-details-grid {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-top: 2px solid var(--primary);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.detail-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.detail-col-middle {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 0;
}

.detail-col-title {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.detail-col-title.margin-large {
    margin-bottom: 1.5rem;
}

.detail-col-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    max-width: 320px;
}

.detail-col-desc.margin-large {
    margin-bottom: 1.5rem;
}

.categories-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.category-box {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem 1rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.01);
    transition: transform var(--transition-snappy), border-color var(--transition-snappy);
}

.category-box:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}

.category-box-title {
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.category-box-desc {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.45;
    opacity: 0.8;
}

.trophy-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    height: 80px;
}

.trophy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.trophy-icon {
    margin-bottom: 0.3rem;
}

.trophy-icon.gold {
    font-size: 2.8rem;
    color: #ffd700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.trophy-icon.silver {
    font-size: 2.2rem;
    color: #c0c0c0;
}

.trophy-icon.bronze {
    font-size: 2rem;
    color: #cd7f32;
}

.trophy-rank {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
    line-height: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.age-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.age-badge {
    width: 75px;
    height: 75px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.age-badge-icon {
    font-size: 1.35rem;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.age-badge-number {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-primary);
}

/* 6. What to Expect */
.register-expect-section {
    padding-top: 3rem;
}

.register-expect-glass {
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
}

.register-expect-title {
    color: var(--primary);
    font-size: 1.35rem;
    margin-top: 1.25rem;
    margin-bottom: 3.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.expect-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: left;
}

.expect-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.01);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: border-color var(--transition-snappy);
}

.expect-item:hover {
    border-color: rgba(0, 180, 216, 0.2);
}

.expect-item i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0;
    flex-shrink: 0;
}

.expect-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-primary);
}

.expect-item p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.4;
}

/* 7. Schedule & Kit Pick-up */
.register-schedule-section {
    padding-top: 3rem;
}

.register-schedule-title {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.schedule-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: transform var(--transition-snappy), border-color var(--transition-snappy);
}

.schedule-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-highlight);
}

.schedule-day-banner {
    background-color: #031424;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-day-text {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.schedule-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.schedule-card-body h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.schedule-card-body h4 i {
    color: var(--primary);
}

.schedule-time {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
    color: var(--accent);
    font-weight: 600;
}

.schedule-card-body h5 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.schedule-address {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.45;
    margin-bottom: 1.25rem;
}

.schedule-img-placeholder {
    width: 100%;
    height: 160px;
    background-color: rgba(42, 59, 76, 0.4);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.schedule-img-placeholder span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

/* 8. Final CTA */
.register-cta-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.register-cta-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.register-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: none;
}

/* Progressive Enhancement Media Queries (Mobile-First) */
@media (min-width: 576px) {
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .register-expect-glass {
        padding: 3.5rem 2.5rem;
    }
}

@media (min-width: 768px) {

    /* Navbar */
    .nav-toggle {
        display: none;
    }

    .register-nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        width: auto;
        height: auto;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        gap: 2rem;
        align-items: center;
        border-left: none;
        transition: none;
    }

    .register-nav-links .nav-link {
        font-size: 0.95rem;
        width: auto;
        padding-bottom: 0;
        border-bottom: none;
    }

    .register-nav-links .nav-cta {
        width: auto;
        margin-top: 0;
    }

    /* Hero */
    .register-hero {
        min-height: 80vh;
        padding-bottom: 4rem;
    }

    .register-hero .hero-bg {
        opacity: 0.7;
    }

    .register-hero-content {
        max-width: 700px;
        text-align: left;
        padding-top: 60px;
    }

    .register-hero-title {
        font-size: 2.2rem;
        text-align: left;
        margin-bottom: 0.5rem;
    }

    .register-hero-subtitle-top {
        font-size: 1.35rem;
        letter-spacing: 2px;
        text-align: left;
    }

    .register-hero-desc {
        text-align: left;
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    /* About */
    .register-section-title {
        font-size: 2.2rem;
        text-align: left;
        margin-bottom: 2rem;
    }

    .about-grid-p {
        text-align: left;
    }

    /* CTA */
    .register-cta-section {
        padding-top: 3rem;
        padding-bottom: 6rem;
    }

    .register-cta-icon {
        font-size: 2.2rem;
    }

    .register-cta-title {
        font-size: 2.2rem;
    }
}

@media (min-width: 992px) {

    /* What to Expect */
    .expect-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Schedule */
    .schedule-grid {
        grid-template-columns: 1fr 1fr;
    }

    .schedule-card {
        flex-direction: row;
    }

    .schedule-day-banner {
        width: 50px;
        padding: 0.5rem;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
    }

    .schedule-day-text {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font-size: 1rem;
    }

    .schedule-card-body {
        padding: 2rem;
    }

    .schedule-img-placeholder {
        width: 180px;
        height: auto;
        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (min-width: 1024px) {

    /* Navbar Logo size bump */
    .register-logo-img {
        height: 45px;
        width: 45px;
    }

    /* Hero title scale */
    .register-hero-title {
        font-size: 2.2rem;
    }

    /* Info Bar */
    .register-info-glass {
        padding: 1.5rem 2.5rem;
    }

    .register-info-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .register-info-item {
        flex: 1;
    }

    /* About Event */
    .register-about-grid {
        grid-template-columns: 1.2fr 1.1fr 1.2fr;
        gap: 2rem;
        margin-bottom: 4rem;
        align-items: stretch;
    }

    .about-grid-col-center {
        border-top: none;
        border-bottom: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0 2rem;
        gap: 1.5rem;
    }

    .about-grid-p {
        font-size: 1.1rem;
    }

    .about-col-icon {
        font-size: 1.5rem;
    }

    .about-col-text {
        font-size: 0.95rem;
    }

    /* Details Grid */
    .register-details-grid {
        flex-direction: row;
        justify-content: space-between;
        padding: 3.5rem 2rem;
        gap: 0;
    }

    .detail-col {
        flex: 1;
    }

    .detail-col-middle {
        border-top: none;
        border-bottom: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0 2rem;
    }

    .categories-container {
        flex-direction: row;
        max-width: 100%;
    }

    .category-box {
        flex: 1;
    }

    .detail-col-desc {
        max-width: 100%;
    }
}