/* ==========================================================================
   WebBucket Studios - Premium Styling System
   ========================================================================== */

/* Design Tokens & Theme Setup */
:root {
    /* Monochromatic Color Palette */
    --color-bg: #080808;
    --color-card-bg: rgba(18, 18, 18, 0.55);
    --color-card-border: rgba(255, 255, 255, 0.07);
    --color-card-hover-border: rgba(255, 255, 255, 0.22);

    /* Mono Accents – crisp whites & silvers */
    --color-accent-primary: #e8e8e8;
    --color-accent-silver: #b0b0b0;
    --color-accent-dim: #505050;
    --color-accent-glow: rgba(220, 220, 220, 0.12);

    --color-text-primary: #f2f2f2;
    --color-text-secondary: #8a8a8a;
    --color-text-muted: #4a4a4a;

    /* Font Families */
    --font-heading: 'Outfit', 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Layout Constants */
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --container-width: 1200px;

    /* Animation Speeds */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Premium Glows – mono toned */
    --glow-white: 0 0 30px rgba(220, 220, 220, 0.18);
    --glow-soft: 0 0 50px rgba(180, 180, 180, 0.08);
    --glass-blur: blur(16px);
}

/* Reset & Base System */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
    font-size: 16px;
    cursor: none;
}

/* Lenis Smooth Scroll Integration */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

*, *::before, *::after {
    cursor: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

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

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

ul {
    list-style: none;
}

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

/* ============================================================
   Custom Red Dot Cursor
   ============================================================ */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: #e8251a;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.05s ease, width 0.2s ease, height 0.2s ease, opacity 0.3s ease;
    mix-blend-mode: normal;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(232, 37, 26, 0.65);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    animation: cursor-idle-pulse 3s infinite ease-in-out;
}

.cursor-dot.hidden,
.cursor-ring.hidden {
    opacity: 0;
}

.cursor-ring.hovered {
    width: 50px;
    height: 50px;
    border-color: rgba(232, 37, 26, 0.9);
    background-color: rgba(232, 37, 26, 0.07);
    animation: none;
}

.cursor-dot.clicked {
    transform: translate(-50%, -50%) scale(0.6);
}

@keyframes cursor-idle-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.65; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.4; }
}

/* Scrollbar Design */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(180, 180, 180, 0.15);
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 220, 220, 0.3);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.hidden {
    display: none !important;
}

/* Background Animated Glows */
.bg-orbs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.28;
    mix-blend-mode: screen;
}

.bg-orb-1 {
    top: -10%;
    left: 10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.07) 0%, rgba(200, 200, 200, 0) 70%);
    animation: float-orb-1 25s infinite alternate ease-in-out;
}

.bg-orb-2 {
    bottom: -10%;
    right: 5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(160, 160, 160, 0.06) 0%, rgba(160, 160, 160, 0) 70%);
    animation: float-orb-2 30s infinite alternate ease-in-out;
}

.bg-orb-3 {
    top: 40%;
    right: -10%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(220, 220, 220, 0.05) 0%, rgba(220, 220, 220, 0) 70%);
    animation: float-orb-3 20s infinite alternate ease-in-out;
}

.bg-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black, transparent 85%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 85%);
}

/* Mouse-follow glow effect */
.mouse-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 220, 220, 0.04) 0%, rgba(220, 220, 220, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

/* Animations Keyframes */
@keyframes float-orb-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(8%, 5%) scale(1.15);
    }

    100% {
        transform: translate(-5%, 10%) scale(0.9);
    }
}

@keyframes float-orb-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-8%, -10%) scale(0.9);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

@keyframes float-orb-3 {
    0% {
        transform: translate(0, 0) scale(0.9);
    }

    50% {
        transform: translate(-5%, 8%) scale(1.15);
    }

    100% {
        transform: translate(8%, -5%) scale(1);
    }
}

/* Premium Typography Elements */
.text-gradient {
    background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-accent-silver) 60%, var(--color-accent-dim) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--color-accent-silver);
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    background: linear-gradient(to right, var(--color-accent-primary), var(--color-accent-silver));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-section .section-description {
    max-width: 780px;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.btn svg {
    transition: stroke 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(240,240,240,0.1) 0%, rgba(200,200,200,0.06) 100%);
    color: var(--color-text-primary);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: var(--glow-white);
    backdrop-filter: blur(10px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(232, 37, 26, 0.12) 0%, rgba(232, 37, 26, 0.05) 100%);
    border-color: rgba(232, 37, 26, 0.5);
    box-shadow: 0 0 40px rgba(232, 37, 26, 0.2), 0 8px 24px rgba(0,0,0,0.4);
}

.btn-primary:hover svg {
    stroke: #e8251a;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--color-text-primary);
    border: 1px solid var(--color-card-border);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background-color: rgba(232, 37, 26, 0.06);
    border-color: rgba(232, 37, 26, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(232, 37, 26, 0.15), 0 8px 24px rgba(0,0,0,0.3);
}

.btn-secondary:hover svg {
    stroke: #e8251a;
}

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

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon {
    margin-left: 8px;
    transition: transform var(--transition-normal), stroke 0.3s ease;
}

.btn-secondary:hover .btn-icon {
    transform: translateX(4px);
}

/* Badge component */
.badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent-primary);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px var(--color-accent-primary);
    animation: blink 1.5s infinite ease-in-out;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-accent-silver);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Header / Navigation Bar Styling */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

.site-header.sticky {
    height: 70px;
    background-color: rgba(7, 5, 18, 0.75);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--color-card-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
}

.logo-img {
    height: 46px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-slow), filter var(--transition-normal), opacity var(--transition-normal);
    opacity: 0.95;
    filter: brightness(1.1);
}

.logo:hover .logo-img {
    transform: scale(1.04);
    opacity: 1;
    filter: brightness(1.2) drop-shadow(0 0 12px rgba(255, 255, 255, 0.25));
}


.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: 8px 0;
}

/* Nav underline hover animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-accent-primary), var(--color-accent-silver));
    transition: width var(--transition-normal);
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger menu button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: var(--transition-normal);
}

/* Hero Section – Fullscreen Video */
.hero-section {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Fullscreen video background */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

/* Dark scrim over video so text stays readable */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8, 8, 8, 0.72) 0%,
        rgba(8, 8, 8, 0.55) 60%,
        rgba(8, 8, 8, 0.88) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px 24px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 720px;
}

/* Centre-aligned hero modifier (Bifrost-inspired) */
.hero-content--center {
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.12;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

/* Display-scale editorial headline */
.hero-title--display {
    font-size: clamp(2.5rem, 6.2vw, 4.4rem);
    line-height: 1.15;
    letter-spacing: -2px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 36px;
    max-width: 850px;
}

.hero-content--center .hero-description {
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions--center {
    justify-content: center;
    margin-bottom: 32px;
}

/* Proof / social stats line below CTA */
.hero-proof {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 8px;
}

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

/* ========================================================================
   Marquee Ticker Strip
   ======================================================================== */
.marquee-section {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--color-card-border);
    border-bottom: 1px solid var(--color-card-border);
    padding: 18px 0;
    background: rgba(255,255,255,0.018);
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 1;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 38s linear infinite;
}

.marquee-content {
    white-space: nowrap;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding-right: 0;
    display: inline-block;
}

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Services Grid Section */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    perspective: 1200px;
}

.service-card {
    position: relative;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-md);
    padding: 40px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: transform var(--transition-slow), border-color var(--transition-slow), box-shadow var(--transition-slow);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(220, 220, 220, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    transition: opacity var(--transition-normal);
    opacity: 0;
}

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

.service-card:hover {
    border-color: var(--color-card-hover-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(200, 200, 200, 0.06);
}

.service-icon-wrapper {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: transform var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(6deg);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(200, 200, 200, 0.08);
}

.service-card:hover .service-icon-wrapper svg {
    stroke: #e8251a;
}

/* Smooth stroke transition for all interactive SVG icons */
.service-icon-wrapper svg,
.carousel-btn svg,
.social-btn svg,
.footer-social-btn svg,
.contact-icon svg {
    transition: stroke 0.3s ease;
}

.text-accent-1 { color: #d0d0d0; }
.text-accent-2 { color: #b8b8b8; }
.text-accent-3 { color: #c8c8c8; }
.text-accent-4 { color: #e0e0e0; }
.text-accent-5 { color: #a8a8a8; }
.text-accent-6 { color: #d8d8d8; }

.service-card-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
    font-weight: 600;
    z-index: 1;
    letter-spacing: -0.2px;
}

.service-card-desc {
    font-size: 0.925rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
    z-index: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent-silver);
    z-index: 1;
    gap: 4px;
    transition: color var(--transition-normal), gap var(--transition-normal);
}

.service-link:hover {
    color: var(--color-text-primary);
    gap: 8px;
}

.link-arrow {
    transition: transform var(--transition-normal);
}

.service-card:hover .link-arrow {
    transform: translateX(6px);
}

/* Testimonials Carousel Section */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    overflow: hidden;
}

.testimonials-carousel {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    display: flex;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    margin-bottom: 20px;
    display: inline-flex;
    justify-content: center;
}

.text-accent-fade {
    color: rgba(200, 200, 200, 0.08);
}

.testimonial-text {
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--color-text-primary);
}

.approach-card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.approach-card-desc {
    font-size: 1.12rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220,220,220,0.15), rgba(160,160,160,0.08));
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-text-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 600;
}

.author-title {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 24px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-card-border);
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.carousel-btn:hover {
    background-color: rgba(220, 220, 220, 0.08);
    border-color: rgba(220, 220, 220, 0.35);
    color: var(--color-text-primary);
    transform: scale(1.05);
}

.carousel-btn:hover svg {
    stroke: #e8251a;
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-card-border);
    cursor: pointer;
    transition: var(--transition-normal);
}

.indicator.active {
    background-color: var(--color-accent-primary);
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(200, 200, 200, 0.4);
}

/* Parallax layer wrapper */
[data-parallax] {
    will-change: transform;
}

/* About Section & Stats styling */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    padding: 30px;
    border-radius: var(--radius-md);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.stat-icon-wrapper {
    color: var(--color-accent-silver);
    margin-bottom: 16px;
}

.about-card-title {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.about-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
}

.contact-description {
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-card-border);
    color: var(--color-accent-silver);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.contact-link {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-link:hover {
    color: var(--color-accent-primary);
}

.contact-address {
    font-size: 1.05rem;
    font-style: normal;
    color: var(--color-text-secondary);
}

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

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-card-border);
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    color: var(--color-text-secondary);
}

.social-btn:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--color-text-primary);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.social-btn:hover svg {
    stroke: #e8251a;
}

/* Glowing Form Fields styling */
.contact-form-wrapper {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    padding: 50px;
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.form-row {
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.form-input,
.form-select {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--color-text-primary);
    font-family: inherit;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-input:focus,
.form-select:focus {
    border-color: rgba(220, 220, 220, 0.4);
    box-shadow: 0 0 15px rgba(200, 200, 200, 0.1);
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.7rem;
    color: var(--color-text-secondary);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* Spinner & Button state */
.btn-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--color-text-primary);
    animation: spin 0.8s infinite linear;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-top: 20px;
}

.form-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: var(--color-card-border);
    margin: 60px 0 30px;
}

/* Schbang-Style Footer styling */
.site-footer {
    background-color: #04030a;
    border-top: 1px solid var(--color-card-border);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.site-footer .container {
    padding-left: 24px;
    padding-right: 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 0.8fr;
    gap: 60px;
}

/* Footer Brand */
.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.0;
    margin-bottom: 16px;
}

.footer-logo .logo-main {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.footer-logo .logo-sub {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 7px;
    color: #e8251a;
    text-transform: uppercase;
}

.footer-brand-tagline {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-brand-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.footer-brand-location svg {
    flex-shrink: 0;
    opacity: 0.8;
}

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

.footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--color-card-border);
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--color-text-secondary);
}

.footer-social-btn svg {
    width: 18px;
    height: 18px;
}

.footer-social-btn:hover {
    border-color: #e8251a;
    background-color: #e8251a;
    color: #fff;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 5px 15px rgba(232, 37, 26, 0.3);
}

.footer-social-btn:hover svg {
    stroke: #fff;
}

/* Big Logo Column */
.footer-big-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-huge-logo {
    max-width: 100%;
    height: auto;
    width: 280px; /* Big in size */
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-huge-logo:hover {
    opacity: 1;
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .footer-big-logo {
        justify-content: flex-start;
        margin-top: 20px;
    }
    .footer-huge-logo {
        width: 220px;
    }
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

/* Links Columns */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-link {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav-link:hover {
    color: #e8251a;
    transform: translateX(4px);
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.copyright {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.created-in-india {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #e8251a;
}

/* Responsive Footer columns */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Intersection Observer / GSAP Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    filter: blur(8px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Directional reveal variants */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    filter: blur(6px);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    filter: blur(6px);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

/* Staggered children delay for grid items */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.45s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.6s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.75s; }

/* Staggered form field reveals */
.contact-form .form-row:nth-child(1) { transition-delay: 0.1s; }
.contact-form .form-row:nth-child(2) { transition-delay: 0.2s; }
.contact-form .form-row:nth-child(3) { transition-delay: 0.3s; }
.contact-form .form-row:nth-child(4) { transition-delay: 0.4s; }

.about-stats-grid .stat-card:nth-child(1) { transition-delay: 0s; }
.about-stats-grid .stat-card:nth-child(2) { transition-delay: 0.12s; }
.about-stats-grid .stat-card:nth-child(3) { transition-delay: 0.24s; }
.about-stats-grid .stat-card:nth-child(4) { transition-delay: 0.36s; }

/* ========================================================================
   Fuel Your Brand — Editorial CTA Section
   ======================================================================== */
.fuel-section {
    border-top: 1px solid var(--color-card-border);
    position: relative;
    z-index: 1;
}

.fuel-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.fuel-heading {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-top: 16px;
}

.fuel-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.fuel-stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.fuel-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fuel-stat-icon {
    color: #e8251a;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 8px;
}

.fuel-stat-label {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-text-primary);
}

/* Initial load animation classes for Hero */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInIntro 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in.delay-1 {
    animation-delay: 0.15s;
}

.fade-in.delay-2 {
    animation-delay: 0.3s;
}

.fade-in.delay-3 {
    animation-delay: 0.45s;
}

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

/* ==========================================================================
   Instagram Feed Section
   ========================================================================== */
.instagram-section {
    border-top: 1px solid var(--color-card-border);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.instagram-feed-wrapper {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.instagram-feed-track {
    display: flex;
    gap: 16px;
    animation: insta-scroll 45s linear infinite;
    width: max-content;
}

.instagram-feed-track:hover {
    animation-play-state: paused;
}

.instagram-feed-item {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-card-border);
    cursor: pointer;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.instagram-feed-item:hover {
    transform: scale(1.04) translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(200, 200, 200, 0.06);
}

.instagram-feed-item img,
.instagram-feed-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.instagram-feed-item:hover img,
.instagram-feed-item:hover video {
    transform: scale(1.08);
}

/* Overlay gradient on hover */
.instagram-feed-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.instagram-feed-item:hover::after {
    opacity: 1;
}

/* Play icon overlay for videos */
.instagram-feed-item .video-play-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.instagram-feed-item .video-play-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
    stroke: none;
}

.instagram-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    min-height: 280px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.insta-loader {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-accent-silver);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.instagram-cta {
    margin-top: 40px;
}

@keyframes insta-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Instagram placeholder items for when API fails */
.insta-placeholder {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-placeholder svg {
    width: 40px;
    height: 40px;
    color: var(--color-text-muted);
    opacity: 0.4;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        text-align: center;
        padding: 60px 24px;
    }

    .hero-content {
        align-items: center;
        max-width: 100%;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .fuel-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fuel-heading {
        letter-spacing: -2px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 2.65rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Responsive navbar */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: rgba(8, 8, 8, 0.97);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--color-card-border);
        padding: 100px 40px;
        transition: var(--transition-slow);
        z-index: 1000;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
    }

    .nav-link {
        font-size: 1.15rem;
    }

    /* Menu active states for hamburger bars */
    .mobile-menu-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

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

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .hero-title--display {
        font-size: 2.1rem;
        letter-spacing: -1.5px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .fuel-stats-row {
        gap: 24px;
    }

    .instagram-feed-item {
        width: 220px;
        height: 220px;
    }

    .logo-img {
        height: 28px;
    }


}

/* Hide custom cursor on touch devices */
@media (hover: none) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    html, body, * {
        cursor: auto !important;
    }
}

/* Floating WhatsApp Integration */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 24px;
    right: 24px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: wa-pulse-mono 2s infinite, wa-entrance 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
}

.whatsapp-float:hover {
    background-color: #25D366;
    border-color: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    transform: translateY(-5px) scale(1.08);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
    fill: currentColor;
}

.whatsapp-float:hover svg {
    transform: rotate(10deg);
}

@keyframes wa-entrance {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes wa-pulse-mono {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 
                    0 0 0 0px rgba(255, 255, 255, 0.12);
    }
    70% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 
                    0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 
                    0 0 0 0px rgba(255, 255, 255, 0);
    }
}

/* Adjust position on small mobile screens to keep layout clean */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ========================================================================
   Parallax & Scroll Animation Enhancements
   ======================================================================== */

/* GPU-accelerated background orbs */
.bg-orb {
    will-change: transform;
}

/* Floating red accent dots for depth */
.parallax-accent-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #e8251a;
    opacity: 0.15;
    pointer-events: none;
    will-change: transform;
    z-index: 0;
}

/* Accessibility: Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-reveal,
    .scroll-reveal-left,
    .scroll-reveal-right {
        opacity: 0;
        transform: none !important;
        filter: none !important;
        transition: opacity 0.4s ease !important;
    }

    .scroll-reveal.revealed,
    .scroll-reveal-left.revealed,
    .scroll-reveal-right.revealed {
        opacity: 1;
    }

    .parallax-accent-dot {
        display: none;
    }

    html {
        scroll-behavior: auto;
    }
}