/* ============================================
   SHAPE FITNESS CLUB - Main Stylesheet
   Theme: Gold (#FCEF0D), Black (#010101), Silver (#EBECEE)
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --red: #FCEF0D;
    --red-dark: #D4C90C;
    --red-light: #FFF44F;
    --black: #010101;
    --black-light: #0A0A0A;
    --dark-gray: #060606;
    --gray: #1A1A1A;
    --gray-light: #8E8F91;
    --white: #EBECEE;
    --off-white: #D5D6D8;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.25);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.3);
    --shadow-red: 0 4px 20px rgba(252,239,13,0.25);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark-gray);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Image Placeholder */
.img-placeholder {
    background-color: #1a1a1a;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--red);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--red);
    color: var(--black);
    border-color: var(--red);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    box-shadow: var(--shadow-red);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   NAVBAR & PILL DESIGN
============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.navbar .nav-pill-container {
    background: rgba(22, 22, 22, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 8px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: fit-content;
    margin: 20px auto 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    box-shadow: none;
}

.navbar.scrolled .nav-pill-container {
    margin-top: 10px;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-md);
}

.logo {
    display: none;
}

.mobile-logo {
    display: none;
}

.logo-img {
    height: 38px;
    width: auto;
    transition: var(--transition);
}

.logo-pill .logo-img {
    transform: scale(1.5);
}

.footer-brand .logo-img {
    height: 68px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links a:not(.logo-pill) {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-light);
    padding: 10px 20px;
    border-radius: 40px;
    transition: var(--transition);
}

.nav-links a:not(.logo-pill):hover,
.nav-links a:not(.logo-pill).active {
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

.desktop-logo-wrapper {
    margin: 0 16px;
}

.logo-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
}

.logo-pill:hover {
    transform: scale(1.05);
}

.nav-links a.logo-pill {
    padding: 8px 16px;
}

.nav-links a.logo-pill:hover,
.nav-links a.logo-pill.active {
    background: transparent;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION (Game-Style Character Selection)
============================================= */
.hero-game {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
    z-index: 1;
    padding: 80px 20px 60px;
}

.hero-game-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(252,239,13,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(252,239,13,0.05) 0%, transparent 30%),
        radial-gradient(ellipse at 80% 80%, rgba(252,239,13,0.05) 0%, transparent 30%),
        linear-gradient(180deg, #000000 0%, #050505 50%, #000000 100%);
    pointer-events: none;
    z-index: 0;
}

/* Navigation Buttons */
.char-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 120px;
    background: rgba(252,239,13,0.1);
    border: 2px solid rgba(252,239,13,0.3);
    border-radius: 8px;
    color: var(--red);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.char-nav:hover {
    background: rgba(252,239,13,0.2);
    border-color: rgba(252,239,13,0.6);
    transform: translateY(-50%) scale(1.05);
}

.char-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.char-nav-left {
    left: 5%;
}

.char-nav-right {
    right: 5%;
}

/* Character Selection Container */
.char-selection {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.char-container {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.char-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: all 0.4s ease;
}

.char-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.char-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

/* Center Character */
.char-center {
    opacity: 1;
    transform: scale(1.1);
    z-index: 5;
}

.char-center img {
    filter: drop-shadow(0 0 30px rgba(252,239,13,0.4));
}

/* Left Character */
.char-left {
    opacity: 0.4;
    transform: scale(0.65) translateX(25px);
    z-index: 3;
}

/* Right Character */
.char-right {
    opacity: 0.4;
    transform: scale(0.65) translateX(-25px);
    z-index: 3;
}

.char-left img {
    filter: grayscale(60%) brightness(0.6);
}

/* Right Character */
.char-right {
    opacity: 0.4;
    transform: scale(0.75) translateX(-30px);
    z-index: 3;
}

.char-right img {
    filter: grayscale(60%) brightness(0.6);
}

/* Character Name */
.char-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 0 0 20px rgba(252,239,13,0.3);
    animation: charNamePulse 2s ease-in-out infinite;
}

@keyframes charNamePulse {
    0%, 100% { text-shadow: 0 0 20px rgba(252,239,13,0.3); }
    50% { text-shadow: 0 0 40px rgba(252,239,13,0.6); }
}

/* Responsive */
@media (max-width: 992px) {
    .char-nav {
        width: 50px;
        height: 100px;
        font-size: 1.2rem;
    }
    
    .char-nav-left {
        left: 3%;
    }
    
    .char-nav-right {
        right: 3%;
    }
    
    .char-container {
        height: 400px;
    }
    
    .char-center img {
        max-width: 200px;
    }
    
    .char-left img,
    .char-right img {
        max-width: 200px;
    }
    
    .char-name {
        font-size: 2rem;
        letter-spacing: 5px;
    }
}

@media (max-width: 768px) {
    .char-container {
        height: 320px;
    }
    
    .char-center img,
    .char-left img,
    .char-right img {
        max-width: 160px;
    }
    
    .char-left {
        transform: scale(0.7) translateX(20px);
    }
    
    .char-right {
        transform: scale(0.7) translateX(-20px);
    }
    
    .char-name {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
    
    .char-nav {
        width: 45px;
        height: 80px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-game {
        padding: 70px 10px 40px;
    }
    
    .char-container {
        height: 280px;
    }
    
    .char-center img,
    .char-left img,
    .char-right img {
        max-width: 140px;
    }
    
    .char-left {
        transform: scale(0.65) translateX(15px);
    }
    
    .char-right {
        transform: scale(0.65) translateX(-15px);
    }
    
    .char-name {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    
    .char-nav {
        width: 40px;
        height: 70px;
    }
}
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(252,239,13,0.1) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    pointer-events: none;
    z-index: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .char-nav {
        width: 50px;
        height: 100px;
        font-size: 1.2rem;
    }
    
    .char-nav-left {
        left: 3%;
    }
    
    .char-nav-right {
        right: 3%;
    }
    
    .char-container {
        height: 400px;
    }
    
    .char-center img {
        max-width: 180px;
    }
    
    .char-left img,
    .char-right img {
        max-width: 180px;
    }
    
    .char-name {
        font-size: 2rem;
        letter-spacing: 5px;
    }
}

@media (max-width: 768px) {
    .hero-game {
        min-height: auto;
        padding: 90px 15px 60px;
    }
    
.heroSwiper {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .heroSwiper {
        height: 300px;
    }
    
    .heroSwiper .swiper-slide img {
        max-width: 180px;
    }
}

.hero-content {
    flex: 0 1 500px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--red);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 0 0 auto;
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        width: 500px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 90px 20px 40px;
    }

    .hero-container {
        gap: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-image {
        width: 400px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 15px 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-image {
        width: 320px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(252,239,13,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 120px 20px 80px;
    max-width: 700px;
    margin: 0;
    margin-left: 8%;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(252,239,13,0.1);
    border: 1px solid rgba(252,239,13,0.2);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-light);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-light);
    max-width: 550px;
    margin: 0 0 36px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-top: 4px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gray-light);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--red);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

/* ============================================
   SECTIONS COMMON
============================================= */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background-color: #010101;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-light);
    max-width: 550px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
============================================= */
.about {
    background: #ffffff;
    position: relative;
    z-index: 10;
    color: #010101;
}

.about .section-title,
.about .about-content h3 {
    color: #010101;
}

.about .section-desc,
.about .about-content p {
    color: #444444;
}

.about .highlight {
    color: var(--red-dark);
}

.about .feature {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.08);
}

.about .feature span {
    color: #010101;
}

.about .experience-badge {
    background: var(--black);
    color: var(--red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about .exp-number {
    color: var(--red);
}

.about .exp-text {
    color: var(--white);
    opacity: 0.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center 70%;
    border-radius: var(--radius-lg);
    display: block;
}

.about-img-placeholder {
    width: 100%;
    height: 450px;
    background: var(--gray);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    font-size: 1rem;
}

.about-img-placeholder i {
    font-size: 3rem;
    margin-bottom: 12px;
    color: var(--red);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--red);
    color: var(--black);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-red);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.about-content p {
    color: var(--gray-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(252,239,13,0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(252,239,13,0.1);
}

.feature i {
    color: var(--red);
    font-size: 1.1rem;
}

.feature span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   SERVICES SECTION
============================================= */
.services {
    background: url('../images/gallery/gym.png') center center / cover no-repeat;
    background-attachment: scroll;
    position: relative;
    background-color: #010101;
    z-index: 10;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(1,1,1,0.98);
    z-index: -1;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(252,239,13,0.2);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: rgba(252,239,13,0.2);
    background: linear-gradient(180deg, rgba(252,239,13,0.05) 0%, var(--black) 100%);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--red);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: rgba(252,239,13,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--red);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.service-features li i {
    color: var(--red);
    font-size: 0.8rem;
}

/* ============================================
   GALLERY SECTION
============================================= */
.gallery {
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.gallery .section-title {
    color: #010101;
}

.gallery .section-desc {
    color: #444444;
}

.gallery .highlight {
    color: var(--red-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-large {
    grid-column: span 2;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-large .gallery-img {
    height: 300px;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(1,1,1,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-hover i {
    font-size: 1.5rem;
    color: var(--red);
}

.gallery-hover span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: var(--gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
}

.gallery-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: var(--red);
    opacity: 0.5;
}

.gallery-large .gallery-placeholder {
    height: 300px;
}

/* ============================================
   TRANSFORMATIONS SECTION
============================================= */
.transformations {
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.transformations .section-title {
    color: #010101;
}

.transformations .section-desc {
    color: #444444;
}

.transformations .highlight {
    color: var(--red-dark);
}

.transform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.transform-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    cursor: pointer;
}

.transform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: rgba(252,239,13,0.3);
}

.transform-img-container {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.transform-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.transform-card:hover .transform-img {
    transform: scale(1.05);
}

.transform-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1,1,1,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

.transform-card:hover .transform-overlay {
    opacity: 1;
}

.transform-overlay i {
    font-size: 2rem;
    color: var(--red);
}

.transform-overlay span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lightbox Modal */
.transform-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    padding: 60px 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1000px;
    border-radius: var(--radius-md);
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--red);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px){
    .lightbox-content {
        width: 100%;
    }
}

/* ============================================
   TESTIMONIALS SECTION
============================================= */
.testimonials {
    background: #010101;
    position: relative;
    z-index: 10;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--dark-gray);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(252,239,13,0.15);
    transform: translateY(-4px);
}

.stars {
    margin-bottom: 16px;
}

.stars i {
    color: #FCEF0D;
    font-size: 0.95rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: rgba(252,239,13,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--red);
    font-size: 1.2rem;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-light);
}

/* ============================================
   TIMING SECTION
============================================= */
.timing {
    background: #060606;
    position: relative;
    z-index: 10;
    overflow: hidden;
    padding: 100px 0;
}

.timing-bg-gif {
    position: absolute;
    inset: 0;
    background: url('../videos/gokuji.gif') center center / cover no-repeat;
    z-index: 0;
}

.timing-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1,1,1,0.85);
    z-index: 1;
}

.timing .container {
    position: relative;
    z-index: 2;
}

.timing-card {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
}

.timing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid #f5f5f5;
}

.timing-row:last-child {
    border-bottom: none;
}

.timing-day {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #010101;
}

.timing-day i {
    color: var(--red);
    font-size: 1.4rem;
}

.timing-hours {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.time-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
}

.time-badge.morning {
    background: rgba(252,239,13,0.1);
    color: #d1b500;
    border: 1px solid rgba(252,239,13,0.2);
}

.time-badge.evening {
    background: #f8f8f8;
    color: #444444;
    border: 1px solid #eeeeee;
}

.time-badge.closed {
    background: #fff5f5;
    color: #e74c3c;
    border: 1px solid #ffebeb;
    opacity: 0.8;
}

/* ============================================
   CONTACT SECTION
============================================= */
.contact {
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--dark-gray);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(252,239,13,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: var(--red);
    font-size: 1.2rem;
}

.contact-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
}

.contact-card a {
    color: var(--gray-light);
}

.contact-card a:hover {
    color: var(--red);
}

.landmark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 4px 12px;
    background: rgba(252,239,13,0.06);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--red-light);
}

/* Enquiry Form */
.enquiry-form {
    background: var(--dark-gray);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-top: 8px;
}

.enquiry-form h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 14px;
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: var(--gray-light);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(252,239,13,0.1);
}

.enquiry-form select option {
    background: var(--black);
    color: var(--white);
}

.enquiry-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Google Maps */
.contact-map {
    min-height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

/* ============================================
   FOOTER
============================================= */
.footer {
    background: var(--dark-gray);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 0 0;
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand p {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--red);
    padding-left: 4px;
}

.footer-contact p {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact i {
    color: var(--red);
    margin-top: 4px;
}

.footer-contact a {
    color: var(--gray-light);
}

.footer-contact a:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-light);
}

/* ============================================
    FLOATING WHATSAPP BUTTON
============================================== */
.whatsapp-float {
    position: fixed;
    bottom: -100px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.4s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float.visible {
    bottom: 24px;
}

.whatsapp-float i {
    font-size: 1.8rem;
    color: var(--white);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* ============================================
   BACK TO TOP
============================================= */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--red);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-red);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   VIDEO TESTIMONIALS - REELS SECTION
============================================= */
.reels-section {
    padding: 90px 0 80px;
    background: var(--black);
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.reels-testimonials {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Left Stats Panel */
.reels-stats-panel {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.reels-rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.reels-google-stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.reels-google-stars > .fab {
    font-size: 2.2rem;
    color: var(--white);
}

.reels-stars-row {
    display: flex;
    gap: 3px;
}

.reels-stars-row i {
    font-size: 1rem;
    color: var(--red);
}

.reels-review-count {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.reels-big-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.8rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: -2px;
}

.reels-big-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1.2;
    border-bottom: 4px solid var(--red);
    padding-bottom: 4px;
    width: fit-content;
    margin: 0 auto;
}

.reels-tagline {
    font-size: 1.05rem;
    color: var(--red);
    font-weight: 500;
    font-style: italic;
}

/* Right Cards Carousel */
.reels-cards-wrapper {
    flex: 1;
    position: relative;
    min-width: 0;
}

.reels-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--dark-gray);
    border: 1px solid rgba(252,239,13,0.2);
    color: var(--red);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.reels-nav:hover {
    background: var(--red);
    color: var(--black);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 24px rgba(252,239,13,0.25);
}

.reels-prev { left: -23px; }
.reels-next { right: -23px; }

.reels-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px 4px 20px;
    scrollbar-width: none;
}

.reels-track::-webkit-scrollbar { display: none; }

/* Reel Cards */
.reel-card {
    position: relative;
    min-width: 240px;
    width: 240px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    border: 3px solid transparent;
}

.reel-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(252,239,13,0.15);
    border-color: var(--red);
}

.reel-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    transition: transform 6s ease;
}

.reel-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.reel-placeholder-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
}

.reel-placeholder-bg i {
    font-size: 3rem;
    color: var(--red);
    opacity: 0.3;
    transition: var(--transition);
}

.reel-card:hover .reel-placeholder-bg i {
    opacity: 0.7;
    transform: scale(1.1);
}

.reel-card:hover .reel-bg { transform: scale(1.08); }

.reel-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.03) 30%, rgba(1,1,1,0.85) 100%);
    transition: background 0.4s ease;
}

.reel-card:hover .reel-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.02) 25%, rgba(1,1,1,0.92) 100%);
}

.reel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reel-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reel-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #D4C90C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--black);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(252,239,13,0.25);
}

.reel-author-name {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    display: block;
}

.reel-author-tag {
    font-size: 11px;
    color: var(--red);
    margin-top: 1px;
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Play button overlay on hover */
.reel-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 52px;
    height: 52px;
    background: rgba(0,0,0,0.5);
    border: 2px solid rgba(252,239,13,0.4);
    border-radius: 50%;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='24' viewBox='0 0 20 24'%3E%3Cpolygon points='0,0 20,12 0,24' fill='%23FCEF0D'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 55% center;
    background-size: 18px 22px;
}

.reel-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Reel Modal */
.reel-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.reel-modal.open {
    opacity: 1;
    visibility: visible;
}

.reel-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.reel-modal-body {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
    max-height: 85vh;
}

.reel-modal-close {
    position: fixed;
    top: 16px;
    right: 20px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.2s ease;
    line-height: 1;
}

.reel-modal-close:hover {
    background: rgba(252,239,13,0.2);
    transform: scale(1.1);
}

.reel-modal-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.reel-modal-arrow:hover {
    background: rgba(252,239,13,0.2);
    transform: scale(1.08);
}

.reel-modal-phone {
    position: relative;
    width: 340px;
    height: 600px;
    max-height: 75vh;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    flex-shrink: 0;
}

.reel-modal-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.reel-modal-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    background: #000;
}

.reel-modal-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.reel-modal-phone.paused .reel-modal-play-btn {
    opacity: 1;
    pointer-events: auto;
}

.reel-modal-phone.playing .reel-modal-play-btn {
    opacity: 0;
    pointer-events: none;
}

.reel-modal-gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    z-index: 3;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    pointer-events: none;
}

.reel-modal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 22px;
    z-index: 5;
}

.reel-modal-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reel-modal-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #D4C90C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--black);
    flex-shrink: 0;
}

.reel-modal-name {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    display: block;
}

.reel-modal-tag {
    font-size: 12px;
    color: var(--red);
    margin-top: 2px;
    display: block;
}

.reel-modal-thumbs {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
    overflow-x: auto;
    max-width: 90vw;
    padding: 4px 8px;
    scrollbar-width: none;
}

.reel-modal-thumbs::-webkit-scrollbar { display: none; }

.reel-modal-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: border-color 0.25s ease, transform 0.2s ease;
    opacity: 0.5;
    background: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    font-size: 0.7rem;
    font-weight: 600;
}

.reel-modal-thumb:hover {
    opacity: 0.8;
    transform: scale(1.06);
}

.reel-modal-thumb.active {
    border-color: var(--red);
    opacity: 1;
    transform: scale(1.08);
}

body.reel-modal-open { overflow: hidden; }

/* ============================================
   RESPONSIVE - LARGE TABLET (1024px)
============================================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .section {
        padding: 80px 0;
    }

    .hero-content {
        margin-left: 5%;
        max-width: 55%;
    }

    .hero-video {
        width: 70%;
        right: -3%;
    }

    .about-grid {
        gap: 40px;
    }
    
    .about-img {
        height: 380px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .transform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 30px;
    }

    .timing-card {
        max-width: 600px;
    }
}

/* ============================================
   RESPONSIVE - SMALL TABLET (600px)
============================================= */
@media (max-width: 600px) {
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 24px;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-info-items {
        gap: 16px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .timing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .timing-hours {
        flex-direction: column;
        gap: 8px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

/* Reels Responsive */
@media (max-width: 1100px) {
    .reels-testimonials { gap: 40px; }
    .reels-stats-panel { flex: 0 0 280px; }
    .reels-big-number { font-size: 3.2rem; }
    .reels-big-label { font-size: 1.5rem; }
    .reel-card { min-width: 220px; width: 220px; height: 350px; }
    .reels-track { gap: 16px; }
}

@media (max-width: 991px) {
    .reels-testimonials { flex-direction: column; gap: 40px; text-align: center; }
    .reels-stats-panel { flex: none; width: 100%; align-items: center; gap: 16px; }
    .reels-big-label { margin: 0 auto; }
    .reels-cards-wrapper { width: 100%; }
    .reels-prev { left: 4px; }
    .reels-next { right: 4px; }
}

@media (max-width: 768px) {
    .reels-section { padding: 60px 0 50px; }
    .reels-testimonials { padding: 0 20px; gap: 32px; }
    .reels-big-number { font-size: 2.8rem; }
    .reels-big-label { font-size: 1.3rem; }
    .reels-tagline { font-size: 1rem; }
    .reel-card { min-width: 200px; width: 200px; height: 320px; border-radius: 16px; }
    .reels-track { gap: 14px; }
    .reel-author-name { font-size: 13px; }
    .reel-author-avatar { width: 32px; height: 32px; font-size: 12px; }
    .reel-content { padding: 18px 16px; gap: 10px; }
    .reels-nav { width: 40px; height: 40px; font-size: 16px; }
    .reel-modal-phone { width: 280px; height: 500px; }
    .reel-modal-arrow { width: 38px; height: 38px; }
    .reel-modal-body { gap: 10px; }
    .reel-modal-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 22px; }
    .reel-modal-info { padding: 20px 16px; }
    .reel-modal-thumb { width: 46px; height: 46px; border-radius: 10px; }
    .reel-modal-thumbs { gap: 8px; margin-top: 14px; }
}

@media (max-width: 480px) {
    .reels-section { padding: 48px 0 40px; }
    .reels-testimonials { padding: 0 14px; gap: 24px; }
    .reels-big-number { font-size: 2.4rem; }
    .reels-big-label { font-size: 1.15rem; }
    .reels-tagline { font-size: 0.9rem; }
    .reel-card { min-width: 180px; width: 180px; height: 290px; border-radius: 14px; border-width: 2px; }
    .reels-track { gap: 12px; padding: 10px 2px 16px; }
    .reel-author-name { font-size: 12px; }
    .reel-author-avatar { width: 28px; height: 28px; font-size: 10px; }
    .reel-content { padding: 14px 12px; gap: 8px; }
    .reels-nav { width: 36px; height: 36px; font-size: 14px; }
    .reel-modal-phone { width: 260px; height: 460px; border-radius: 20px; }
    .reel-modal-arrow { width: 32px; height: 32px; }
    .reel-modal-close { top: 10px; right: 10px; width: 34px; height: 34px; font-size: 20px; }
    .reel-modal-thumb { width: 40px; height: 40px; border-radius: 8px; }
    .reel-modal-thumbs { gap: 6px; margin-top: 12px; }
}

@media (max-width: 360px) {
    .reels-section { padding: 36px 0 30px; }
    .reels-testimonials { padding: 0 10px; }
    .reels-big-number { font-size: 2rem; }
    .reels-big-label { font-size: 1rem; }
    .reel-card { min-width: 160px; width: 160px; height: 260px; border-radius: 12px; }
    .reels-track { gap: 10px; }
    .reel-content { padding: 12px 10px; }
    .reels-nav { display: none; }
    .reel-modal-phone { width: 230px; height: 410px; border-radius: 16px; }
    .reel-modal-arrow { width: 28px; height: 28px; }
    .reel-modal-thumb { width: 36px; height: 36px; }
}

/* ============================================
   RESPONSIVE - TABLET
============================================= */
@media (max-width: 992px) {
    .hero {
        justify-content: center;
    }

    .hero-content {
        margin-left: 5%;
        max-width: 60%;
    }

    .hero-video {
        width: 65%;
        right: 0;
        top: 5%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img {
        height: 350px;
    }

    .about-img-placeholder {
        height: 350px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .services {
        background-attachment: scroll;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================= */
@media (max-width: 1024px) {
    .navbar .nav-pill-container {
        justify-content: space-between;
        max-width: none;
        width: calc(100% - 32px);
        margin: 10px 16px 0;
        border-radius: 16px;
    }

    .mobile-logo {
        display: flex;
    }

    .desktop-logo-wrapper {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px;
        gap: 28px;
        transition: var(--transition);
        box-shadow: none;
        border-radius: 0;
        z-index: 999;
        transform: translateX(100%);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .desktop-logo-wrapper {
        display: none;
    }

    .nav-links a:not(.logo-pill) {
        font-size: 1.2rem;
        padding: 12px 0;
        border-radius: 0;
    }

    .nav-links a:not(.logo-pill):hover,
    .nav-links a:not(.logo-pill).active {
        background: transparent;
        color: var(--red);
    }

    .nav-btn {
        display: none;
    }

    .hero-video {
        width: 100%;
        right: auto;
        left: 0;
        top: 0;
        object-position: center center;
    }

    .hero-overlay {
        background: rgba(0,0,0,0.6);
    }

    .hero-content {
        padding: 100px 16px 60px;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 24px;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-large {
        grid-column: span 2;
    }

    .timing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .timing-hours {
        flex-direction: column;
        gap: 8px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: var(--red);
        margin: 10px auto 0;
    }

    .footer-contact p {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        padding: 30px 0 100px; /* Extra bottom padding for floating buttons */
    }

    .experience-badge {
        bottom: -10px;
        right: 10px;
        padding: 14px;
    }

    .exp-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 50px 0;
    }

    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 90px 16px 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-large {
        grid-column: span 1;
    }

    .gallery-img,
    .gallery-large .gallery-img {
        height: 220px;
    }

    .transform-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .about-img {
        height: 280px;
    }

    .about-content h3 {
        font-size: 1.3rem;
    }

    .timing-card {
        padding: 20px;
    }

    .contact-map {
        min-height: 280px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* ============================================
   SCROLL POPUP
============================================== */
.scroll-popup-btn {
    position: fixed;
    right: 24px;
    bottom: 100px;
    background: linear-gradient(135deg, #FCEF0D, #D4C90C);
    color: #000;
    border: none;
    padding: 14px 24px;
    border-radius: 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 997;
    box-shadow: 0 4px 20px rgba(252,239,13,0.3);
    display: none;
    transition: all 0.3s ease;
}
.scroll-popup-btn.visible {
    display: flex;
    align-items: center;
    gap: 8px;
    animation: whatsappFloatIn 0.4s ease;
}
@keyframes whatsappFloatIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.scroll-popup-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(252,239,13,0.5);
}

.scroll-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.scroll-popup.show {
    display: flex;
}

.scroll-popup-content {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 2px solid #FCEF0D;
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    position: relative;
    animation: slideUp 0.3s ease;
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.scroll-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #8E8F91;
    font-size: 1.5rem;
    cursor: pointer;
}
.scroll-popup-close:hover {
    color: #FCEF0D;
}

.scroll-popup-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #FCEF0D;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.scroll-form input,
.scroll-form select,
.scroll-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}
.scroll-form input:focus,
.scroll-form select:focus,
.scroll-form textarea:focus {
    outline: none;
    border-color: #FCEF0D;
}
.scroll-form input:valid:not(:placeholder-shown) {
    border-color: #00ff88;
}
.scroll-form input:invalid:not(:placeholder-shown) {
    border-color: #ff4444;
}
.scroll-form select {
    cursor: pointer;
}

/* Scroll Success Popup */
.scroll-success-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.scroll-success-popup.show {
    display: flex;
}

.scroll-success-content {
    background: #111;
    border: 2px solid #FCEF0D;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    animation: successPop 0.4s ease;
}
@keyframes successPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.scroll-success-content i {
    font-size: 3.5rem;
    color: #FCEF0D;
    margin-bottom: 15px;
}
.scroll-success-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #FCEF0D;
    margin-bottom: 10px;
}
.scroll-success-content p {
    color: #EBECEE;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .scroll-popup-btn {
        right: 16px;
        bottom: 90px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    .scroll-popup-content {
        padding: 25px;
        max-width: 90%;
    }
    .scroll-form input,
    .scroll-form select,
    .scroll-form textarea {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .scroll-popup-btn {
        right: 12px;
        bottom: 85px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    .scroll-popup-content {
        padding: 20px;
        max-width: 95%;
        border-radius: 12px;
    }
    .scroll-popup-content h3 {
        font-size: 1.5rem;
    }
    .scroll-form input,
    .scroll-form select,
    .scroll-form textarea {
        padding: 10px 12px;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    .scroll-success-content {
        padding: 30px 20px;
    }
    .scroll-success-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .scroll-popup-btn {
        right: 10px;
        bottom: 80px;
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    .scroll-popup-content {
        padding: 15px;
    }
    .scroll-popup-close {
        top: 10px;
        right: 10px;
        font-size: 1.3rem;
    }
}
