/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent-color: #f2d714; /* Brand primary gold */
    --primary-color: #f2d714;
    --accent-dim: rgba(242, 215, 20, 0.15);
    --brand-gray: #353534; /* Brand medium dark gray */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: auto; /* Handled by Lenis */
}

/* Custom Selection */
::selection {
    background-color: var(--accent-color);
    color: #ffffff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Premium Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -2px;
}

p {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
}

/* Navigation Header */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.logo-link:hover {
    transform: scale(1.03);
}

.header-logo-img {
    height: 48px;
    width: auto;
    max-height: 52px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--text-primary);
    text-transform: uppercase;
    white-space: nowrap;
}

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

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-cta {
    background: var(--text-primary);
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.nav-cta:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: scale(1.05);
}

/* Layout Sections */
.section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 5%;
    overflow: hidden;
}

/* Hero & Canvas Pinning */
#hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.canvas-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000 url('../Frame/ezgif-frame-001.webp') no-repeat center center / cover;
}

#animation-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
    transition: transform 0.1s ease-out; /* Smooth canvas parallax */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.hero-chapter {
    position: absolute;
    width: 90%;
    max-width: 700px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.hero-chapter h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

#chapter-1 h1 {
    font-size: 8rem;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 0;
}

.hero-chapter p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-luxury {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-luxury-primary {
    background: var(--text-primary);
    color: #000;
}

.btn-luxury-primary:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px var(--accent-dim);
    transform: translateY(-3px);
}

.btn-luxury-secondary {
    background: transparent;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-luxury-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* Dynamic Ripple Effect */
.btn-ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Introduction Section */
.intro-section {
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.intro-wrapper {
    max-width: 1100px;
    width: 100%;
}

.intro-line {
    font-size: 5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    overflow: hidden;
}

.intro-line span {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-line.revealed span {
    opacity: 1;
    transform: translateY(0);
}

/* Locations Section */
.locations-container {
    position: relative;
    width: 100%;
    background-color: #000;
}

.location-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 100px 5%;
    overflow: hidden;
}

.location-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-slide:hover .location-bg {
    transform: scale(1.05);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.location-info {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin-bottom: 50px;
}

.location-title {
    font-size: 5rem;
    margin-bottom: 16px;
    line-height: 1;
}

.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.location-feature-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

/* Programs Section */
.programs-section {
    background: #050505;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
    position: relative;
}

.programs-header {
    padding: 0 5%;
    margin-bottom: 60px;
}

.programs-header h2 {
    font-size: 4rem;
}

.programs-container {
    display: flex;
    padding: 0 5%;
    gap: 40px;
    overflow: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.programs-container::-webkit-scrollbar {
    display: none;
}

.program-card {
    flex: 0 0 420px;
    scroll-snap-align: center;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    backdrop-filter: blur(12px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s ease;
}

.program-card:hover {
    transform: scale(1.03);
    border-color: var(--accent-color);
}

.program-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.program-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.program-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Facilities Section */
.facilities-section {
    background: #000;
}

.facility-slide {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.facility-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.facility-slide:hover .facility-bg {
    transform: scale(1.04);
}

.facility-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.facility-info {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.facility-title {
    font-size: 6rem;
    line-height: 0.9;
    margin-bottom: 16px;
}

.facility-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
}

/* Franchise Section */
.franchise-section {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.franchise-content {
    max-width: 800px;
}

.franchise-title {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 30px;
}

.franchise-paragraph {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Investment Section */
.investment-section {
    background: radial-gradient(circle at center, #0a0505 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.investment-content {
    position: relative;
    max-width: 800px;
    z-index: 2;
}

.investment-title {
    font-size: 6rem;
    margin-bottom: 40px;
}

/* Floating Particles */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}

/* Final CTA Section */
.final-cta-section {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.final-cta-title {
    font-size: 8rem;
    line-height: 0.9;
    margin-bottom: 40px;
}

/* Footer styling */
.footer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 5% 40px 5%;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.footer-nav {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.footer-socials a:hover {
    color: #000;
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 215, 20, 0.3);
}

/* Custom Premium cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
    .intro-line {
        font-size: 4rem;
    }
    .location-title, .facility-title, .franchise-title, .investment-title {
        font-size: 4.5rem;
    }
    .final-cta-title {
        font-size: 5.5rem;
    }
}

@media (max-width: 768px) {
    .header-logo-img {
        height: 38px;
    }
    .logo-text {
        font-size: 1.15rem;
        letter-spacing: 2px;
    }
    .nav-links {
        display: none; /* Hide on mobile/tablet */
    }
    .hero-title {
        font-size: 4rem;
    }
    .hero-chapter h1 {
        font-size: 2.5rem;
        margin-bottom: 12px;
        letter-spacing: -1px;
    }
    #chapter-1 h1 {
        font-size: 4rem;
        letter-spacing: -2px;
        line-height: 0.95;
    }
    .hero-chapter p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .intro-line {
        font-size: 2.8rem;
    }
    .location-title, .facility-title, .franchise-title, .investment-title {
        font-size: 3rem;
    }
    .final-cta-title {
        font-size: 3.5rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .program-card {
        flex: 0 0 320px;
        min-height: 420px;
        padding: 40px 24px;
    }
}

/* Premium Form Design System */
.form-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 60px 50px !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-align: left;
    display: block;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #ffffff !important;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.15);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 48px;
    background-color: #0d0d0d !important;
    color: #ffffff !important;
}

select.form-control option,
select option {
    background-color: #141414 !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
}

select.form-control option:hover,
select.form-control option:focus,
select.form-control option:active,
select.form-control option:checked {
    background-color: var(--accent-color) !important;
    color: #000000 !important;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Button & Alert Styles */
.btn-primary {
    background: var(--text-primary);
    color: #000000 !important;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: var(--accent-color) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 30px var(--accent-dim);
    transform: translateY(-2px);
}

.alert {
    padding: 16px 24px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.alert-error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff3b30;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-card {
        padding: 30px 20px !important;
    }
}

/* Mobile Hamburger & Drawer Menu Styles */
.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100005;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-toggle-btn:hover .hamburger-line {
    background-color: var(--accent-color);
}

.mobile-toggle-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-toggle-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-toggle-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Fullscreen Mobile Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    padding: 30px 6%;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-nav-drawer.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}

.mobile-close-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.mobile-close-btn:hover {
    background: var(--accent-color);
    color: #000000;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-nav-links li {
    width: 100%;
    text-align: center;
}

.mobile-nav-links li a {
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    text-align: center;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a:focus {
    color: var(--accent-color);
    transform: scale(1.05);
}

.mobile-cta-li {
    margin-top: 20px;
}

.mobile-nav-cta {
    background: var(--accent-color) !important;
    color: #000000 !important;
    padding: 16px 32px !important;
    border-radius: 50px !important;
    text-align: center !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    letter-spacing: 1.5px !important;
    box-shadow: 0 10px 30px rgba(242, 215, 20, 0.2) !important;
}

/* Category Filter Buttons */
.category-filter-btn {
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.category-filter-btn:hover {
    border-color: var(--accent-color) !important;
    color: #ffffff !important;
    background: rgba(242, 215, 20, 0.15) !important;
}

.category-filter-btn.active {
    background: var(--accent-color) !important;
    color: #000000 !important;
    border-color: var(--accent-color) !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 20px rgba(242, 215, 20, 0.3) !important;
}

/* ==========================================================================
   100% EXPERT MOBILE RESPONSIVE SYSTEM FOR ALL INNER PAGES
   ========================================================================== */

@media (max-width: 991px) {
    .nav-header {
        padding: 16px 5%;
    }

    .nav-links {
        display: none !important;
    }

    .desktop-cta {
        display: none !important;
    }

    .mobile-toggle-btn {
        display: flex !important;
    }

    .logo-text {
        font-size: 1.15rem;
        letter-spacing: 1.5px;
    }

    .header-logo-img {
        height: 38px;
    }

    /* Locations & Split Layouts */
    #branches-showcase > div > div {
        grid-template-columns: 1fr !important;
    }

    .facility-showcase-row {
        flex-direction: column !important;
        padding: 60px 5% !important;
        gap: 30px !important;
        min-height: auto !important;
    }

    .contact-split-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 30px 20px !important;
    }

    .contact-form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    /* Global Section & Padding Adjustments */
    .section, section {
        padding: 60px 5% !important;
        min-height: auto !important;
    }

    /* Typography Scaling */
    h1, .hero-title {
        font-size: 2.8rem !important;
        line-height: 1.15 !important;
        letter-spacing: -1px !important;
    }

    #chapter-1 h1 {
        font-size: 4.8rem !important;
        line-height: 0.92 !important;
        letter-spacing: -2px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
    }

    #fac-hero-title {
        font-size: 2.4rem !important;
    }

    h2, .location-title, .facility-title, .franchise-title, .investment-title, .final-cta-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 24px !important;
        letter-spacing: -0.5px !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    p, .hero-subtitle {
        font-size: 0.95rem !important;
    }

    /* Form Systems */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .form-card {
        padding: 30px 20px !important;
    }

    /* Locations Page (branches) */
    .branch-selector-card {
        flex-direction: column !important;
        padding: 20px !important;
    }

    .branch-selector-card > div:first-child {
        width: 100% !important;
        height: 180px !important;
    }

    #branches-showcase iframe {
        height: 320px !important;
    }

    div[style*="position: sticky; top: 120px;"] {
        position: relative !important;
        top: 0 !important;
        height: 340px !important;
    }

    /* Programs Page Catalog */
    #programs-grid {
        grid-template-columns: 1fr !important;
    }

    .category-filter-btn {
        padding: 10px 18px !important;
        font-size: 0.75rem !important;
    }

    /* Facilities Page */
    .facility-showcase-row > div:first-child {
        height: 260px !important;
        width: 100% !important;
        flex: 1 1 100% !important;
    }

    .facility-showcase-row > div:nth-child(2) {
        max-width: 100% !important;
        flex: 1 1 100% !important;
    }

    #lightbox-gallery {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
        gap: 12px !important;
    }

    .gallery-item-wrapper {
        height: 160px !important;
    }

    .lightbox-modal {
        padding: 15px !important;
    }

    .lightbox-modal img {
        max-width: 95vw !important;
        max-height: 65vh !important;
    }

    /* About Us Page Timeline & Cards */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(450px, 1fr))"],
    div[style*="grid-template-columns: repeat(auto-fit, minmax(350px, 1fr))"],
    div[style*="grid-template-columns: repeat(auto-fit, minmax(320px, 1fr))"] {
        grid-template-columns: 1fr !important;
    }

    .about-card {
        padding: 36px 24px !important;
    }

    .timeline-line {
        left: 20px !important;
        transform: none !important;
    }

    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 40px !important;
        margin-bottom: 50px !important;
    }

    .timeline-node {
        left: 20px !important;
        transform: translateX(-50%) !important;
    }

    .timeline-card {
        width: 100% !important;
        padding: 24px !important;
    }

    /* Franchise & Investment Metrics */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))"] {
        grid-template-columns: 1fr !important;
    }

    /* Footer Mobile Responsiveness */
    .footer {
        padding: 50px 5% 30px 5% !important;
    }

    .footer-top {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .footer-nav {
        gap: 30px !important;
        flex-wrap: wrap !important;
    }

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

@media (max-width: 480px) {
    #chapter-1 h1 {
        font-size: 3.8rem !important;
        line-height: 0.92 !important;
        letter-spacing: -1.5px !important;
    }
}

