/* ==============================================
   DHURUV DETAILING STUDIO — ULTIMATE PREMIUM CSS
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cinzel:wght@400;700;900&family=Inter:wght@300;400;600;700&display=swap');

:root {
    --clr-bg: #030303;
    --clr-bg-2: #0a0a0a;
    --clr-bg-3: #111111;
    --clr-accent: #FF4500;
    --clr-accent-2: #FF6B00;
    --clr-accent-glow: rgba(255, 69, 0, 0.6);
    --clr-gold: #C9A84C;
    --clr-white: #FFFFFF;
    --clr-sub: #888888;
    --clr-muted: #666666;
    --clr-border: rgba(255, 255, 255, 0.07);
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==============================================
   RESET & BASE
   ============================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    line-height: 1.05;
}

p {
    color: var(--clr-sub);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center {
    text-align: center;
}

.section {
    padding: 7rem 0;
}

/* ==============================================
   NAVIGATION
   ============================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 5%;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(3, 3, 3, 0.92);
    backdrop-filter: blur(24px);
    padding: 1.2rem 5%;
    border-bottom: 1px solid rgba(255, 69, 0, 0.15);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-logo-img {
    height: 60px;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--clr-accent);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--clr-accent);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 3, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 2rem;
    font-family: var(--font-display);
    letter-spacing: 4px;
}

.mobile-menu a:hover {
    color: var(--clr-accent);
}

.mobile-close {
    position: absolute;
    top: 2rem;
    right: 5%;
    font-size: 2rem;
    cursor: pointer;
    color: var(--clr-sub);
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.8rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-2));
    color: #fff;
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(255, 69, 0, 0.7), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    border-color: var(--clr-white);
    color: var(--clr-white);
}

.btn-secondary:hover {
    background: var(--clr-white);
    color: var(--clr-bg);
    transform: translateY(-3px);
}

.btn-ghost {
    background: transparent;
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.btn-ghost:hover {
    background: var(--clr-accent);
    color: #fff;
}

/* ==============================================
   TYPOGRAPHY
   ============================================== */
.display-title {
    font-family: var(--font-display);
    font-size: clamp(5rem, 14vw, 12rem);
    line-height: 0.9;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.section-label::before,
.section-label::after {
    content: '';
    flex: 1;
    max-width: 40px;
    height: 1px;
    background: var(--clr-accent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
}

.bold-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 0.9;
}

/* ==============================================
   HERO — CINEMATIC with SMOKE & LIGHTNING
   ============================================== */
.hero-fs {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 100px;
    /* Prevent overlap with fixed navbar */
}

/* Base dark background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at 50% 80%, #1a0800 0%, #030303 60%);
}

/* Floor reflection / wet ground effect */
.hero-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 69, 0, 0.06) 0%, transparent 100%);
    z-index: 1;
}

/* Spotlight beams */
.hero-spotlights {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.spotlight {
    position: absolute;
    top: -10%;
    width: 300px;
    height: 100%;
    border-radius: 0 0 50% 50%;
    transform-origin: top center;
    opacity: 0.18;
}

.spotlight-1 {
    left: 10%;
    background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.9), transparent 70%);
    animation: spotSwing1 8s ease-in-out infinite;
}

.spotlight-2 {
    left: 30%;
    background: radial-gradient(ellipse at top, rgba(255, 180, 100, 0.8), transparent 70%);
    animation: spotSwing2 10s ease-in-out infinite 1s;
    opacity: 0.12;
}

.spotlight-3 {
    right: 10%;
    background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.9), transparent 70%);
    animation: spotSwing1 9s ease-in-out infinite 2s reverse;
}

.spotlight-4 {
    right: 30%;
    background: radial-gradient(ellipse at top, rgba(255, 100, 60, 0.8), transparent 70%);
    animation: spotSwing2 7s ease-in-out infinite 0.5s;
    opacity: 0.13;
}

@keyframes spotSwing1 {

    0%,
    100% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

@keyframes spotSwing2 {

    0%,
    100% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-8deg);
    }
}

/* Smoke layers - Intensified */
.smoke-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.smoke-layer {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 120%;
    height: 80%;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0;
    animation: smokeRise var(--dur, 12s) ease-in-out infinite var(--delay, 0s);
}

.smoke-1 {
    background: radial-gradient(ellipse, rgba(150, 150, 160, 0.6) 0%, transparent 70%);
    --dur: 14s;
    --delay: 0s;
    left: -5%;
    width: 60%;
}

.smoke-2 {
    background: radial-gradient(ellipse, rgba(100, 100, 120, 0.5) 0%, transparent 70%);
    --dur: 18s;
    --delay: 4s;
    left: 30%;
    width: 70%;
}

.smoke-3 {
    background: radial-gradient(ellipse, rgba(140, 100, 80, 0.45) 0%, transparent 70%);
    --dur: 16s;
    --delay: 8s;
    left: 60%;
    width: 60%;
}

.smoke-4 {
    background: radial-gradient(ellipse, rgba(80, 80, 100, 0.5) 0%, transparent 70%);
    --dur: 20s;
    --delay: 2s;
    left: 10%;
    width: 80%;
    bottom: -30%;
}

@keyframes smokeRise {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0;
    }

    20% {
        opacity: 0.95;
    }

    60% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-50%) scaleX(1.4);
        opacity: 0;
    }
}

/* Ground smoke drift */
.ground-smoke {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(to top,
            rgba(50, 30, 20, 0.8) 0%,
            rgba(70, 40, 30, 0.5) 30%,
            transparent 100%);
    filter: blur(8px);
    animation: groundSmokePulse 5s ease-in-out infinite;
}

@keyframes groundSmokePulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

/* Lightning bolts - Intensified */
.lightning-container {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.lightning-bolt {
    position: absolute;
    top: 0;
    width: 6px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff, #e0f2fe, rgba(255, 255, 255, 0));
    filter: blur(1px) drop-shadow(0 0 15px #fff) drop-shadow(0 0 30px #aaf);
    transform-origin: top center;
    opacity: 0;
}

.lightning-bolt::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: inherit;
    filter: blur(20px);
    opacity: 0.6;
}

.bolt-1 {
    left: 20%;
    height: 60%;
    transform: rotate(5deg);
    animation: strikeBolt 3s ease-in-out infinite 0.5s;
}

.bolt-2 {
    right: 22%;
    height: 70%;
    transform: rotate(-8deg);
    animation: strikeBolt 6s ease-in-out infinite 3s;
}

.bolt-3 {
    left: 50%;
    height: 50%;
    transform: rotate(3deg);
    animation: strikeBolt 8s ease-in-out infinite 5s;
}

@keyframes strikeBolt {

    0%,
    85%,
    100% {
        opacity: 0;
    }

    86% {
        opacity: 1;
        transform: scaleY(1.05) rotate(5deg);
    }

    87% {
        opacity: 0;
    }

    88% {
        opacity: 0.9;
        transform: scaleY(1.1) rotate(5deg);
    }

    90% {
        opacity: 0;
    }

    92% {
        opacity: 0.8;
        transform: scaleY(1) rotate(5deg);
    }

    95% {
        opacity: 0;
    }
}

/* Lightning flash - Deeper contrast */
.lightning-flash {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background: rgba(200, 220, 255, 0);
    animation: flashBg 6s ease-in-out infinite 0.5s;
}

.lightning-flash-2 {
    animation: flashBg 8s ease-in-out infinite 3s;
}

.lightning-flash-3 {
    animation: flashBg 10s ease-in-out infinite 5s;
}

@keyframes flashBg {

    0%,
    85%,
    100% {
        background: rgba(200, 220, 255, 0);
    }

    86% {
        background: rgba(200, 230, 255, 0.12);
    }

    87% {
        background: rgba(200, 220, 255, 0);
    }

    88% {
        background: rgba(200, 230, 255, 0.08);
    }

    90% {
        background: rgba(200, 220, 255, 0);
    }
}

/* Embers / Particles */
.particles-container {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--clr-accent);
    animation: particleFloat var(--pdur, 6s) ease-out infinite var(--pdelay, 0s);
    opacity: 0;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateY(-120vh) translateX(var(--px, 50px)) scale(0);
        opacity: 0;
    }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
    display: block;
    animation: fadeInDown 1s ease both;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 13vw, 11rem);
    line-height: 0.88;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: heroTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-headline .line-accent {
    -webkit-text-stroke: 2px var(--clr-accent);
    color: transparent;
    display: block;
    text-shadow: 0 0 40px rgba(255, 69, 0, 0.4);
}

.hero-headline .line-solid {
    display: block;
}

.hero-sub {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    max-width: 600px;
    margin: 2rem auto;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: fadeInUp 1s ease 1s both;
}

.hero-badge {
    position: absolute;
    bottom: 3rem;
    right: 5%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    padding: 1.2rem 1.8rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    animation: fadeIn 1.5s ease 1.5s both;
}

.hero-badge strong {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--clr-accent);
    letter-spacing: 4px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    animation: fadeIn 2s ease 2s both;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--clr-accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--clr-sub);
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ==============================================
   STATS BAR
   ============================================== */
.stats-bar {
    background: var(--clr-bg-2);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    padding: 2.5rem 5%;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--clr-accent);
    line-height: 1;
    letter-spacing: 2px;
}

.stat-sub {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-sub);
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--clr-border);
    margin: 0 auto;
}

/* ==============================================
   ABOUT SPLIT SECTION
   ============================================== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.split-image-wrap {
    position: relative;
    height: 600px;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.split-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.split-image-wrap:hover img {
    transform: scale(1.05);
}

.split-image-accent {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid var(--clr-accent);
    border-right: 3px solid var(--clr-accent);
}

.split-image-accent-tl {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--clr-accent);
    border-left: 3px solid var(--clr-accent);
}

.content-box .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--clr-accent), transparent);
    margin-top: 1rem;
}

.icon-list {
    margin: 2rem 0;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.icon-list li::before {
    content: '→';
    color: var(--clr-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ==============================================
   SERVICES GRID
   ============================================== */
.services-section {
    background: var(--clr-bg-2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 4rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: var(--clr-bg-3);
    padding: 3rem 2.5rem;
    border: 1px solid var(--clr-border);
    transition: var(--transition);
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(255, 69, 0, 0.3);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--clr-accent);
    transition: var(--transition);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(-5deg);
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-display);
    font-size: 4rem;
    opacity: 0.04;
    line-height: 1;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-card p {
    font-size: 0.9rem;
}

/* ==============================================
   GRAND OPENING BANNER
   ============================================== */
.event-banner {
    position: relative;
    overflow: hidden;
    padding: 8rem 5%;
    background: linear-gradient(135deg, #0a0200, #1a0500, #0a0200);
}

.event-banner-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 100%, rgba(255, 69, 0, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 0%, rgba(255, 100, 0, 0.1) 0%, transparent 50%);
    animation: eventBgPulse 6s ease-in-out infinite;
}

@keyframes eventBgPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.event-banner-smoke {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at bottom, rgba(60, 30, 10, 0.4) 0%, transparent 70%);
    animation: smokeRise2 10s ease-in-out infinite;
}

@keyframes smokeRise2 {
    0% {
        transform: translateY(10px);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-10px);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

.event-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.event-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 0.88;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.event-title .accent-line {
    -webkit-text-stroke: 2px var(--clr-accent);
    color: transparent;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-item {
    border-left: 3px solid var(--clr-accent);
    padding-left: 1.5rem;
}

.event-item .label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--clr-accent);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.event-item .value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #fff;
}

.event-item .sub {
    font-size: 0.85rem;
    color: var(--clr-sub);
    margin-top: 0.2rem;
}

/* ==============================================
   GALLERY PAGE
   ============================================== */
.gallery-section {
    padding: 2rem 0 6rem 0;
}

.gallery-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0 4rem 0;
}

.filter-btn {
    padding: 0.6rem 1.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid var(--clr-border);
    background: transparent;
    color: var(--clr-sub);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background: rgba(255, 69, 0, 0.08);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    gap: 15px;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--clr-bg-3);
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide-tall {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: brightness(0.85) saturate(1.1);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1) saturate(1.3);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

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

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.gallery-overlay span {
    font-size: 0.75rem;
    color: var(--clr-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

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

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--clr-accent);
    border-color: var(--clr-accent);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* ==============================================
   FULL-WIDTH CALLOUT (Marquee)
   ============================================== */
.marquee-section {
    background: var(--clr-accent);
    padding: 1.2rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.marquee-track .dot {
    color: rgba(0, 0, 0, 0.7);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==============================================
   CTA SECTION
   ============================================== */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 10rem 5%;
    text-align: center;
    background: linear-gradient(135deg, var(--clr-bg) 0%, #0d0d0d 100%);
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.12) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

.cta-section .bold-title {
    text-shadow: 0 0 60px rgba(255, 69, 0, 0.2);
    margin-bottom: 1.5rem;
}

/* ==============================================
   PAGE HEADER (Inner pages)
   ============================================== */
.page-header {
    height: 55vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, var(--clr-bg) 0%, rgba(3, 3, 3, 0.5) 60%, transparent 100%);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* ==============================================
   SHOP / SERVICES
   ============================================== */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.shop-card {
    background: var(--clr-bg-2);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.shop-card:hover {
    border-color: rgba(255, 69, 0, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.shop-card-img {
    height: 260px;
    overflow: hidden;
}

.shop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.shop-card-content {
    padding: 2rem 2.5rem 2.5rem;
}

.shop-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

/* ==============================================
   CONTACT
   ============================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
}

.contact-info-box {
    background: var(--clr-bg-2);
    padding: 3rem;
    border: 1px solid var(--clr-border);
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h4 {
    font-size: 0.7rem;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.google-form-container iframe {
    width: 100%;
    height: 800px;
    border: none;
    background: transparent;
}

/* ==============================================
   FOOTER
   ============================================== */
footer {
    padding: 5rem 5% 3rem;
    border-top: 1px solid var(--clr-border);
    background: var(--clr-bg-2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 300px;
    margin-top: 1rem;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
}

.footer-nav ul li {
    margin-bottom: 0.8rem;
}

.footer-nav ul li a {
    font-size: 0.9rem;
    color: var(--clr-sub);
}

.footer-nav ul li a:hover {
    color: var(--clr-white);
}

.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--clr-sub);
}

/* ==============================================
   SCROLL REVEAL ANIMATION
   ============================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ==============================================
   GENERAL ANIMATIONS
   ============================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroTextReveal {
    from {
        opacity: 0;
        transform: translateY(60px) skewY(3deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) skewY(0deg);
    }
}

/* ==============================================
   ABOUT PAGE — WHY CHOOSE US CARDS
   ============================================== */
.about-why-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-left: 3px solid var(--clr-accent);
    padding: 1.5rem 1.8rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.about-why-card:hover {
    border-color: var(--clr-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.about-why-card:hover::before {
    opacity: 1;
}

.about-why-icon {
    font-size: 1.4rem;
    color: var(--clr-accent);
    flex-shrink: 0;
    margin-top: 0.1rem;
    text-shadow: 0 0 14px rgba(255, 69, 0, 0.5);
}

.about-why-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    color: var(--clr-white);
}

.about-why-card p {
    font-size: 0.85rem;
    color: var(--clr-sub);
    margin: 0;
}

/* ==============================================
   ABOUT PAGE — VISION & MISSION CARDS
   ============================================== */
.about-vm-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 3rem;
    position: relative;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.about-vm-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--clr-accent);
    transition: var(--transition);
}

.about-vm-card:hover {
    border-color: rgba(255, 69, 0, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.about-vm-card:hover::after {
    width: 100%;
}

.about-vm-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 69, 0, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.about-vm-card:hover .about-vm-icon {
    background: rgba(255, 69, 0, 0.15);
    box-shadow: 0 0 24px rgba(255, 69, 0, 0.2);
}

.about-vm-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    color: var(--clr-white);
}

.about-vm-card p {
    font-size: 0.93rem;
    color: var(--clr-sub);
    margin: 0;
    line-height: 1.8;
}

.about-mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-mission-list li {
    font-size: 0.93rem;
    color: var(--clr-sub);
    padding: 0.8rem 0 0.8rem 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    line-height: 1.7;
}

.about-mission-list li:last-child {
    border-bottom: none;
}

.about-mission-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--clr-accent);
    font-size: 1.2rem;
    top: 0.75rem;
}

/* ==============================================
   ABOUT PAGE — FOUNDER SECTION
   ============================================== */
.about-founder-card {
    display: flex;
    gap: 3.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.about-founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--clr-accent), transparent);
}

.about-founder-avatar {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 69, 0, 0.05));
    border: 2px solid rgba(255, 69, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.1);
}

.about-founder-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-white);
    margin-bottom: 0.4rem;
}

.about-founder-role {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-accent);
    padding: 0.35rem 1rem;
    border: 1px solid rgba(255, 69, 0, 0.3);
    background: rgba(255, 69, 0, 0.06);
}

.about-founder-info p {
    font-size: 0.93rem;
    color: var(--clr-sub);
    line-height: 1.8;
    margin-bottom: 0;
}

.about-founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.8rem;
}

.about-founder-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.about-founder-tag:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

/* About split-section image style */
.split-image-wrap {
    position: relative;
    padding: 1rem;
    background: rgba(255, 69, 0, 0.05);
    border: 1px solid rgba(255, 69, 0, 0.15);
}

.split-image {
    position: relative;
    height: 550px;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.split-image:hover img {
    transform: scale(1.05);
}

/* ==============================================
   SERVICES PAGE — PROTECTION CARDS (SECTION 1)
   ============================================== */
.svc-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 69, 0, 0.12);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    overflow: hidden;
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--clr-accent);
    transition: var(--transition);
}

.svc-card:hover {
    border-color: rgba(255, 69, 0, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.svc-card:hover::after {
    width: 100%;
}

.svc-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 69, 0, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: var(--transition);
}

.svc-card:hover .svc-icon-wrap {
    background: rgba(255, 69, 0, 0.15);
    box-shadow: 0 0 28px rgba(255, 69, 0, 0.25);
}

.svc-num {
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    font-family: var(--font-display);
    font-size: 3.5rem;
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
}

.svc-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--clr-white);
    margin-bottom: 1rem;
}

.svc-desc {
    font-size: 0.88rem;
    color: var(--clr-sub);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.svc-link {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-accent);
    transition: var(--transition);
}

.svc-link:hover {
    letter-spacing: 3px;
}

/* ==============================================
   SERVICES PAGE — DETAILING CARDS (SECTION 2)
   ============================================== */
.svc-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 69, 0, 0.1);
    border-left: 3px solid var(--clr-accent);
    padding: 1.8rem 1.8rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.svc-detail-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.svc-detail-card:hover {
    border-color: rgba(255, 69, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
}

.svc-detail-card:hover::before {
    opacity: 1;
}

/* SVG icon wrapper for Section 2 */
.svc-detail-card .svc-detail-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 69, 0, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.svc-detail-card:hover .svc-detail-icon {
    background: rgba(255, 69, 0, 0.16);
    box-shadow: 0 0 28px rgba(255, 69, 0, 0.25);
    transform: rotate(5deg) scale(1.05);
}

.svc-detail-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--clr-white);
    margin-bottom: 0.5rem;
}

.svc-detail-card p {
    font-size: 0.87rem;
    color: var(--clr-sub);
    line-height: 1.8;
    margin: 0;
}

/* ==============================================
   SERVICES PAGE — ACCESSORIES CARDS (SECTION 3)
   ============================================== */
.svc-acc-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 69, 0, 0.1);
    padding: 2.5rem 2.2rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.svc-acc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05) 0%, transparent 55%);
    opacity: 0;
    transition: var(--transition);
}

.svc-acc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(to right, var(--clr-accent), transparent);
    transition: var(--transition);
}

.svc-acc-card:hover {
    border-color: rgba(255, 69, 0, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.4);
}

.svc-acc-card:hover::before {
    opacity: 1;
}

.svc-acc-card:hover::after {
    width: 100%;
}

/* SVG icon wrapper for Section 3 */
.svc-acc-card .svc-acc-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 69, 0, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: var(--transition);
}

.svc-acc-card:hover .svc-acc-icon {
    background: rgba(255, 69, 0, 0.16);
    box-shadow: 0 0 35px rgba(255, 69, 0, 0.28);
    transform: scale(1.08);
}

.svc-acc-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--clr-white);
    margin-bottom: 0.8rem;
}

.svc-acc-card p {
    font-size: 0.88rem;
    color: var(--clr-sub);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ==============================================
   CONTACT PAGE — INQUIRY FORM
   ============================================== */
.cform-group {
    margin-bottom: 1.5rem;
}

.cform-row {
    display: flex;
    gap: 1.5rem;
}

.cform-row .cform-group {
    flex: 1;
}

.cform-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-sub);
    margin-bottom: 0.6rem;
}

.cform-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.9rem 1.2rem;
    color: var(--clr-white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.cform-input:focus {
    outline: none;
    background: rgba(255, 69, 0, 0.05);
    border-color: var(--clr-accent);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.15);
}

.cform-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.cform-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,69,0,0.8)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 3rem;
}

.cform-select optgroup {
    background: #111;
    color: var(--clr-accent);
    font-style: normal;
    font-weight: 700;
}

.cform-select option {
    background: #1a1a1a;
    color: var(--clr-white);
    padding: 10px;
}

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

@media (max-width: 600px) {
    .cform-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .split-image-wrap {
        height: 350px;
    }

    .split-image {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item.wide,
    .gallery-item.wide-tall {
        grid-column: span 1;
    }

    .gallery-item.tall,
    .gallery-item.wide-tall {
        grid-row: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        display: none;
    }

    .about-founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem;
    }

    .about-founder-tags {
        justify-content: center;
    }

    .about-vm-card {
        padding: 2rem;
    }

    .svc-detail-card {
        flex-direction: column;
        gap: 1rem;
    }

    .svc-detail-card .svc-detail-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 4rem 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-why-card {
        flex-direction: column;
        gap: 0.8rem;
    }

    .svc-acc-card .svc-acc-icon {
        width: 68px;
        height: 68px;
    }
}
/* WhatsApp Float */
.wa-float { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4); z-index: 1000; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.wa-float:hover { transform: translateY(-5px); box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.6); color: #fff; }
.wa-float svg { width: 35px; height: 35px; }

/* Form Spinner */
.form-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
