/* ================================================================
   BEAUTY GURU — DARK FIRE PREMIUM THEME
   Style: Bold × Cinematic × Transformative
   ================================================================ */

/* ---- 1. CSS VARIABLES ---- */
:root {
    --primary:        #f15a29;
    --primary-dark:   #c94420;
    --primary-light:  #ff7f5c;
    --primary-glow:   rgba(241, 90, 41, 0.22);
    --black:          #000000;
    --dark:           #0a0a0a;
    --dark-2:         #111111;
    --dark-3:         #1a1a1a;
    --dark-4:         #242424;
    --white:          #ffffff;
    --text-light:     #e2e2e2;
    --text-muted:     #888888;
    --text-dim:       #555555;
    --border:         #222222;
    --border-bright:  #333333;
    --transition:     all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast:all 0.2s ease;
    --radius:         10px;
    --radius-lg:      18px;
    --shadow:         0 8px 40px rgba(241, 90, 41, 0.14);
    --shadow-lg:      0 20px 60px rgba(241, 90, 41, 0.26);
    --shadow-dark:    0 8px 30px rgba(0, 0, 0, 0.55);
    --font-display:   'Bebas Neue', sans-serif;
    --font-sub:       'Montserrat', sans-serif;
    --font-body:      'DM Sans', sans-serif;
    --topbar-h:       44px;
    --nav-h:          78px;
}

/* ---- 2. RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
section { position: relative; }

/* ---- 3. TYPOGRAPHY ---- */
.section-label {
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--primary);
    flex-shrink: 0;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 60px);
    letter-spacing: 3px;
    line-height: 1.02;
    color: var(--white);
    margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.85;
}
.section-pad    { padding: 100px 0; }
.section-pad-sm { padding: 65px 0; }

/* Shimmer divider */
.section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 52px;
}
.divider-line {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), transparent);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.divider-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shimmer 2s infinite;
}
@keyframes shimmer { 100% { left: 200%; } }

/* ---- 4. BUTTONS ---- */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-sub);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn-primary-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 0;
}
.btn-primary-custom:hover { color: var(--white); box-shadow: var(--shadow-lg); }
.btn-primary-custom:hover::before { transform: scaleX(1); }
.btn-primary-custom span,
.btn-primary-custom i { position: relative; z-index: 1; }

.btn-outline-custom {
    --bc: rgba(255,255,255,0.25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    position: relative;
    background:
        linear-gradient(var(--bc), var(--bc)) 0 0 / calc(100% - 12px) 2px no-repeat,
        linear-gradient(var(--bc), var(--bc)) right 0 top 12px / 2px calc(100% - 12px) no-repeat,
        linear-gradient(var(--bc), var(--bc)) right 0 bottom 0 / calc(100% - 12px) 2px no-repeat,
        linear-gradient(var(--bc), var(--bc)) 0 0 / 2px calc(100% - 12px) no-repeat;
    color: var(--white);
    font-family: var(--font-sub);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.btn-outline-custom::before,
.btn-outline-custom::after {
    content: '';
    position: absolute;
    width: 17px;
    height: 2px;
    background: var(--bc);
    pointer-events: none;
}
.btn-outline-custom::before {
    top: 2px;
    right: 14px;
    transform-origin: right top;
    transform: rotate(-135deg);
}
.btn-outline-custom::after {
    bottom: 12px;
    left: 0;
    transform-origin: left bottom;
    transform: rotate(45deg);
}
.btn-outline-custom:hover {
    --bc: var(--primary);
    color: var(--primary);
    background-color: rgba(241,90,41,0.07);
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-sub);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    animation: bookPulse 2.5s ease-in-out infinite;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
}
.btn-book:hover {
    background: var(--primary-dark);
    color: var(--white);
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241,90,41,0.5);
}
@keyframes bookPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(241,90,41,0.5); }
    50%       { box-shadow: 0 0 0 10px rgba(241,90,41,0); }
}

/* ---- 5. PRELOADER ---- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
    width: 100px;
    margin-bottom: 28px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
    margin: 0 auto 28px;
}
@keyframes preloaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.7; transform: scale(0.93); }
}
.preloader-ring {
    width: 68px;
    height: 68px;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-right-color: rgba(241,90,41,0.3);
    border-radius: 50%;
    animation: spin 0.85s linear infinite;
    position: relative;
}
.preloader-ring-inner {
    position: absolute;
    width: 48px;
    height: 48px;
    border: 2px solid transparent;
    border-bottom-color: var(--primary-light);
    border-radius: 50%;
    animation: spinReverse 0.6s linear infinite;
    top: 10px;
    left: 10px;
}
.preloader-text {
    margin-top: 22px;
    font-family: var(--font-sub);
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: fadeInOut 1.5s ease-in-out infinite;
}
@keyframes spin        { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes fadeInOut   { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---- 6. TOP BAR ---- */
#topbar {
    background: #050505;
    height: var(--topbar-h);
    border-bottom: 1px solid #1a1a1a;
    position: relative;
    z-index: 1000;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.topbar-left  { display: flex; align-items: center; gap: 18px; }
.topbar-item  {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sub);
    font-size: 12px;
    color: #999;
    transition: color 0.2s;
}
.topbar-item i   { color: var(--primary); font-size: 11px; }
.topbar-item:hover { color: var(--white); }
.topbar-sep      { width: 1px; height: 14px; background: #2a2a2a; }
.topbar-right    { display: flex; align-items: center; gap: 12px; }
.topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    font-size: 11px;
    color: #777;
    transition: var(--transition-fast);
}
.topbar-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ---- 7. MAIN NAVIGATION ---- */
#mainNav {
    height: var(--nav-h);
    background: rgba(8,8,8,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(241,90,41,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}
#mainNav.scrolled {
    background: rgba(0,0,0,0.98);
    border-bottom-color: rgba(241,90,41,0.22);
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-logo img {
    height: 52px;
    width: auto;
    transition: var(--transition);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-links li a {
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #bbb;
    padding: 7px 12px;
    border-radius: 4px;
    transition: var(--transition-fast);
    position: relative;
    white-space: nowrap;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--white); }
.nav-links li a:hover::after,
.nav-links li a.active::after { width: calc(100% - 24px); }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    z-index: 998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 40px 20px;
    backdrop-filter: blur(12px);
    overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-family: var(--font-display);
    font-size: clamp(28px, 8vw, 42px);
    letter-spacing: 4px;
    color: var(--white);
    text-transform: uppercase;
    transition: color 0.2s;
    text-align: center;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--primary); }
.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
    transition: color 0.2s;
}
.mobile-nav-close:hover { color: var(--primary); }

/* ---- 8. HERO SLIDER ---- */
.hero-slider {
    width: 100%;
    height: 100vh;
    min-height: 620px;
    position: relative;
    background: var(--dark);
}
.hero-swiper { width: 100%; height: 100%; }
.hero-slide { position: relative; width: 100%; height: 100%; overflow: hidden; }
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 7s ease;
}
.swiper-slide-active .hero-slide-bg { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.88) 0%,
        rgba(10,5,0,0.72) 50%,
        rgba(241,90,41,0.12) 100%
    );
    z-index: 1;
}
/* Diagonal bottom cut */
.hero-slider::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 80px;
    background: var(--dark);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 10;
}
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 5;
}
.hero-content .container { padding-top: 60px; }
.hero-tag {
    display: inline-block;
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(241,90,41,0.1);
    border: 1px solid rgba(241,90,41,0.3);
    padding: 6px 18px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 9vw, 112px);
    line-height: 0.95;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 0.7s ease 0.25s, transform 0.7s ease 0.25s;
}
.hero-title em { font-style: normal; color: var(--primary); }
.hero-sub {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin-bottom: 38px;
    line-height: 1.75;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease 0.55s, transform 0.7s ease 0.55s;
}
/* Activate on active slide */
.swiper-slide-active .hero-tag,
.swiper-slide-active .hero-title,
.swiper-slide-active .hero-sub,
.swiper-slide-active .hero-buttons { opacity: 1; transform: translateY(0); }

/* Custom nav */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 54px;
    height: 54px;
    background: rgba(241,90,41,0.12);
    border: 1px solid rgba(241,90,41,0.28);
    color: var(--white);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.hero-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}
.hero-nav-prev { left: 30px; }
.hero-nav-next { right: 30px; }
.hero-slider .swiper-pagination { bottom: 100px !important; }
.hero-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.35);
    opacity: 1 !important;
    transition: all 0.3s;
}
.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 28px;
    border-radius: 4px;
    opacity: 1 !important;
}
/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.scroll-line {
    width: 1px;
    height: 46px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 28px; }
    50%       { opacity: 1;   height: 46px; }
}
.scroll-dot {
    width: 8px;
    height: 8px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: scalePulse 1.6s ease-in-out infinite;
}
@keyframes scalePulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50%       { transform: scale(1.2); opacity: 1;   }
}

/* ---- 9. PAGE BANNER ---- */
.page-banner {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.page-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
}
.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(241,90,41,0.18) 100%);
}
.page-banner-content {
    position: relative;
    z-index: 5;
    padding-top: 40px;
}
.page-banner::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 60px;
    background: var(--dark);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 6;
}
.page-banner h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 82px);
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 12px;
}
.page-banner h1 span { color: var(--primary); }
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sub);
    font-size: 11px;
    letter-spacing: 2px;
    color: #777;
    text-transform: uppercase;
}
.breadcrumb-nav a { color: #777; transition: color 0.2s; }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav .sep     { color: var(--primary); }
.breadcrumb-nav .current { color: var(--primary); }

/* ---- 10. DIVISION CARDS ---- */
.division-section {
    background: var(--dark);
    padding: 80px 0 100px;
}
.division-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.division-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    cursor: pointer;
}
.division-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}
.division-card:hover .division-card-bg { transform: scale(1.06); }
.division-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.08) 100%);
    transition: var(--transition);
}
.division-card:hover .division-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(241,90,41,0.14) 55%, rgba(0,0,0,0.1) 100%);
}
/* Animated glow border */
.division-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), transparent 50%, var(--primary-light));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 5;
}
.division-card:hover::before { opacity: 1; animation: borderFlow 3s linear infinite; }
@keyframes borderFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.division-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 42px 38px;
    z-index: 4;
}
.division-label {
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}
.division-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 46px);
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 14px;
}
.division-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* ---- 11. ABOUT STRIP ---- */
.about-strip { background: var(--dark); padding: 100px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-main {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 4/5;
    object-fit: cover;
    position: relative;
    z-index: 2;
}
.about-image-badge {
    position: absolute;
    top: 36px;
    left: -28px;
    background: var(--primary);
    padding: 22px 26px;
    border-radius: var(--radius);
    z-index: 4;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-image-badge .num {
    font-family: var(--font-display);
    font-size: 50px;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
}
.about-image-badge .lbl {
    font-family: var(--font-sub);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
}
/* Orange corner accent */
.about-image-wrap::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), transparent);
    border-radius: var(--radius);
    opacity: 0.35;
    z-index: 1;
}
.about-name {
    font-family: var(--font-sub);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
}
.about-role { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.about-desc { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 32px; }
.highlight-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.highlight-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: rgba(241,90,41,0.07);
    border: 1px solid rgba(241,90,41,0.2);
    border-radius: 4px;
    font-family: var(--font-sub);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
}
.highlight-badge i { color: var(--primary); }

/* ---- 12. STATS COUNTER ---- */
.stats-section {
    background: var(--dark);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(241,90,41,0.055) 0%, transparent 68%);
}
.stats-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 220px;
    color: rgba(241,90,41,0.025);
    letter-spacing: 12px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
    z-index: 2;
}
.stat-item {
    text-align: center;
    padding: 52px 30px;
    background: var(--dark-2);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.stat-item:hover { background: var(--dark-3); transform: translateY(-5px); }
.stat-item:hover::before { transform: scaleX(1); }
.stat-icon { font-size: 28px; color: var(--primary); margin-bottom: 18px; display: block; }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 66px);
    letter-spacing: 3px;
    color: var(--white);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.stat-number .suffix {
    font-size: 0.42em;
    color: var(--primary);
    font-family: var(--font-sub);
    font-weight: 700;
    margin-top: 8px;
}
.stat-label {
    font-family: var(--font-sub);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ---- 13. SERVICES GRID ---- */
.services-section { background: var(--dark-2); padding: 100px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 52px;
}
.service-card {
    background: var(--dark-3);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1.5px;
    background: linear-gradient(135deg, var(--primary), transparent 50%, var(--primary-light));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}
.service-card:hover::before { opacity: 1; animation: borderFlow 3s linear infinite; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card-image { position: relative; height: 300px; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card-image img { transform: scale(1.09); }
.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}
.service-icon-badge {
    position: absolute;
    bottom: -20px;
    left: 22px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    z-index: 3;
    box-shadow: 0 4px 20px rgba(241,90,41,0.45);
    border: 3px solid var(--dark-3);
}
.service-card-body { padding: 36px 22px 26px; }
.service-card-body h3 {
    font-family: var(--font-sub);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.service-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    transition: gap 0.3s;
}
.service-card-link:hover { gap: 14px; }

/* ---- 14. TRANSFORMATIONS GALLERY ---- */
.transformations-section {
    background: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.transformations-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(241,90,41,0.065) 0%, transparent 70%);
    pointer-events: none;
}
.transformations-tagline {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 44px);
    letter-spacing: 3px;
    color: var(--primary);
    text-align: center;
    margin: 30px 0 52px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    display: block;
    text-decoration: none;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(241,90,41,0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 30px; color: var(--white); }

/* ---- 15. PARALLAX CTA ---- */
.parallax-cta {
    position: relative;
    padding: 130px 0;
    background-image: url('../images/HOME PAGE SLIDER IMAGE (2).jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.parallax-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.88) 0%,
        rgba(241,90,41,0.58) 55%,
        rgba(0,0,0,0.88) 100%
    );
}
.parallax-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.parallax-cta .section-title { font-size: clamp(38px, 6.5vw, 76px); }
.parallax-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin: 0 auto 38px;
    max-width: 580px;
    line-height: 1.75;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- 16. ACADEMY SECTION ---- */
.academy-section { background: var(--dark-2); padding: 100px 0; }
.academy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.academy-images { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.academy-images img {
    border-radius: var(--radius);
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: var(--transition);
}
.academy-images img:hover { transform: scale(1.03); box-shadow: var(--shadow); }
.academy-images img:first-child { grid-column: 1 / -1; height: 270px; }
.course-list { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.course-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--dark-3);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
    transition: var(--transition);
}
.course-item:hover { background: var(--dark-4); transform: translateX(6px); }
.course-num {
    font-family: var(--font-display);
    font-size: 30px;
    letter-spacing: 2px;
    color: var(--primary);
    opacity: 0.38;
    line-height: 1;
    flex-shrink: 0;
}
.course-info h4 {
    font-family: var(--font-sub);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.course-info p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ---- 17. TESTIMONIALS ---- */
.testimonials-section { background: var(--dark); padding: 100px 0; }
.testimonials-swiper { padding: 20px 5px 50px !important; }
.testimonial-card {
    background: var(--dark-2);
    border-radius: var(--radius);
    padding: 34px 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: auto;
}
.testimonial-card:hover { border-color: rgba(241,90,41,0.3); box-shadow: var(--shadow); transform: translateY(-5px); }
.quote-mark {
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: 0.7;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 14px;
    display: block;
}
.testimonial-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testimonial-stars i { color: #f5c518; font-size: 13px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white);
    flex-shrink: 0;
}
.author-info .name { font-family: var(--font-sub); font-size: 14px; font-weight: 700; color: var(--white); }
.author-info .service { font-size: 12px; color: var(--primary); margin-top: 2px; }
.testimonials-swiper .swiper-pagination-bullet { background: var(--border-bright) !important; opacity: 1 !important; }
.testimonials-swiper .swiper-pagination-bullet-active { background: var(--primary) !important; }

/* ---- 18. ENQUIRY FORM ---- */
.enquiry-section {
    background: var(--dark-2);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.enquiry-section::before {
    content: '';
    position: absolute;
    left: -80px; top: 50%;
    transform: translateY(-50%);
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(241,90,41,0.045) 0%, transparent 70%);
}
.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}
.enquiry-features { display: flex; flex-direction: column; gap: 20px; margin-top: 38px; }
.enquiry-feature { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(241,90,41,0.1);
    border: 1px solid rgba(241,90,41,0.22);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary);
    flex-shrink: 0;
}
.feature-text h4 { font-family: var(--font-sub); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.feature-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.enquiry-form-card {
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    border: 1px solid var(--border);
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-family: var(--font-sub);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 18px;
    background: var(--dark-2);
    border: 1px solid var(--border-bright);
    border-radius: 6px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-fast);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--dark-3);
    box-shadow: 0 0 0 3px rgba(241,90,41,0.09);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select option { background: var(--dark-3); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-sub);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}
.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241,90,41,0.42);
}
.alert-success {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.28);
    color: #86efac;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 18px;
    display: none;
}

/* ---- 19. FOOTER ---- */
#footer {
    background: #000;
    border-top: 1px solid rgba(241,90,41,0.12);
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid #161616;
}
.footer-brand .logo { height: 54px; width: auto; margin-bottom: 20px; }
.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.82;
    margin-bottom: 24px;
    max-width: 270px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px;
    height: 38px;
    background: var(--dark-3);
    border: 1px solid var(--border-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #777;
    transition: var(--transition-fast);
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}
.footer-heading {
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--primary);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a i { font-size: 10px; color: var(--primary); opacity: 0.6; }
.footer-links a:hover { color: var(--primary); padding-left: 6px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.footer-contact-icon {
    width: 34px;
    height: 34px;
    background: rgba(241,90,41,0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-text { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.footer-contact-text a { color: var(--text-muted); transition: color 0.2s; }
.footer-contact-text a:hover { color: var(--primary); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}
.footer-copy { font-size: 13px; color: var(--text-dim); }
.footer-copy span { color: var(--primary); }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-dim); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ---- 20. FLOATING BUTTONS ---- */
.float-buttons {
    position: fixed;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
}
.whatsapp-btn {
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    animation: whatsappPulse 2.2s ease-in-out infinite;
    transition: var(--transition-fast);
}
.whatsapp-btn:hover {
    background: #20ba5a;
    color: var(--white);
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}
.scroll-top-btn {
    width: 54px;
    height: 54px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--white);
    box-shadow: var(--shadow);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* ---- 21. ABOUT PAGE ---- */
.timeline { position: relative; padding-left: 42px; }
.timeline::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}
.timeline-item { position: relative; padding-bottom: 42px; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -49px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--dark-2);
    box-shadow: 0 0 14px rgba(241,90,41,0.55);
}
.timeline-year {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 6px;
}
.timeline-item h3 { font-family: var(--font-sub); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.timeline-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
    background: var(--dark-3);
    border-radius: var(--radius);
    padding: 36px 26px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(241,90,41,0.3); box-shadow: var(--shadow); }
.value-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(241,90,41,0.1);
    border: 2px solid rgba(241,90,41,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}
.value-card:hover .value-card-icon { background: var(--primary); color: var(--white); border-color: var(--primary); }
.value-card h3 { font-family: var(--font-sub); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ---- 22. STUDIO PAGE ---- */
.service-detail-section { background: var(--dark); padding: 100px 0; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.service-detail-image { border-radius: var(--radius); overflow: hidden; position: relative; }
.service-detail-image img { width: 100%; height: 500px; object-fit: cover; }
.service-detail-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(241,90,41,0.12) 0%, transparent 55%);
    z-index: 1;
    pointer-events: none;
}
.process-section { background: var(--dark); padding: 100px 0; }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 52px;
}
.process-step {
    background: var(--dark-2);
    padding: 38px 26px;
    position: relative;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.process-step:hover { background: var(--dark-3); border-color: rgba(241,90,41,0.28); }
/* Arrow connector */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid var(--primary);
    z-index: 2;
    opacity: 0.6;
}
.step-num {
    font-family: var(--font-display);
    font-size: 62px;
    letter-spacing: 3px;
    color: rgba(241,90,41,0.1);
    line-height: 1;
    margin-bottom: -8px;
}
.process-icon { font-size: 26px; color: var(--primary); margin-bottom: 14px; }
.process-step h4 { font-family: var(--font-sub); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ---- 23. GALLERY PAGE ---- */
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 42px; justify-content: center; }
.filter-btn {
    padding: 8px 22px;
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-bright);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.filter-btn:hover,
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    max-height: 400px;
}
.masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.masonry-item.tall img { min-height: 400px; }
.masonry-item.short img { min-height: 220px; }
.masonry-item:hover img { transform: scale(1.08); }
.masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(241,90,41,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    gap: 8px;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay i { font-size: 28px; color: var(--white); }
.masonry-overlay span {
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}

/* ---- 24. CLIENT STORIES PAGE ---- */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.story-card {
    background: var(--dark-2);
    border-radius: var(--radius);
    padding: 36px 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.story-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}
.story-card:hover { transform: translateY(-5px); border-color: rgba(241,90,41,0.2); box-shadow: var(--shadow); }
.story-card:hover::before { transform: scaleY(1); }

/* ---- 25. CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info-card {
    background: var(--dark-3);
    border-radius: var(--radius);
    padding: 34px;
    border: 1px solid var(--border);
    margin-bottom: 22px;
}
.contact-info-card h3 {
    font-family: var(--font-sub);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.contact-detail i { color: var(--primary); font-size: 14px; margin-top: 3px; width: 16px; flex-shrink: 0; }
.contact-detail-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.contact-detail-text strong { color: var(--white); display: block; margin-bottom: 2px; }
.contact-detail-text a { color: var(--text-muted); transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--primary); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 300px; display: block; filter: invert(90%) hue-rotate(180deg); }

/* ---- 26. RESPONSIVE ---- */
@media (max-width: 1199px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-step:not(:last-child)::after { display: none; }
}
@media (max-width: 991px) {
    :root { --nav-h: 100px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-inner { position: relative; }
    .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
    .nav-logo img { height: 80px; }
    .division-grid { grid-template-columns: 1fr; }
    .division-card { height: 360px; }
    .about-grid { grid-template-columns: 1fr; gap: 52px; }
    .about-image-badge { left: 16px; bottom: 50px; top: unset; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .masonry-grid { grid-template-columns: repeat(2, 1fr); }
    .academy-grid { grid-template-columns: 1fr; gap: 52px; }
    .enquiry-grid { grid-template-columns: 1fr; gap: 52px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .stories-grid { grid-template-columns: 1fr; }
    .hero-nav-prev { left: 14px; opacity: 0.4; }
    .hero-nav-next { right: 14px; opacity: 0.4; }
    .hero-nav-btn { width: 44px; height: 44px; font-size: 15px; }
    .parallax-cta { background-attachment: scroll; }
    .topbar-left .topbar-item:nth-child(n+3) { display: none; }
}
@media (max-width: 767px) {
    :root { --topbar-h: 0px; }
    #topbar { display: none; }
    .section-pad { padding: 70px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
    .hero-slider { height: 85vh; min-height: 500px; }
    .hero-content { align-items: flex-start; padding-top: calc(var(--nav-h) + 24px); padding-bottom: 60px; }
    .hero-content .container { padding-top: 0; }
    .hero-title { font-size: clamp(48px, 13vw, 72px); }
    .hero-sub { font-size: 14px; max-width: 100%; }
    .hero-buttons .btn-outline-custom { display: none; }
    .academy-images img:first-child { height: 200px; }
    .academy-images img { height: 130px; }
    .values-grid { grid-template-columns: 1fr; }
    .page-banner { height: 280px; }
    .masonry-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .enquiry-form-card { padding: 28px 20px; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .masonry-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- 27. MISC UTILS ---- */
.text-primary { color: var(--primary) !important; }
.text-white   { color: var(--white) !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.fw-700       { font-weight: 700; }
::selection   { background: rgba(241,90,41,0.32); color: var(--white); }
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* AOS pointer fix */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }
