/* ============================================================
   SHERDIL 1010 CLUB — style.css
   Premium Black & Gold Sports & Lifestyle Club
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:wght@400;700&display=swap');

/* --- CSS Variables --- */
:root {
    --black-deep:     #050505;
    --black-rich:     #0b0b0b;
    --black-card:     #111111;
    --black-glass:    rgba(5,5,5,0.82);
    --gold:           #d99a00;
    --gold-bright:    #ffb800;
    --gold-light:     #ffd45c;
    --gold-gradient:  linear-gradient(135deg, #d99a00 0%, #ffb800 50%, #ffd45c 100%);
    --gold-gradient-r:linear-gradient(135deg, #ffd45c 0%, #ffb800 50%, #d99a00 100%);
    --white:          #ffffff;
    --grey-soft:      #b8b8b8;
    --grey-muted:     #707070;
    --border-gold:    1px solid rgba(217,154,0,0.35);
    --border-gold-strong: 1px solid rgba(255,184,0,0.7);
    --shadow-gold:    0 0 30px rgba(217,154,0,0.18);
    --shadow-gold-lg: 0 0 60px rgba(255,184,0,0.25);
    --font-display:   'Oswald', sans-serif;
    --font-body:      'Raleway', sans-serif;
    --font-accent:    'Playfair Display', serif;
    --transition:     all 0.35s cubic-bezier(0.4,0,0.2,1);
    --radius:         4px;
    --radius-lg:      12px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    background-color: var(--black-deep);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: var(--transition); }

ul { list-style: none; padding: 0; margin: 0; }

/* --- Typography --- */
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-transform: uppercase;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-bright);
    border: 1px solid var(--gold);
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 1.1rem;
    background: rgba(217,154,0,0.08);
}

.section-title {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    margin-bottom: 1rem;
}

.section-title span { color: var(--gold-bright); }

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-divider.left { margin-left: 0; }

.lead-text {
    font-size: 1.05rem;
    color: var(--grey-soft);
    max-width: 680px;
    line-height: 1.8;
}

/* --- Buttons --- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: var(--black-deep);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 13px 32px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(217,154,0,0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,184,0,0.5);
    color: var(--black-deep);
    background: var(--gold-gradient-r);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold-bright);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 30px;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: var(--black-deep);
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(255,184,0,0.4);
    transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#mainHeader {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
}

#mainHeader.transparent {
    background: transparent;
}

#mainHeader.solid {
    background: rgba(5,5,5,0.97);
    backdrop-filter: blur(12px);
    border-bottom: var(--border-gold);
    box-shadow: 0 2px 30px rgba(0,0,0,0.7);
}

.navbar-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--black-deep);
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(217,154,0,0.4);
}

.brand-text-wrap .brand-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.brand-text-wrap .brand-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--grey-soft);
    text-transform: uppercase;
}

.navbar .nav-link {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-soft) !important;
    padding: 8px 14px !important;
    transition: var(--transition);
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gold-bright) !important;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: var(--border-gold-strong) !important;
    padding: 6px 10px;
    color: var(--gold-bright) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffb800' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(5,5,5,0.98);
        border: var(--border-gold);
        border-radius: var(--radius-lg);
        padding: 1rem;
        margin-top: 10px;
        backdrop-filter: blur(12px);
    }
    .navbar .nav-link { padding: 12px 16px !important; }
    .navbar .nav-link::after { display: none; }
    .navbar-nav { gap: 4px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black-deep);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url(../images/home-slide.jpg) center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,5,5,0.93) 0%, rgba(5,5,5,0.78) 50%, rgba(5,5,5,0.88) 100%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217,154,0,0.12) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-bright);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(0) scale(0.5); }
    20%  { opacity: 0.6; }
    80%  { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-120px) scale(1.5); }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217,154,0,0.15);
    border: var(--border-gold-strong);
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 1.4rem;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: #00e676;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.4); }
}

.hero-heading {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1.4rem;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--grey-soft);
    max-width: 540px;
    margin-bottom: 2.2rem;
    line-height: 1.85;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 2.8rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.hero-stat {
    text-align: left;
}

.hero-stat .stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.7rem;
    color: var(--grey-soft);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--grey-muted);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%,100% { opacity: 1; transform: scaleY(1); }
    50%      { opacity: 0.3; transform: scaleY(0.6); }
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
    background: var(--black-rich);
    border-top: var(--border-gold);
    border-bottom: var(--border-gold);
    padding: 28px 0;
}

.features-strip .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}

.features-strip .fi-icon {
    width: 48px;
    height: 48px;
    background: rgba(217,154,0,0.1);
    border: var(--border-gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold-bright);
    flex-shrink: 0;
    transition: var(--transition);
}

.features-strip .feature-item:hover .fi-icon {
    background: var(--gold-gradient);
    color: var(--black-deep);
    box-shadow: var(--shadow-gold);
}

.features-strip .fi-text {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.strip-divider {
    width: 1px;
    height: 48px;
    background: rgba(217,154,0,0.25);
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.bg-rich { background: var(--black-rich); }
.bg-card { background: var(--black-card); }

/* ============================================================
   ABOUT PREVIEW (HOME)
   ============================================================ */
.about-preview-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-preview-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-preview-img-wrap:hover img { transform: scale(1.04); }

.about-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(5,5,5,0.9);
    border: var(--border-gold-strong);
    border-radius: var(--radius);
    padding: 16px 20px;
    backdrop-filter: blur(10px);
}

.about-img-badge .badge-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-img-badge .badge-label {
    font-size: 0.7rem;
    color: var(--grey-soft);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 2rem 0;
}

.about-stat-card {
    background: rgba(217,154,0,0.06);
    border: var(--border-gold);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.about-stat-card:hover {
    background: rgba(217,154,0,0.12);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.about-stat-card .stat-n {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-card .stat-l {
    font-size: 0.7rem;
    color: var(--grey-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================================
   FACILITY CARDS
   ============================================================ */
.facility-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--black-card);
    border: var(--border-gold);
    transition: var(--transition);
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(217,154,0,0.25);
    border-color: var(--gold-bright);
}

.facility-card-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.facility-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.facility-card:hover .facility-card-img img { transform: scale(1.08); }

.facility-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 60%);
    transition: var(--transition);
}

.facility-card:hover .facility-card-overlay {
    background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(217,154,0,0.15) 100%);
}

.facility-card-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--black-deep);
    box-shadow: 0 4px 14px rgba(217,154,0,0.4);
}

.facility-card-body {
    padding: 22px;
}

.facility-card-body h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--white);
}

.facility-card-body p {
    font-size: 0.88rem;
    color: var(--grey-soft);
    margin-bottom: 16px;
    line-height: 1.7;
}

.facility-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-bright);
    transition: var(--transition);
}

.facility-link:hover {
    color: var(--gold-light);
    gap: 10px;
}

/* ============================================================
   WHY CHOOSE (HOME)
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(217,154,0,0.05);
    border: var(--border-gold);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}

.why-item:hover {
    background: rgba(217,154,0,0.1);
    box-shadow: var(--shadow-gold);
    transform: translateX(4px);
}

.why-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--black-deep);
    flex-shrink: 0;
}

.why-text h5 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--white);
}

.why-text p {
    font-size: 0.8rem;
    color: var(--grey-soft);
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   REGISTRATION BANNER
   ============================================================ */
.reg-banner {
    position: relative;
    padding: 90px 0;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&q=80') center/cover no-repeat;
    overflow: hidden;
}

.reg-banner-overlay {
    position: absolute;
    inset: 0;
   background: linear-gradient(135deg, rgba(5, 5, 5, 0.95) 0%, rgb(10 8 2 / 53%) 100%);
}

.reg-banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(217,154,0,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.reg-banner-content { position: relative; z-index: 1; }

.reg-label {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--black-deep);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 5px 20px;
    border-radius: 30px;
    margin-bottom: 1.2rem;
}

.reg-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(217,154,0,0.3);
}

.reg-sub {
    font-size: 1.1rem;
    color: var(--grey-soft);
    margin-bottom: 2rem;
    font-style: italic;
    font-family: var(--font-accent);
}

/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
.experience-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.experience-card:hover { transform: scale(1.02); box-shadow: var(--shadow-gold-lg); }

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-card:hover img { transform: scale(1.08); }

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.3) 60%, transparent 100%);
}

.experience-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 1;
}

.experience-label h3 {
    font-size: 1.6rem;
    margin-bottom: 2px;
}

.experience-label p {
    font-size: 0.78rem;
    color: var(--grey-soft);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

/* ============================================================
   MEMBERSHIP CARDS
   ============================================================ */
.membership-card {
    background: var(--black-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.membership-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(217,154,0,0.2);
    border-color: var(--gold-bright);
}

.membership-icon {
    width: 64px;
    height: 64px;
    background: rgba(217,154,0,0.1);
    border: var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-bright);
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.membership-card:hover .membership-icon {
    background: var(--gold-gradient);
    color: var(--black-deep);
    box-shadow: var(--shadow-gold);
}

.membership-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.membership-card p {
    font-size: 0.85rem;
    color: var(--grey-soft);
    margin: 0;
}

/* ============================================================
   COACHES SECTION
   ============================================================ */
.coach-card {
    background: var(--black-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.coach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold-lg);
    border-color: var(--gold-bright);
}

.coach-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.coach-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coach-card:hover .coach-img img { transform: scale(1.07); }

.coach-body {
    padding: 22px;
}

.coach-body h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.coach-spec {
    font-size: 0.75rem;
    color: var(--gold-bright);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.coach-body p {
    font-size: 0.82rem;
    color: var(--grey-soft);
    margin-bottom: 14px;
}

.coach-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(217,154,0,0.1);
    border: var(--border-gold);
    border-radius: 50%;
    color: var(--gold-bright);
    font-size: 0.8rem;
    margin: 0 3px;
    transition: var(--transition);
}

.coach-social a:hover {
    background: var(--gold-gradient);
    color: var(--black-deep);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.gallery-filter-btn {
    background: transparent;
    border: var(--border-gold);
    color: var(--grey-soft);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: var(--gold-gradient);
    color: var(--black-deep);
    border-color: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: var(--border-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(5,5,5,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-hover { opacity: 1; }

.gallery-hover i {
    font-size: 1.8rem;
    color: var(--gold-bright);
}

/* Lightbox */
.lightbox-modal .modal-content {
    background: rgba(5,5,5,0.97);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
}

.lightbox-modal .btn-close {
    filter: invert(1) brightness(2);
}

.lightbox-modal img {
    border-radius: var(--radius);
    max-height: 75vh;
    object-fit: contain;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: var(--black-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-accent);
    font-size: 5rem;
    color: rgba(217,154,0,0.15);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.testimonial-stars {
    color: var(--gold-bright);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--grey-soft);
    font-style: italic;
    line-height: 1.85;
    margin-bottom: 1.4rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-deep);
    flex-shrink: 0;
}

.author-info .author-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.author-info .author-role {
    font-size: 0.72rem;
    color: var(--gold-bright);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================================
   CONTACT PREVIEW (HOME)
   ============================================================ */
.contact-info-card {
    background: var(--black-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-bright);
}

.contact-person-card {
    background: var(--black-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-person-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-bright);
}

.person-avatar {
    width: 64px;
    height: 64px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black-deep);
    margin: 0 auto 14px;
    box-shadow: var(--shadow-gold);
}

.contact-person-card h5 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.person-role {
    font-size: 0.72rem;
    color: var(--gold-bright);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.person-phone {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
}

.contact-btns { display: flex; gap: 8px; justify-content: center; }

.btn-call, .btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-call {
    background: rgba(217,154,0,0.12);
    border: var(--border-gold);
    color: var(--gold-bright);
}

.btn-call:hover {
    background: var(--gold-gradient);
    color: var(--black-deep);
}

.btn-wa {
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.35);
    color: #25D366;
}

.btn-wa:hover {
    background: #25D366;
    color: var(--white);
}

/* Map placeholder */
.map-placeholder {
    background: var(--black-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--grey-muted);
    font-size: 0.85rem;
    text-align: center;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
}

/* ============================================================
   REGISTRATION FORM
   ============================================================ */
.premium-form {
    background: var(--black-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 42px 38px;
}

.premium-form .form-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-soft);
    margin-bottom: 6px;
}

.premium-form .form-control,
.premium-form .form-select {
    background: rgba(255,255,255,0.04);
    border: var(--border-gold);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 12px 16px;
    transition: var(--transition);
}

.premium-form .form-control:focus,
.premium-form .form-select:focus {
    background: rgba(217,154,0,0.07);
    border-color: var(--gold-bright);
    box-shadow: 0 0 0 3px rgba(217,154,0,0.15);
    color: var(--white);
    outline: none;
}

.premium-form .form-control::placeholder { color: var(--grey-muted); }

.premium-form .form-select option {
    background: var(--black-card);
    color: var(--white);
}

.form-check-input {
    background-color: transparent;
    border: var(--border-gold-strong);
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.form-check-label {
    color: var(--grey-soft);
    font-size: 0.85rem;
}

.form-success {
    display: none;
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.4);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    color: #25D366;
    margin-top: 1rem;
}

.form-error-msg {
    color: #ff6b6b;
    font-size: 0.78rem;
    margin-top: 4px;
    display: none;
}

.field-invalid .form-control,
.field-invalid .form-select { border-color: #ff6b6b !important; }

.field-invalid .form-error-msg { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--black-rich);
    border-top: 2px solid rgba(217,154,0,0.3);
    padding-top: 70px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--grey-soft);
    margin: 12px 0 20px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(217,154,0,0.1);
    border: var(--border-gold);
    border-radius: 50%;
    color: var(--gold-bright);
    font-size: 0.9rem;
    margin-right: 8px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-gradient);
    color: var(--black-deep);
    box-shadow: var(--shadow-gold);
}

.footer-heading {
    font-size: 0.85rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--grey-soft);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--gold);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-bright);
    padding-left: 4px;
}

.footer-links a:hover i { color: var(--gold-bright); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    color: var(--gold-bright);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
    font-size: 0.85rem;
    color: var(--grey-soft);
    transition: var(--transition);
}

.footer-contact-item a:hover { color: var(--gold-bright); }

.footer-bottom {
    background: var(--black-deep);
    border-top: var(--border-gold);
    padding: 18px 0;
    margin-top: 50px;
    font-size: 0.8rem;
    color: var(--grey-muted);
}

.footer-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold);
    font-size: 0.85rem;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 46px;
    height: 46px;
    background: var(--gold-gradient);
    border: none;
    border-radius: var(--radius);
    color: var(--black-deep);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(217,154,0,0.4);
}

#backToTop.visible {
    opacity: 1;
    pointer-events: all;
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(217,154,0,0.5);
}

/* ============================================================
   INNER HERO (About, Services, Contact)
   ============================================================ */
.inner-hero {
    position: relative;
    padding: 160px 0 80px;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&q=80') center/cover no-repeat;
    overflow: hidden;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
      background: linear-gradient(135deg, rgba(5, 5, 5, 0.95) 40%, rgba(5, 5, 5, 0.82) 72%);
}

.inner-hero-content { position: relative; z-index: 1; }

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-muted);
}

.breadcrumb-item a { color: var(--gold-bright); }
.breadcrumb-item a:hover { color: var(--gold-light); }

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--grey-muted);
}

.breadcrumb-item.active { color: var(--grey-soft); }

.inner-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0;
}

/* Gold line decoration */
.gold-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 60px 0;
    opacity: 0.4;
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.vision-mission-card {
    background: var(--black-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.vision-mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-lg);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: rgba(217,154,0,0.1);
    border: var(--border-gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-bright);
    margin-bottom: 1.4rem;
    transition: var(--transition);
}

.vision-mission-card:hover .vm-icon {
    background: var(--gold-gradient);
    color: var(--black-deep);
}

.vision-mission-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.vision-mission-card p { color: var(--grey-soft); font-size: 0.92rem; margin: 0; line-height: 1.8; }

/* Values */
.value-card {
    background: var(--black-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    background: rgba(217,154,0,0.07);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-bright);
}

.value-icon {
    font-size: 2rem;
    color: var(--gold-bright);
    margin-bottom: 14px;
    display: block;
    transition: var(--transition);
}

.value-card:hover .value-icon { transform: scale(1.2); }

.value-card h5 { font-size: 0.9rem; margin-bottom: 8px; }
.value-card p { font-size: 0.8rem; color: var(--grey-soft); margin: 0; }

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
    padding-left: 24px;
}

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: var(--gold-gradient);
    border-radius: 50%;
    border: 2px solid var(--black-rich);
    box-shadow: 0 0 10px rgba(217,154,0,0.5);
}

.timeline-item h5 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--gold-bright);
}

.timeline-item p {
    font-size: 0.82rem;
    color: var(--grey-soft);
    margin: 0;
}

.timeline-label {
    display: inline-block;
    font-size: 0.68rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-muted);
    background: rgba(217,154,0,0.08);
    border: var(--border-gold);
    border-radius: 20px;
    padding: 2px 10px;
    margin-bottom: 6px;
}

/* Counter */
.counter-section { background: var(--black-rich); }

.counter-card {
    text-align: center;
    padding: 32px 20px;
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    background: rgba(217,154,0,0.04);
    transition: var(--transition);
}

.counter-card:hover {
    background: rgba(217,154,0,0.09);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.counter-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 0.78rem;
    color: var(--grey-soft);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ============================================================
   SERVICES PAGE SPECIFIC
   ============================================================ */
.service-detail-section { padding: 60px 0; }

.service-detail-section:nth-child(even) { background: var(--black-rich); }

.service-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-img-wrap:hover img { transform: scale(1.04); }

.service-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gold-gradient);
    color: var(--black-deep);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
}

.service-feature-list {
    margin: 1.4rem 0 1.8rem;
}

.service-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--grey-soft);
    border-bottom: 1px solid rgba(217,154,0,0.08);
}

.service-feature-list li:last-child { border-bottom: none; }

.service-feature-list li i {
    color: var(--gold-bright);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-icon-big {
    width: 72px;
    height: 72px;
    background: rgba(217,154,0,0.1);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-bright);
    margin-bottom: 1rem;
}

.facility-overview-table {
    background: var(--black-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.facility-overview-table table {
    width: 100%;
    margin: 0;
    color: var(--white);
}

.facility-overview-table thead {
    background: rgba(217,154,0,0.12);
    border-bottom: var(--border-gold-strong);
}

.facility-overview-table th {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-bright);
    padding: 14px 18px;
    border: none;
}

.facility-overview-table td {
    padding: 12px 18px;
    font-size: 0.85rem;
    color: var(--grey-soft);
    border-color: rgba(217,154,0,0.1) !important;
    vertical-align: middle;
}

.facility-overview-table tr:hover td { background: rgba(217,154,0,0.04); }

.check-yes { color: #25D366; font-size: 1rem; }
.check-no  { color: var(--grey-muted); font-size: 1rem; }

/* ============================================================
   CONTACT PAGE SPECIFIC
   ============================================================ */
.faq-accordion .accordion-item {
    background: var(--black-card);
    border: var(--border-gold) !important;
    border-radius: var(--radius-lg) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: var(--black-card);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 18px 22px;
    border: none;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(217,154,0,0.08);
    color: var(--gold-bright);
}

.faq-accordion .accordion-button::after {
    filter: invert(75%) sepia(80%) saturate(400%) hue-rotate(5deg) brightness(110%);
}

.faq-accordion .accordion-body {
    background: rgba(217,154,0,0.04);
    color: var(--grey-soft);
    font-size: 0.88rem;
    line-height: 1.8;
    padding: 16px 22px;
    border-top: var(--border-gold);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold    { color: var(--gold-bright) !important; }
.text-grey    { color: var(--grey-soft) !important; }
.border-gold  { border: var(--border-gold) !important; }
.bg-black-rich { background: var(--black-rich) !important; }

/* Gold separator line */
.sep-gold {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(217,154,0,0.45), transparent);
    margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .section-pad  { padding: 70px 0; }
    .section-pad-sm { padding: 50px 0; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-heading { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .strip-divider { display: none; }
    .about-preview-img-wrap img { height: 380px; }
    .service-img-wrap img { height: 280px; }
}

@media (max-width: 767px) {
    .section-pad  { padding: 55px 0; }
    .hero-stats   { gap: 18px; }
    .hero-cta-group .btn-gold,
    .hero-cta-group .btn-outline-gold { width: 100%; justify-content: center; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .premium-form { padding: 28px 18px; }
    .reg-title { font-size: clamp(2rem, 8vw, 3rem); }
    .contact-btns { flex-direction: column; }
    .btn-call, .btn-wa { justify-content: center; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .about-stats-grid { grid-template-columns: 1fr; }
    .hero-heading { font-size: 2.2rem; }
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#pageLoader {
    position: fixed;
    inset: 0;
    background: var(--black-deep);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    transition: opacity 0.5s ease;
}

#pageLoader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.2em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-logo img{
    width: 150px !important;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(217,154,0,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: var(--gold-gradient);
    animation: loaderFill 1.2s ease forwards;
}

@keyframes loaderFill {
    from { width: 0; }
    to   { width: 100%; }
}
/* ============================================================
   LIGHT SECTIONS + RESPONSIVE POLISH (2026)
   ============================================================ */
:root {
    --light-bg: #f7f2e8;
    --light-bg-soft: #fffdf8;
    --light-card: #ffffff;
    --light-text: #17140f;
    --light-muted: #625c52;
    --light-border: rgba(141, 96, 0, 0.24);
    --light-shadow: 0 18px 50px rgba(63, 45, 10, 0.10);
}

.section-light {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--light-text);
    background:
        radial-gradient(circle at 8% 10%, rgba(255, 184, 0, 0.12), transparent 28%),
        radial-gradient(circle at 92% 88%, rgba(217, 154, 0, 0.09), transparent 25%),
        var(--light-bg);
}

.section-light::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(217,154,0,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217,154,0,0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.section-light .section-title,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 {
    color: var(--light-text);
}

.section-light .section-label {
    color: #7a5300;
    background: rgba(217,154,0,0.10);
    border-color: rgba(151,101,0,0.42);
}

.section-light .lead-text,
.section-light p,
.section-light .text-grey,
.section-light .about-stat-card .stat-l,
.section-light .why-text p,
.section-light .membership-card p,
.section-light .value-card p,
.section-light .vision-mission-card p,
.section-light .timeline-item p,
.section-light .counter-label,
.section-light .contact-person-card p,
.section-light .footer-contact-item a,
.section-light .footer-contact-item span,
.section-light .form-check-label {
    color: var(--light-muted) !important;
}

.section-light strong { color: #8c6100 !important; }

.section-light .btn-outline-gold {
    color: #765100;
    border-color: #b77e00;
}

.section-light .btn-outline-gold:hover { color: var(--black-deep); }

.section-light .about-stat-card,
.section-light .why-item,
.section-light .membership-card,
.section-light .value-card,
.section-light .vision-mission-card,
.section-light .contact-person-card,
.section-light .contact-info-card,
.section-light .premium-form,
.section-light .facility-overview-table,
.section-light .counter-card {
    background: rgba(255,255,255,0.88);
    border-color: var(--light-border);
    box-shadow: 0 12px 35px rgba(55,39,8,0.07);
    backdrop-filter: blur(8px);
}

.section-light .about-stat-card:hover,
.section-light .why-item:hover,
.section-light .membership-card:hover,
.section-light .value-card:hover,
.section-light .vision-mission-card:hover,
.section-light .contact-person-card:hover,
.section-light .contact-info-card:hover,
.section-light .counter-card:hover {
    background: var(--light-card);
    border-color: rgba(183,126,0,0.55);
    box-shadow: var(--light-shadow);
}

.section-light .why-text h5,
.section-light .membership-card h4,
.section-light .value-card h5,
.section-light .vision-mission-card h3,
.section-light .contact-person-card h5,
.section-light .person-phone,
.section-light .author-info .author-name {
    color: var(--light-text);
}

.section-light .service-feature-list li {
    color: var(--light-muted);
    border-bottom-color: rgba(141,96,0,0.14);
}

.section-light .timeline::before {
    background: linear-gradient(to bottom, #b77e00, rgba(183,126,0,0.08));
}

.section-light .timeline-dot { border-color: var(--light-bg); }

.section-light .timeline-label {
    color: #6e6556;
    background: rgba(217,154,0,0.08);
    border-color: var(--light-border);
}

.section-light .gallery-filter-btn {
    color: #5f584e;
    border-color: rgba(141,96,0,0.34);
    background: rgba(255,255,255,0.65);
}

.section-light .gallery-filter-btn:hover,
.section-light .gallery-filter-btn.active {
    color: var(--black-deep);
    background: var(--gold-gradient);
}

.section-light .premium-form .form-label { color: #514b43; }

.section-light .premium-form .form-control,
.section-light .premium-form .form-select {
    color: var(--light-text);
    background: #fff;
    border-color: rgba(141,96,0,0.28);
}

.section-light .premium-form .form-control:focus,
.section-light .premium-form .form-select:focus {
    color: var(--light-text);
    background: #fffefb;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(217,154,0,0.14);
}

.section-light .premium-form .form-control::placeholder { color: #928b81; }
.section-light .premium-form .form-select option { color: var(--light-text); background: #fff; }
.section-light .form-check-input { background-color: #fff; }

.section-light .facility-overview-table table { color: var(--light-text); }
.section-light .facility-overview-table thead { background: rgba(217,154,0,0.13); }
.section-light .facility-overview-table th { color: #765100; }
.section-light .facility-overview-table td {
    color: #5f584e;
    border-color: rgba(141,96,0,0.12) !important;
}
.section-light .facility-overview-table tr:hover td { background: rgba(217,154,0,0.06); }

.section-light .map-placeholder {
    color: #70685d;
    background: #fff;
    border-color: var(--light-border);
    box-shadow: 0 12px 35px rgba(55,39,8,0.07);
}

/* Keep text placed directly over photographs readable. */
.section-light .about-img-badge,
.section-light .gallery-hover,
.section-light .experience-label {
    color: var(--white);
}
.section-light .about-img-badge .badge-label,
.section-light .experience-label p { color: var(--grey-soft) !important; }

/* Shared layout safeguards */
.container { max-width: 1320px; }
section { scroll-margin-top: 88px; }
.row > * { min-width: 0; }
.btn-gold,
.btn-outline-gold,
.btn-call,
.btn-wa { text-align: center; }

.navbar { min-height: 82px; }
.navbar-collapse { min-width: 0; }
.navbar-nav .btn-gold { white-space: nowrap; }

.facility-card,
.membership-card,
.coach-card,
.testimonial-card,
.contact-person-card,
.vision-mission-card,
.value-card { min-width: 0; }

.gallery-item img,
.service-img-wrap img,
.about-preview-img-wrap img,
.coach-img img,
.experience-card img { object-position: center; }

.table-responsive {
    border-radius: var(--radius-lg);
    -webkit-overflow-scrolling: touch;
}

.premium-form textarea.form-control { min-height: 130px; resize: vertical; }

/* Large tablets / small laptops */
@media (max-width: 1199.98px) {
    .navbar .nav-link { padding-inline: 10px !important; }
    .navbar-nav .btn-gold { padding: 12px 18px; }
    .hero-heading { font-size: clamp(2.8rem, 6.5vw, 4.7rem); }
    .hero-desc { max-width: 620px; }
    .section-pad { padding: 84px 0; }
    .section-pad-sm { padding: 58px 0; }
    .facility-card-img { height: 215px; }
    .service-img-wrap img { height: 350px; }
}

/* Tablets and mobile navigation */
@media (max-width: 991.98px) {
    #mainHeader,
    #mainHeader.transparent,
    #mainHeader.solid {
        background: rgba(5,5,5,0.97);
        backdrop-filter: blur(14px);
        border-bottom: var(--border-gold);
        box-shadow: 0 2px 24px rgba(0,0,0,0.55);
    }

    .navbar { min-height: 76px; }
    .navbar-collapse {
        max-height: calc(100vh - 94px);
        overflow-y: auto;
        overscroll-behavior: contain;
        background: #0b0b0b;
        box-shadow: 0 18px 40px rgba(0,0,0,0.45);
    }
    .navbar-nav { align-items: stretch !important; }
    .navbar-nav .nav-item { width: 100%; }
    .navbar-nav .btn-gold { width: 100%; justify-content: center; margin-top: 4px; }

    .hero-section {
        min-height: auto;
        padding: 138px 0 86px;
    }
    .hero-content { padding-top: 0; }
    .hero-scroll-hint { display: none; }
    .hero-glow { width: 380px; height: 380px; left: -90px; top: 20%; }

    .inner-hero { padding: 132px 0 64px; }
    .inner-hero h1 { max-width: 760px; }

    .section-pad { padding: 72px 0; }
    .section-pad-sm { padding: 50px 0; }
    .service-detail-section { padding: 70px 0; }

    .about-preview-img-wrap img { height: 420px; }
    .service-img-wrap img { height: 340px; }
    .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .experience-card[style*="height"] { height: 310px !important; }

    .footer-brand p { max-width: 520px; }
}

/* Phones and portrait tablets */
@media (max-width: 767.98px) {
    body { font-size: 15px; }
    .container { --bs-gutter-x: 1.5rem; }

    .brand-icon { width: 43px; height: 43px; font-size: 1.2rem; }
    .brand-text-wrap .brand-name { font-size: 0.96rem; }
    .brand-text-wrap .brand-sub { font-size: 0.54rem; letter-spacing: 0.18em; }

    .hero-section { padding: 124px 0 72px; }
    .hero-badge {
        font-size: 0.62rem;
        letter-spacing: 0.12em;
        line-height: 1.5;
        padding: 6px 13px;
    }
    .hero-heading { font-size: clamp(2.25rem, 12vw, 3.35rem); }
    .hero-desc { font-size: 0.96rem; line-height: 1.75; }
    .hero-cta-group { margin-bottom: 2rem; }
    .hero-cta-group .btn-gold,
    .hero-cta-group .btn-outline-gold { width: 100%; justify-content: center; }
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
    }
    .hero-stat {
        text-align: center;
        padding: 12px 6px;
        border: 1px solid rgba(217,154,0,0.24);
        border-radius: 8px;
        background: rgba(5,5,5,0.42);
    }
    .hero-stat .stat-num { font-size: 1.45rem; }
    .hero-stat .stat-label { font-size: 0.58rem; line-height: 1.35; letter-spacing: 0.06em; }

    .features-strip { padding: 18px 0; }
    .features-strip .feature-item { gap: 10px; justify-content: flex-start !important; }
    .features-strip .fi-icon { width: 42px; height: 42px; }
    .features-strip .fi-text { font-size: 0.7rem; text-align: left; }

    .inner-hero { padding: 116px 0 54px; }
    .inner-hero h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
    .breadcrumb { margin-bottom: 0.75rem; }

    .section-pad { padding: 58px 0; }
    .section-pad-sm { padding: 42px 0; }
    .service-detail-section { padding: 56px 0; }
    .section-title { font-size: clamp(1.8rem, 8.5vw, 2.45rem); }
    .lead-text { font-size: 0.98rem; }
    .section-divider.left { margin-left: 0; }

    .about-preview-img-wrap img,
    .service-img-wrap img,
    .reveal-right > div[style*="position:relative"] > img,
    .reveal-left > div[style*="position:relative"] > img {
        height: 320px !important;
    }
    .about-img-badge { left: 14px; bottom: 14px; padding: 12px 15px; }

    .about-stats-grid,
    .why-grid { grid-template-columns: 1fr; }
    .why-item { padding: 18px; }

    .facility-card-img { height: 220px; }
    .membership-card,
    .testimonial-card,
    .vision-mission-card,
    .premium-form { padding: 26px 20px; }

    .gallery-grid { gap: 10px; }
    .gallery-filter-btn { flex: 1 1 auto; padding: 8px 14px; }
    .experience-card[style*="height"] { height: 270px !important; }
    .experience-label { left: 18px; bottom: 18px; }
    .experience-label h3 { font-size: 1.3rem; }

    .service-icon-big { width: 60px; height: 60px; font-size: 1.65rem; }
    .facility-overview-table table { min-width: 720px; }

    .contact-btns { flex-direction: column; }
    .btn-call,
    .btn-wa { width: 100%; justify-content: center; }
    .map-placeholder { height: 270px; }

    .reg-banner { padding: 72px 0; }
    .reg-title { font-size: clamp(2rem, 10vw, 3rem) !important; }
    .reg-sub { font-size: 1rem; }
    .reg-banner .d-flex .btn-gold,
    .reg-banner .d-flex .btn-outline-gold { width: 100%; justify-content: center; }

    .site-footer { padding-top: 54px; }
    .footer-bottom { margin-top: 36px; }
    .footer-bottom .container { justify-content: center !important; text-align: center; }

    #backToTop { width: 42px; height: 42px; right: 16px; bottom: 16px; }
}

/* Small phones */
@media (max-width: 479.98px) {
    .container { --bs-gutter-x: 1.2rem; }
        .navbar-brand-logo {
        gap: -3;
        width: 77%;
        margin: 0px 0 0 16px;
        }
    .brand-text-wrap .brand-sub { display: none; }

    .hero-section { padding-top: 112px; }
    .hero-heading { font-size: clamp(2rem, 12vw, 2.75rem); }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-stat { display: flex; align-items: center; justify-content: space-between; text-align: left; padding: 11px 14px; }
    .hero-stat .stat-label { max-width: 65%; text-align: right; }

    .features-strip .row > [class*="col-"] { width: 100%; }
    .features-strip .feature-item { max-width: 250px; margin-inline: auto; }

    .about-preview-img-wrap img,
    .service-img-wrap img,
    .reveal-right > div[style*="position:relative"] > img,
    .reveal-left > div[style*="position:relative"] > img { height: 270px !important; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { min-height: 230px; }
    .premium-form { padding: 22px 15px; }
    .section-light::before { background-size: 30px 30px; }

    .value-card { padding: 22px 14px; }
    .timeline { padding-left: 24px; }
    .timeline-item { padding-left: 18px; }
    .timeline-dot { left: -31px; }

    .footer-links a { font-size: 0.82rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal,
    .reveal-left,
    .reveal-right { opacity: 1; transform: none; }
}

/* Ensure alternating light service blocks override the original nth-child dark rule. */
.service-detail-section.section-light {
    color: var(--light-text);
    background:
        radial-gradient(circle at 8% 10%, rgba(255, 184, 0, 0.12), transparent 28%),
        radial-gradient(circle at 92% 88%, rgba(217, 154, 0, 0.09), transparent 25%),
        var(--light-bg);
}

/* ----------------------------------------------------------------- */

.footer-logo-w{
    width: 18% !important;
}


/* ============================================================
   BOX CRICKET PAGE
   ============================================================ */
.box-cricket-page .inner-hero {
    background-image:
        linear-gradient(135deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.06)),
        url(../images/box-crickect-hero.jpg);
    background-position: center;
    background-size: cover;
}
.box-cricket-page .box-cricket-highlight {
    position: relative;
    overflow: hidden;
}
.box-cricket-page .box-cricket-highlight::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,184,0,.16), transparent 68%);
    pointer-events: none;
}
@media (max-width: 767.98px) {
    .box-cricket-page .inner-hero { background-position: 58% center; }
}

.reg-banner-2 {
    position: relative;
    padding: 90px 0;
    background: url(../images/fooert-slide.jpg) center / cover no-repeat;
    overflow: hidden;
}


/* Add this at the bottom of the existing style.css file. */

.premium-gym-page .premium-gym-hero {
    background:
        linear-gradient(135deg, rgba(5,5,5,0.26), rgba(5,5,5,0.08)),
        url('../images/gym-hero.jpg') center/cover no-repeat;
}

.premium-gym-page .service-img-wrap img {
    object-position: center;
}

@media (max-width: 767.98px) {
    .premium-gym-page .premium-gym-hero {
        background-position: 62% center;
    }
}



/* Add this at the bottom of the existing style.css file. */

.badminton-page .badminton-hero {
    background:
        linear-gradient(135deg, rgba(5,5,5,0.28), rgba(5,5,5,0.10)),
        url('../images/badminton-hero.jpg') center/cover no-repeat;
}

.badminton-page .service-img-wrap img {
    object-position: center;
}

@media (max-width: 767.98px) {
    .badminton-page .badminton-hero {
        background-position: 60% center;
    }
}

.reg-banner-3 {
    position: relative;
    padding: 90px 0;
    background: url(../images/badminton-footer.jpg) center / cover no-repeat;
    overflow: hidden;
}



/* Add this at the bottom of the existing style.css file. */

.restaurant-page .restaurant-hero {
    background:
        linear-gradient(135deg, rgba(5,5,5,0.34), rgba(5,5,5,0.12)),
        url('../images/restaurant-hero.jpg') center/cover no-repeat;
}

.restaurant-page .service-img-wrap img {
    object-position: center;
}

@media (max-width: 767.98px) {
    .restaurant-page .restaurant-hero {
        background-position: 58% center;
    }
}

.reg-banner-4 {
    position: relative;
    padding: 90px 0;
    background: url(../images/food-footer.jpg) center / cover no-repeat;
    overflow: hidden;
}


/* Add this at the bottom of the existing style.css file. */

.swimming-pool-page .swimming-pool-hero {
    background:
        linear-gradient(135deg, rgba(5,5,5,0.28), rgba(5,5,5,0.08)),
        url('../images/swimming-pool-hero.jpg') center/cover no-repeat;
}

.swimming-pool-page .service-img-wrap img {
    object-position: center;
}

@media (max-width: 767.98px) {
    .swimming-pool-page .swimming-pool-hero {
        background-position: 58% center;
    }
}

.reg-banner-5 {
    position: relative;
    padding: 90px 0;
    background: url(../images/swimming-pool-about.jpg) center / cover no-repeat;
    overflow: hidden;
}

