/* ==========================================================================
   RAJMUDRA FITNESS CLUB - CORE CSS
   Theme: Royal Gold, Crimson, & Charcoal (Premium Dark Theme)
   Fonts: Cinzel (Headings), Outfit (Body Text)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Reset
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --bg-primary: #0a0a0c;      /* Deep black-charcoal background */
    --bg-secondary: #121216;    /* Secondary lighter charcoal background */
    --bg-card: #181820;         /* Card background */
    --bg-panel: #20202a;        /* Elevated panels/dropdowns background */
    
    --gold: #d4af37;            /* Metallic Gold */
    --gold-bright: #fcd558;     /* Bright gold for hover states */
    --gold-dark: #aa8513;       /* Dark gold shadow accent */
    --gold-gradient: linear-gradient(135deg, #fcd558 0%, #d4af37 50%, #99780c 100%);
    
    --crimson: #8a1a1a;         /* Royal Crimson Red */
    --crimson-bright: #b82e2e;  /* Highlight Crimson */
    --crimson-dark: #570e0e;    /* Dark Crimson backdrop */
    --crimson-gradient: linear-gradient(135deg, #b82e2e 0%, #8a1a1a 60%, #4a0909 100%);
    
    --text-primary: #f5f6f8;    /* Near white text */
    --text-secondary: #a6a9b6;  /* Muted grey-blue text */
    --text-muted: #676974;       /* Dark grey for tiny details */
    
    --border-color: rgba(212, 175, 55, 0.15); /* Subtly gold borders */
    --border-glowing: rgba(212, 175, 55, 0.4);
    
    /* Layout Details */
    --nav-height: 80px;
    --nav-height-shrunk: 70px;
    --border-radius: 12px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --glow-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-primary);
}

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

ul {
    list-style: none;
}

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

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-panel);
    border: 2px solid var(--bg-primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* --------------------------------------------------------------------------
   2. Typography & Layout Utilities
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    line-height: 1.2;
}

.text-gold {
    background: linear-gradient(90deg, #d4af37 0%, #fcd558 25%, #d4af37 50%, #fcd558 75%, #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 6s linear infinite;
}

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

.section-tag {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}

/* Title divider with crown */
.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.divider-line {
    height: 1px;
    width: 60px;
    background: rgba(255, 255, 255, 0.15);
}

.divider-line.gold {
    background: var(--gold-dark);
}

.divider-icon {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

section:hover .divider-icon {
    transform: rotate(360deg);
}

.divider-icon.gold {
    color: var(--gold);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-block {
    display: flex;
    width: 100%;
    margin-bottom: 12px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #121214;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fcd558 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    border: 1px solid var(--crimson-bright);
    color: var(--text-primary);
    background: rgba(138, 26, 26, 0.15);
    backdrop-filter: blur(5px);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--crimson-gradient);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 26, 26, 0.3);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-card-link {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    margin-top: 15px;
}

.btn-card-link i {
    transition: var(--transition-fast);
}

.btn-card-link:hover i {
    transform: translateX(6px);
}

.btn-card-link:hover {
    color: var(--gold-bright);
}

/* --------------------------------------------------------------------------
   3. Navigation Bar
   -------------------------------------------------------------------------- */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Scrolled Navbar Style (Shrunk and Blur) */
.navbar-header.scrolled {
    background-color: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
}

.navbar-header.scrolled .navbar {
    height: var(--nav-height-shrunk);
    border-bottom-color: var(--border-color);
}

/* Logo & Brand text */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 52px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.navbar-header.scrolled .logo-img {
    height: 44px;
}

.brand-text {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-subtext {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 3px;
}

/* Nav Menu Items */
.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

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

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

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

/* Dropdown styling */
.rfc-sup {
    font-size: 0.55rem;
    color: var(--gold);
    margin-left: 2px;
    vertical-align: super;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 4px rgba(212, 175, 55, 0.4);
}

.drop-icon {
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.nav-dropdown-wrapper {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 230px;
    background-color: rgba(20, 20, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}

/* Show Dropdown on Hover */
.nav-dropdown-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-wrapper:hover .drop-icon {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.dropdown-menu li a i {
    width: 16px;
    text-align: center;
    color: var(--gold);
    font-size: 0.95rem;
}

.dropdown-menu li a:hover {
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--text-primary);
    transform: translateX(4px);
}

/* Custom visual dropdown item CTA */
.dropdown-menu li a.cta-dropdown-item {
    border: 1px dashed var(--gold);
    background-color: rgba(212, 175, 55, 0.04);
}

.dropdown-menu li a.cta-dropdown-item i {
    color: var(--gold-bright);
}

.dropdown-menu li a.cta-dropdown-item:hover {
    background-color: rgba(212, 175, 55, 0.15);
    border-style: solid;
}

/* Profile Avatar */
.profile-container {
    cursor: pointer;
    padding: 2px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    transition: var(--transition-smooth);
}

.profile-container:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-shadow);
}

.profile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

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

.status-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 11px;
    height: 11px;
    background-color: #2ecc71;
    border: 2px solid var(--bg-primary);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(46, 204, 113, 0.6);
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 5px;
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   4. Floating Shop Cart Pill
   -------------------------------------------------------------------------- */
.floating-cart {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #121214;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    z-index: 90;
    font-size: 1.4rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
}

.floating-cart.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.floating-cart:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.6);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--crimson);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #121214;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 100px;
    background-image: url('assets/gym_floor.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-audio-toggle {
    position: absolute;
    bottom: 130px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(20, 20, 26, 0.75);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 5px rgba(212, 175, 55, 0.2);
}

.hero-audio-toggle:hover {
    background-color: var(--gold);
    color: #121214;
    box-shadow: 0 0 15px var(--gold);
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .hero-audio-toggle {
        bottom: 120px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(138, 26, 26, 0.25) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
                linear-gradient(to bottom, rgba(10, 10, 12, 0.8) 0%, rgba(10, 10, 12, 0.6) 50%, rgba(10, 10, 12, 0.95) 100%);
    background-size: 200% 200%;
    animation: gradientBg 15s ease infinite;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid var(--border-color);
    background-color: rgba(20, 20, 26, 0.6);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 25px;
    box-shadow: var(--glow-shadow);
}

.sanskrit-motto {
    margin-bottom: 35px;
    padding: 25px 40px;
    background: linear-gradient(90deg, rgba(138, 26, 26, 0) 0%, rgba(138, 26, 26, 0.25) 50%, rgba(138, 26, 26, 0) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 850px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: mottoPulse 4s ease-in-out infinite;
}

.sanskrit-line {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--gold-bright);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.35);
    letter-spacing: 1.5px;
    white-space: nowrap;
    text-align: center;
    z-index: 2;
    transition: var(--transition-smooth);
}

.sanskrit-upper {
    margin-bottom: 15px;
}

.sanskrit-lower {
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .sanskrit-line {
        font-size: 1.15rem;
        white-space: normal;
        width: 95%;
        margin: 8px auto;
        line-height: 1.4;
        letter-spacing: 1px;
    }
    .sanskrit-upper {
        margin-bottom: 10px;
    }
    .sanskrit-lower {
        margin-top: 10px;
        margin-bottom: 12px;
    }
}

.sanskrit-logo-container {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.hero-logo-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}

.hero-logo-img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.8);
}

.verse-translation {
    position: relative;
    z-index: 2;
    display: block;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    font-weight: 300;
    max-width: 600px;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Quick statistics bar */
.quick-info-bar {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    background: rgba(24, 24, 32, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    box-shadow: var(--box-shadow);
}

.info-item {
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}
.info-item:hover {
    transform: translateY(-5px);
}

.info-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    width: 1px;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.08);
}

.info-number {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    display: inline-block;
}

.info-plus {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    vertical-align: super;
}

.info-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* --------------------------------------------------------------------------
   6. Exclusive Pillar Cards
   -------------------------------------------------------------------------- */
.exclusive-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.exclusive-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.exclusive-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glowing);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 175, 55, 0.15);
}

.card-img-wrapper {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.exclusive-card:hover .card-img {
    transform: scale(1.06);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, rgba(24, 24, 32, 0.95) 100%);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-badge-top {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.card-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.exclusive-card:hover .card-heading {
    color: var(--gold);
}

.card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   7. Franchise Section
   -------------------------------------------------------------------------- */
.franchise-section {
    position: relative;
    padding: 100px 40px;
    background-color: var(--bg-secondary);
}

.franchise-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(138, 26, 26, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.locations-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.location-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--box-shadow);
}

.location-hdr {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.location-pin {
    font-size: 1.4rem;
    color: var(--crimson-bright);
}

.location-hdr h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.location-detail {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.location-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.active-status {
    color: #2ecc71;
}

/* Special Franchise Card */
.franchise-cta-card {
    border: 2px dashed rgba(212, 175, 55, 0.3);
    background-color: rgba(212, 175, 55, 0.02);
}

.franchise-cta-card:hover {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: var(--glow-shadow);
}

.franchise-map-container {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
}

.franchise-map-container:hover {
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05);
}

.map-header {
    margin-bottom: 25px;
    text-align: left;
}

.map-header h3 {
    font-family: var(--font-primary); /* Cinzel or primary serif */
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.map-iframe-wrapper {
    position: relative;
    border-radius: calc(var(--border-radius) - 4px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 0;
}

.map-iframe-wrapper iframe {
    width: 100%;
    height: 300px;
    border: 0;
    /* Custom dark filter to match the crimson and gold premium theme */
    filter: invert(90%) hue-rotate(180deg) grayscale(40%) contrast(95%);
    transition: opacity 0.2s ease, filter var(--transition-smooth);
}

.franchise-map-container:hover .map-iframe-wrapper iframe {
    filter: invert(90%) hue-rotate(180deg) grayscale(10%) contrast(100%);
}

.active-location-card {
    border-color: var(--gold) !important;
    background-color: rgba(212, 175, 55, 0.04) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1) !important;
    transform: translateY(-5px);
}

/* --------------------------------------------------------------------------
   8. Supplement Store
   -------------------------------------------------------------------------- */
.supplement-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.supplement-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.supplement-cabinet-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.supplement-cabinet-panel:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--glow-shadow);
}

.cabinet-img-container {
    position: relative;
    height: 520px;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cabinet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.supplement-cabinet-panel:hover .cabinet-img {
    transform: scale(1.02);
}

.cabinet-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.cabinet-badge {
    background: var(--gold-gradient);
    color: #121214;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cabinet-info {
    padding: 25px;
}

.cabinet-info h4 {
    font-family: var(--font-primary), 'Cinzel', serif;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.cabinet-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

.supplement-menu-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.menu-title {
    font-family: var(--font-primary), 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    letter-spacing: 1px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.supplement-price-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: var(--transition-fast);
}

.price-list-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateX(4px);
}

.item-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.item-badge, .item-badge-premium {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    align-self: flex-start;
}

.item-badge {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-badge-premium {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.item-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.item-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 300;
}

.item-action {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.item-price {
    font-family: var(--font-primary), 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.btn-add-cart {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.btn-add-cart:hover {
    background: var(--gold-gradient);
    color: #121214;
    border-color: transparent;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .supplement-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cabinet-img-container {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .price-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .item-action {
        width: 100%;
        justify-content: space-between;
    }
}

/* --------------------------------------------------------------------------
   9. About Section & Coach Profile
   -------------------------------------------------------------------------- */
.about-section {
    padding: 100px 40px;
    background-color: var(--bg-secondary);
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.95fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-para {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Trainer details box */
.trainer-highlight {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.trainer-badge {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: var(--glow-shadow);
}

.trainer-badge-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.trainer-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.trainer-details p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Founder Card Styles */
.about-founder-column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.founder-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.founder-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: var(--glow-shadow);
}

.founder-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.founder-info {
    padding: 25px;
    text-align: center;
}

.founder-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.founder-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.founder-awards {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 12px;
}

.founder-bio {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

/* Inquiry styles */
.inquiry-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: 1px;
    position: relative;
    padding-left: 15px;
    font-family: var(--font-primary), 'Cinzel', serif;
}

.inquiry-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--gold);
    border-radius: 2px;
}

.inquiry-highlight {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: var(--transition-smooth);
}

.inquiry-highlight:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--glow-shadow);
}

.inquiry-img-wrapper {
    width: 240px;
    height: 160px;
    border-radius: calc(var(--border-radius) - 4px);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.inquiry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.inquiry-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inquiry-details p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.inquiry-details .btn {
    align-self: flex-start;
}

@media (max-width: 768px) {
    .inquiry-highlight {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .inquiry-img-wrapper {
        width: 100%;
        height: 240px;
    }
    .inquiry-details .btn {
        align-self: center;
    }
}

/* Amenities grids */
.amenity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.amenity-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    transition: var(--transition-smooth);
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.08);
}

.amenity-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 18px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.amenity-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.amenity-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   10. Footer Section
   -------------------------------------------------------------------------- */
.footer {
    background-color: #050507;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 40px 30px;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand .logo-wrapper {
    margin-bottom: 25px;
}

.footer-moto {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: #121214;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 1.5px;
    background-color: var(--gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact p i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-contact p a {
    color: inherit;
    transition: var(--transition-fast);
}

.footer-contact p a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   11. Sliding Profile Drawer (Side Drawer)
   -------------------------------------------------------------------------- */
.profile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 12, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    will-change: opacity, visibility;
}

.profile-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.profile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    will-change: transform;
}

.profile-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--bg-card);
}

.drawer-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.close-drawer {
    background: transparent;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.close-drawer:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.drawer-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
}

/* Registration Welcome Block */
.register-welcome {
    text-align: center;
    padding: 0 0 25px 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.15);
    margin-bottom: 25px;
}

.register-welcome .welcome-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 12px;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35));
}

.register-welcome h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 1.5px;
}

.register-welcome p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 300;
}

/* User Card inside Drawer */
.user-profile-card {
    text-align: center;
    margin-bottom: 30px;
}

.profile-drawer-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid var(--gold);
    overflow: hidden;
    box-shadow: var(--glow-shadow);
}

.profile-drawer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.user-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.user-id {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Stats in Drawer */
.user-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.stat-box {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
}

.stat-val {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Info Cards in Drawer */
.drawer-info-section {
    margin-bottom: 30px;
}

.drawer-info-section h5 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--gold);
}

.info-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 8px 0;
}

.info-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.info-row span {
    color: var(--text-secondary);
}

/* Daily Workout card */
.workout-card {
    border-left: 3px solid var(--gold);
}

.workout-title-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.workout-category {
    color: var(--crimson-bright);
    letter-spacing: 1px;
}

.workout-exercises {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.workout-exercises li {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.workout-exercises li i {
    color: var(--gold);
}

.logout-btn {
    margin-top: 15px;
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.logout-btn:hover {
    background-color: rgba(255, 0, 0, 0.05);
    border-color: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
}

/* --------------------------------------------------------------------------
   12. Central Modal Overlay
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 12, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1100;
}

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

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) scale(0.9);
    width: 90%;
    max-width: 600px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1101;
}

.modal.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--gold);
    text-align: center;
}

.modal-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

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

label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    will-change: border-color, box-shadow;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

textarea.form-control {
    resize: none;
}

/* Custom styles for select element dropdown arrow */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

/* Dynamic Alert Toasts */
.toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2000;
}

.toast {
    background-color: var(--bg-card);
    border-left: 4px solid var(--gold);
    border-radius: 6px;
    padding: 16px 20px;
    box-shadow: var(--box-shadow);
    color: var(--text-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-150%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 300px;
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    color: var(--gold);
}

.toast.toast-success {
    border-left-color: #2ecc71;
}

.toast.toast-success i {
    color: #2ecc71;
}

.toast.toast-error {
    border-left-color: #e74c3c;
}

.toast.toast-error i {
    color: #e74c3c;
}

/* --------------------------------------------------------------------------
   13. Dynamic Modal Facility Card Details
   -------------------------------------------------------------------------- */
.facility-modal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.facility-modal-img {
    width: 100%;
    border-radius: var(--border-radius);
    height: 300px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.facility-modal-info h4 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.facility-modal-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.facility-details-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.facility-details-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.facility-details-list li i {
    color: var(--gold);
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   14. Animations & Reveal Hooks
   -------------------------------------------------------------------------- */
.animate-fade {
    animation: fadeIn 1s forwards ease-out;
}

.animate-slide-up {
    animation: slideUp 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gradientBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes mottoPulse {
    0% {
        border-color: rgba(212, 175, 55, 0.15);
        box-shadow: 0 0 10px rgba(138, 26, 26, 0);
    }
    50% {
        border-color: rgba(212, 175, 55, 0.4);
        box-shadow: 0 0 25px rgba(138, 26, 26, 0.15);
    }
    100% {
        border-color: rgba(212, 175, 55, 0.15);
        box-shadow: 0 0 10px rgba(138, 26, 26, 0);
    }
}

/* Scroll reveal initial styles */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   15. Responsive Styling (Media Queries)
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .navbar {
        padding: 0 25px;
    }
    .about-container {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    /* Mobile Menu Toggle */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-right {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 30px;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        overflow-y: auto;
    }
    
    .navbar-header.scrolled .nav-right {
        top: var(--nav-height-shrunk);
        height: calc(100vh - var(--nav-height-shrunk));
    }
    
    .nav-right.open {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li a {
        display: inline-flex;
        font-size: 1.15rem;
        padding: 12px;
    }
    
    /* Hover dropdowns convert to clickable on mobile */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        display: none;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.02);
        margin-top: 5px;
    }
    
    .nav-dropdown-wrapper.active .dropdown-menu {
        display: flex;
    }
    
    .profile-container {
        margin-top: 10px;
    }
    
    /* Hamburger toggled cross style */
    .mobile-nav-toggle.open .bar:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    
    .mobile-nav-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.open .bar:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
    
    /* Hero section font sizing */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .quick-info-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
    }
    
    .info-item:nth-child(2)::after {
        display: none;
    }
    
    /* Columns wrap */
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-logo-img {
        width: 140px;
        height: 140px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 30px;
    }
    
    .exclusive-section, .franchise-section, .supplement-section, .about-section, .footer {
        padding: 60px 20px;
    }
    
    .amenity-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .profile-drawer {
        width: 100%;
        right: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal {
        padding: 25px;
    }
    
    .facility-modal-layout {
        grid-template-columns: 1fr;
    }
    
    .facility-modal-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .quick-info-bar {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-item::after {
        display: none;
    }
}

/* ==========================================================================
   11. Splash Screen Intro (Fiery Animation)
   ========================================================================== */
body.splash-active {
    overflow: hidden !important;
    height: 100vh;
}
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #030304;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Splash Screen Content & Text Animations */
.splash-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-primary);
    padding: 0 20px;
}

.splash-sub {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--gold);
    display: block;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fade-in-down 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.splash-title {
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1.1;
    margin-bottom: 10px;
    opacity: 0;
    transform: scale(0.9);
    animation: fade-in-scale 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4), 0 0 30px rgba(138, 26, 26, 0.5);
}

.splash-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 7px;
    color: var(--text-primary);
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4), 0 0 30px rgba(138, 26, 26, 0.5);
}

/* Loader Progress Bar (Fire Loading Sign Going Left to Right) */
.splash-loader-bar {
    width: 300px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0 auto;
    overflow: visible; /* Required so flame head is not clipped */
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    position: relative;
}

.splash-progress {
    width: 0%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #8a1a1a 0%, #e65c00 40%, #fcd558 75%, #ffffff 100%);
    background-size: 200% 100%;
    box-shadow: 0 0 12px #fcd558, 0 0 5px #e65c00;
    position: relative;
    animation: load-progress 1.2s linear forwards, fire-flow 1.5s linear infinite;
}

/* Flickering Flame Head Leading the Progress Bar */
.splash-progress::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50% 50% 0 50%;
    background: radial-gradient(circle at center, #ffffff 0%, #fcd558 40%, #e65c00 70%, transparent 100%);
    transform-origin: center;
    box-shadow: 0 0 12px #fcd558, 0 0 25px #e65c00;
    animation: flame-head-flicker 0.12s ease-in-out infinite alternate;
}

/* Animations Keyframes */
@keyframes load-progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fire-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: -200% 50%; }
}

@keyframes flame-head-flicker {
    0% { transform: translateY(-50%) scale(0.9) rotate(-45deg); opacity: 0.95; }
    100% { transform: translateY(-50%) scale(1.25) rotate(-35deg); opacity: 1; filter: brightness(1.25); }
}

@keyframes fade-in-down {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-scale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .splash-title {
        font-size: 2.6rem;
        letter-spacing: 2px;
    }
    .splash-subtitle {
        font-size: 1.6rem;
        letter-spacing: 4px;
    }
    .splash-loader-bar {
        width: 220px;
    }
}

/* ==========================================================================
   12. Subpage: RFC Elite Gym Floor & Trainee Grid
   ========================================================================== */
.subpage-body {
    padding-top: var(--nav-height);
    background-color: var(--bg-primary);
}

.floor-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background-image: url('assets/gym_floor.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-color);
}

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

.floor-badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    background-color: rgba(20, 20, 26, 0.7);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
    box-shadow: var(--glow-shadow);
}

.floor-title {
    font-size: 3.2rem;
    font-weight: 950;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floor-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features-list-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-tag {
    background-color: rgba(138, 26, 26, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feature-tag i {
    color: var(--gold);
}

/* Trainees Grid Layout */
.trainees-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.trainees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Trainee Card Styling */
.trainee-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

.trainee-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glowing);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), var(--glow-shadow);
}

.trainee-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.trainee-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.trainee-card:hover .trainee-img {
    transform: scale(1.08);
}

.trainee-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.trainee-level {
    background: var(--crimson-gradient);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trainee-info {
    padding: 20px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.trainee-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    text-align: center;
}

/* Hover Description Overlay */
.trainee-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.98) 0%, rgba(138, 26, 26, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px;
    opacity: 0;
    transform: translateY(100%);
    transition: var(--transition-smooth);
    z-index: 3;
}

.trainee-card:hover .trainee-hover-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-name {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.overlay-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.overlay-desc {
    font-size: 0.82rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 300;
}

/* Female Comfort Notice (Star Format Banner) */
.female-safety-notice {
    max-width: 900px;
    margin: 0 auto 50px;
    background-color: rgba(24, 24, 32, 0.55);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px 35px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--glow-shadow);
}

.safety-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.safety-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin: 0;
}

.gold-star {
    color: var(--gold);
    font-size: 0.85rem;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.6);
}

.safety-text {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .safety-header h3 {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
    .gold-star {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .floor-title {
        font-size: 2.2rem;
    }
    .trainees-section {
        padding: 60px 20px;
    }
    .female-safety-notice {
        padding: 20px;
    }
}

/* ==========================================================================
   13. Membership Packages & Pricing Section
   ========================================================================== */
.pricing-section {
    padding: 60px 40px 120px;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px dashed rgba(212, 175, 55, 0.15);
}

.german-machinery-intro {
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    align-items: stretch;
}

/* Pricing Card Styling */
.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--box-shadow);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Recommended Package Styling */
.pricing-card.recommended {
    border: 2px solid var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.25);
    background: linear-gradient(to bottom, rgba(24, 24, 32, 0.95) 0%, rgba(20, 20, 26, 0.95) 100%);
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.4);
}

/* Badges */
.card-badge-placeholder {
    height: 25px;
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #121214;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header .duration {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pricing-card.recommended .pricing-header .duration {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-container .currency {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

.price-container .amount {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-card.recommended .price-container .amount {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Features list */
.pricing-features {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.pricing-features li i {
    font-size: 1rem;
    flex-shrink: 0;
}

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

.pricing-features li i.fa-star,
.pricing-features li i.fa-crown {
    color: var(--gold-bright);
    filter: drop-shadow(0 0 3px rgba(252, 213, 88, 0.4));
}

.pricing-action {
    margin-top: auto;
    width: 100%;
}

/* Personal Training Upgrade Panel */
.personal-training-panel {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(20, 20, 26, 0.9) 0%, rgba(138, 26, 26, 0.15) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--border-radius);
    padding: 35px 45px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.personal-training-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.pt-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.pt-left {
    flex: 1;
    max-width: 750px;
}

.pt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(138, 26, 26, 0.4);
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.pt-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pt-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 300;
}

.pt-terms {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

.pt-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    min-width: 250px;
}

.pt-price {
    text-align: right;
}

.pt-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.pt-price .price-container .amount {
    font-size: 2.8rem;
}

.pt-price .price-container .period {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-left: 4px;
    font-weight: 400;
}

.pt-btn {
    width: 100%;
}

/* --------------------------------------------------------------------------
   14. Responsive Layouts for Pricing
   ========================================================================== */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .pricing-card.recommended {
        transform: scale(1);
    }
    
    .pricing-card.recommended:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 900px) {
    .pt-content {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }
    
    .pt-right {
        align-items: flex-start;
        min-width: unset;
    }
    
    .pt-price {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 50px 20px 80px;
    }
    
    .personal-training-panel {
        padding: 30px 25px;
    }
}

@media (max-width: 580px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ==========================================================================
   15. RFC Healthy Cafeteria Subpage Styles
   ========================================================================== */
.cafeteria-hero {
    border-bottom: 1px solid var(--border-color);
}

.cafeteria-section {
    padding: 60px 40px 120px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Quick Order Callout Banner */
.cafeteria-order-banner {
    background: linear-gradient(135deg, rgba(20, 20, 26, 0.95) 0%, rgba(138, 26, 26, 0.15) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--border-radius);
    padding: 30px 40px;
    margin-bottom: 60px;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
}

.order-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.order-banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.order-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.order-banner-left h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.order-banner-left p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
}

.order-banner-right {
    min-width: 250px;
    text-align: right;
}

.order-banner-right .phone-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px dashed var(--gold);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

/* Category Sections */
.menu-category-section {
    position: relative;
}

.category-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.category-title-wrapper {
    max-width: 700px;
}

.category-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.category-heading {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-header.loss .category-heading i {
    color: #2ecc71; /* Green color for fat loss indicator */
    filter: drop-shadow(0 0 5px rgba(46, 204, 113, 0.4));
}

.category-header.gain .category-heading i {
    color: var(--crimson-bright); /* Crimson color for bulk indicator */
    filter: drop-shadow(0 0 5px rgba(184, 46, 46, 0.4));
}

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

.category-divider-line {
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.3) 0%, transparent 100%);
    flex-grow: 1;
    margin-bottom: 15px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Food Menu Cards */
.menu-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--box-shadow);
}

.menu-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.08);
}

/* Badge tags inside card */
.food-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.food-badge.veg {
    background-color: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.food-badge.non-veg {
    background-color: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.macro-tag {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: inline-block;
}

.menu-item-name {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.menu-item-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 300;
}

.menu-item-ingredients {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 12px;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.menu-item-price {
    font-family: 'Cinzel', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--gold-bright);
}

.order-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.03);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
}

.order-now-btn:hover {
    background-color: var(--gold-gradient);
    color: #121214;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

/* Responsive Cafeteria Grid */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .order-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .order-banner-right {
        text-align: left;
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .cafeteria-section {
        padding: 50px 20px 80px;
    }
    
    .cafeteria-order-banner {
        padding: 25px;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .category-divider-line {
        display: none;
    }
    
    .category-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 580px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   16. Yoga & Zumba Studio Subpage Styles
   ========================================================================== */
.yoga-zumba-hero {
    border-bottom: 1px solid var(--border-color);
}

.studio-section {
    padding: 60px 40px 120px;
    max-width: 1400px;
    margin: 0 auto;
}

.studio-module {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

/* Swap order for Zumba module on desktop for visual rhythm */
.zumba-module {
    flex-direction: row-reverse;
}

.studio-info-side {
    flex: 1.2;
}

.studio-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.studio-heading {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.studio-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Female Dedicated Batches Banner */
.female-batch-banner {
    background: linear-gradient(135deg, rgba(20, 20, 26, 0.95) 0%, rgba(138, 26, 26, 0.15) 100%);
    border: 1px dashed var(--gold);
    border-radius: var(--border-radius);
    padding: 22px 30px;
    margin-bottom: 30px;
    box-shadow: var(--glow-shadow);
}

.female-batch-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.female-batch-header h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 1px;
}

.female-batch-banner p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Highlights List */
.studio-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.studio-highlights li {
    font-size: 0.92rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Pricing Section Side */
.studio-pricing-side {
    flex: 0.8;
    display: flex;
    justify-content: center;
    min-width: 340px;
}

.studio-pricing-card {
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--box-shadow);
}

.studio-pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.25);
}

/* Custom visual accent for Zumba vs Yoga */
.studio-pricing-card.zumba-card {
    border-color: rgba(138, 26, 26, 0.25);
}

.studio-pricing-card.zumba-card:hover {
    border-color: var(--gold);
}

.card-pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.card-pricing-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.card-pricing-header .sub-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-price {
    margin-bottom: 25px;
    text-align: center;
}

.main-price .price-container .amount {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--text-primary);
}

.main-price .price-container .period {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 4px;
}

/* Per Session Drop-in Rate */
.per-session-fee {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.fee-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.per-session-fee .price-container .amount-small {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.per-session-fee .price-container .period {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 4px;
}

/* Card Feature Bullets */
.card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.card-features li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.studio-divider {
    margin: 80px 0;
    width: 100%;
}

/* Responsive Styles for Studio */
@media (max-width: 1100px) {
    .studio-module {
        flex-direction: column;
        gap: 40px;
    }
    
    .zumba-module {
        flex-direction: column;
    }
    
    .studio-info-side {
        width: 100%;
    }
    
    .studio-pricing-side {
        width: 100%;
        max-width: 450px;
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .studio-section {
        padding: 50px 20px 80px;
    }
    
    .studio-heading {
        font-size: 1.9rem;
    }
    
    .female-batch-banner {
        padding: 20px;
    }
    
    .studio-pricing-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   17. Sports Recovery & Therapy Subpage Styles
   ========================================================================== */
.therapy-hero {
    border-bottom: 1px solid var(--border-color);
}

.therapy-section {
    padding: 60px 40px 120px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Dharashiv Debut Spotlight Banner */
.dharashiv-launch-panel {
    background: linear-gradient(135deg, rgba(20, 20, 26, 0.95) 0%, rgba(138, 26, 26, 0.15) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--border-radius);
    padding: 40px 50px;
    margin-bottom: 60px;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.dharashiv-launch-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.launch-content {
    position: relative;
    z-index: 2;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(138, 26, 26, 0.4);
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.dharashiv-launch-panel h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dharashiv-launch-panel p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Therapist Highlight */
.therapist-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.therapist-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1.5px solid var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.35rem;
    color: var(--gold-bright);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
    flex-shrink: 0;
}

.therapist-text h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.therapist-text p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin: 0;
}

/* Therapy Cards Grid */
.therapy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Individual Therapy Cards */
.therapy-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.therapy-card:hover {
    transform: translateY(-8px);
    border-color: rgba(138, 26, 26, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.therapy-icon {
    font-size: 2.8rem;
    color: var(--gold-bright);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(252, 213, 88, 0.3));
}

.therapy-card .therapy-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.therapy-card .therapy-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.therapy-card .therapy-header .subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.therapy-benefits h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.therapy-benefits ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.therapy-benefits li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.therapy-benefits li i {
    margin-top: 3px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Coming Soon Overlay Banner */
.coming-soon-ribbon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--crimson-gradient);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    z-index: 2;
}

/* Responsive Therapy Grid */
@media (max-width: 1024px) {
    .therapy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .therapy-section {
        padding: 50px 20px 80px;
    }
    
    .dharashiv-launch-panel {
        padding: 30px 25px;
    }
    
    .dharashiv-launch-panel h2 {
        font-size: 1.8rem;
    }
    
    .therapist-highlight {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .franchise-map-container {
        margin-top: 40px;
        padding: 20px;
    }
    
    .map-iframe-wrapper iframe {
        height: 240px;
    }
}

@media (max-width: 650px) {
    .therapy-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .franchise-map-container {
        padding: 15px;
        margin-top: 30px;
    }
    
    .map-iframe-wrapper iframe {
        height: 190px;
    }
    
    .map-header h3 {
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .map-subtitle {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   18. Subpage: RFC Elite Gallery
   ========================================================================== */
.gallery-section {
    padding: 60px 40px 120px;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px dashed rgba(212, 175, 55, 0.15);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), var(--glow-shadow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.9) 0%, rgba(138, 26, 26, 0.3) 100%);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    pointer-events: auto;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gold);
    color: #121214;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}

/* Lightbox Modal (For showing full-size images) */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 12, 0.95);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.open {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-modal.open .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-lightbox:hover {
    color: var(--gold);
}


/* ==========================================================================
   16. RFC Cafeteria Basket & Cart styling
   ========================================================================== */

/* Floating Cart Bar */
.floating-cart-bar {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(18, 18, 20, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.15);
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cart-bar.active {
    bottom: 25px;
}

.cart-info-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-icon-wrapper {
    position: relative;
    background: var(--gold);
    color: #121214;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(18, 18, 20, 0.85);
}

.cart-totals {
    display: flex;
    flex-direction: column;
}

.cart-totals-items {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.cart-totals-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--gold);
}

.cart-action-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    color: #121214;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: bold;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cart-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

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

/* Cart Detail Drawer */
.cart-drawer {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: #121214;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: none;
    border-radius: 30px 30px 0 0;
    padding: 24px;
    z-index: 1001;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
    transition: bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-drawer.open {
    bottom: 0;
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.cart-drawer-header h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.3rem;
    margin: 0;
}

.close-drawer-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-drawer-btn:hover {
    color: var(--gold);
}

.cart-items-list {
    max-height: 220px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 5px;
}

.cart-items-list::-webkit-scrollbar {
    width: 6px;
}
.cart-items-list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
}
.cart-items-list::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-name-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 50%;
}

.cart-item-title {
    font-weight: 500;
    color: white;
    font-size: 0.95rem;
}

.cart-item-price-info {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.quantity-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.cart-item-qty {
    font-weight: bold;
    min-width: 15px;
    text-align: center;
    font-size: 0.95rem;
}

.cart-item-subtotal {
    font-weight: bold;
    color: var(--gold);
    min-width: 70px;
    text-align: right;
    font-size: 0.95rem;
}

.cart-drawer-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.cart-summary-label {
    color: rgba(255,255,255,0.7);
}

.cart-summary-total {
    font-weight: bold;
    color: var(--gold);
    font-size: 1.35rem;
}

/* Cart Modal Overlay */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* RFC Transformations */
.about-transformations {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 80px;
    background-color: var(--bg-secondary);
}

.about-transformations h3.transformations-heading {
    max-width: 1300px;
    margin: 0 auto 25px;
    padding: 0 40px;
    box-sizing: border-box;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Cinzel', serif;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.transformations-slider-outer {
    position: relative;
    width: 100%;
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.transformations-container-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 40px;
    box-sizing: border-box;
}

.transformations-container {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.transformation-img-wrapper {
    flex: 0 0 calc((100% - (4 * 20px)) / 5); /* 5 items visible on desktop */
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.transformation-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) grayscale(20%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.transformation-img-wrapper:hover {
    transform: scale(1.08);
    z-index: 5;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.35);
}

.transformation-img-wrapper:hover img {
    filter: brightness(1.1) grayscale(0%);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(20, 20, 26, 0.85);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.slider-btn:hover {
    background-color: var(--gold);
    color: #121214;
    box-shadow: 0 0 15px var(--gold);
    transform: translateY(-50%) scale(1.08);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

@media (max-width: 1024px) {
    .transformation-img-wrapper {
        flex: 0 0 calc((100% - (2 * 20px)) / 3); /* 3 items visible */
    }
    .transformations-container-wrapper {
        padding: 10px 20px;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .transformation-img-wrapper {
        flex: 0 0 calc((100% - (1 * 15px)) / 2); /* 2 items visible */
    }
    .transformations-container {
        gap: 15px;
    }
    .about-transformations h3.transformations-heading {
        padding: 0 20px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .transformation-img-wrapper {
        flex: 0 0 100%; /* 1 item visible */
    }
    .transformations-container-wrapper {
        padding: 10px 10px;
    }
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    .prev-btn {
        left: 5px;
    }
    .next-btn {
        right: 5px;
    }
}

/* ==========================================================================
   12. BMI Calculator Styles
   ========================================================================== */
.bmi-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .bmi-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.bmi-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.bmi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
}

.bmi-tabs {
    display: flex;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bmi-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
}

.bmi-tab.active {
    background-color: var(--gold);
    color: var(--bg-primary);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.unit-section {
    display: none;
}

.unit-section.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.bmi-result-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100%;
}

.bmi-result-placeholder {
    padding: 40px 20px;
    color: var(--text-secondary);
}

.bmi-result-placeholder i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.bmi-result-content {
    width: 100%;
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.bmi-result-content.active {
    display: block;
}

.bmi-score-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bmi-score-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 4px solid var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.bmi-score-val {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Cinzel', serif;
    color: var(--text-primary);
    line-height: 1;
}

.bmi-score-lbl {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

.bmi-category-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.bmi-underweight {
    background-color: rgba(52, 152, 219, 0.15);
    color: #3498db;
    border: 1px solid #3498db;
}

.bmi-normal {
    background-color: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.bmi-overweight {
    background-color: rgba(241, 196, 110, 0.15);
    color: #f1c40f;
    border: 1px solid #f1c40f;
}

.bmi-obese {
    background-color: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.bmi-gauge-container {
    width: 100%;
    margin-bottom: 30px;
}

.bmi-gauge-track {
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(to right, #3498db 0%, #2ecc71 30%, #f1c40f 65%, #e74c3c 100%);
    position: relative;
    margin-bottom: 15px;
}

.bmi-gauge-pointer {
    width: 18px;
    height: 18px;
    background-color: var(--text-primary);
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
    position: absolute;
    top: -3px;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bmi-gauge-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.bmi-advice-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.bmi-advice-card h5 {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bmi-advice-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.loader-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.loader-container.active {
    display: flex;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* ==========================================================================
   13. Floating Contact Widget
   ========================================================================== */
.floating-contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050; /* Above navbar and other widgets */
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 15px;
}

.widget-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #121214;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.35);
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.15);
    outline: none;
}

.widget-trigger:hover {
    transform: rotate(15deg) scale(1.08);
}

.floating-contact-widget.open .widget-trigger {
    background: var(--crimson-gradient);
    color: var(--text-primary);
    transform: rotate(90deg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(138, 26, 26, 0.4);
}

.widget-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: var(--transition-smooth);
}

.floating-contact-widget.open .widget-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.widget-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.widget-btn:hover {
    transform: scale(1.1);
}

.widget-btn.whatsapp-btn {
    background-color: #2ecc71; /* WhatsApp green */
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.widget-btn.whatsapp-btn:hover {
    background-color: #27ae60;
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.5);
}

.widget-btn.call-btn {
    background-color: #3498db; /* Call blue */
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.widget-btn.call-btn:hover {
    background-color: #2980b9;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.5);
}

.widget-label {
    position: absolute;
    right: 65px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    pointer-events: none;
    box-shadow: var(--box-shadow);
}

.widget-btn:hover .widget-label {
    opacity: 1;
    visibility: visible;
}
