/**
 * CSL ENHANCED STYLESHEET
 * Premium construction company website with 2030-level refinement
 * Features: Glass morphism, iOS-style mobile navigation, smooth spring animations
 */

/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   Core color palette, shadows, and animation curves
   ============================================ */
:root {
    /* Brand Colors */
    --navy-deep: #0c2e4e;
    --navy-light: #1a4b73;
    --orange-red: #e1583e;
    --orange-warm: #ed6b48;
    --off-white: #f7f7f7;
    --gray-neutral: #d9d9d9;
    --gray-light: #e8e8e8;
    --emerald: #008062;
    --emerald-light: #00a077;
    
    /* Neutral Scale */
    --black: #0a0b0f;
    --charcoal: #1a1d23;
    --slate: #2d3039;
    --steel: #4a4d56;
    --ash: #6b6e76;
    --mist: #9ca0a8;
    --silver: #c5c9d1;
    --cloud: #e2e5ea;
    --pearl: #f1f3f6;
    --white: #ffffff;

    /* Gradients */
    --gradient-navy: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-light) 100%);
    --gradient-orange: linear-gradient(135deg, var(--orange-red) 0%, var(--orange-warm) 100%);
    --gradient-hero: linear-gradient(135deg,
            var(--navy-deep) 0%,
            rgba(12, 46, 78, 0.95) 40%,
            rgba(42, 66, 91, 0.85) 100%);

    /* Typography */
    --font-base: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

    /* Enhanced 2030-level shadows with deeper layering */
    --shadow-xs: 0 0 0 1px rgba(12, 46, 78, 0.04);
    --shadow-sm: 0 1px 3px rgba(12, 46, 78, 0.08), 0 0 0 1px rgba(12, 46, 78, 0.03);
    --shadow-md: 0 4px 8px -2px rgba(12, 46, 78, 0.1), 0 2px 4px -2px rgba(12, 46, 78, 0.06);
    --shadow-lg: 0 12px 24px -4px rgba(12, 46, 78, 0.12), 0 4px 8px -4px rgba(12, 46, 78, 0.08);
    --shadow-xl: 0 24px 48px -8px rgba(12, 46, 78, 0.16), 0 8px 16px -8px rgba(12, 46, 78, 0.08);
    --shadow-2xl: 0 32px 64px -12px rgba(12, 46, 78, 0.2), 0 0 0 1px rgba(12, 46, 78, 0.05);
    --shadow-inner: inset 0 2px 4px 0 rgba(12, 46, 78, 0.06);
    --shadow-glow: 0 0 48px rgba(225, 88, 62, 0.2);
    --shadow-glow-strong: 0 0 64px rgba(225, 88, 62, 0.3), 0 0 128px rgba(225, 88, 62, 0.15);

    /* Apple-inspired border radius scale */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-3xl: 28px;
    --radius-full: 9999px;

    /* Spring-based easing functions for natural motion */
    --ease-swift: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   BASE STYLES & RESET
   Foundational layout and typography
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-base);
    line-height: 1.6;
    color: var(--slate);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animated gradient background mesh with parallax effect */
body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(225, 88, 62, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(12, 46, 78, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 128, 98, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: float-background 30s ease-in-out infinite;
}

@keyframes float-background {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, -2%) rotate(1deg); }
    66% { transform: translate(-2%, 2%) rotate(-1deg); }
}

/* Typography scale with optical sizing */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-base);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    color: var(--ash);
    font-weight: 400;
    line-height: 1.65;
    font-size: 0.9375rem;
}

/* ============================================
   LAYOUT UTILITIES
   Container and section spacing
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

/* ============================================
   NAVIGATION - Desktop & Scroll States
   Floating glass navigation bar with dynamic styling
   ============================================ */
.nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.5s var(--ease-spring);
    width: calc(100% - 3rem);
    max-width: 1100px;
}

.nav-inner {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 0.5px solid rgba(226, 229, 234, 0.6);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.5) inset,
        0 8px 32px -8px rgba(12, 46, 78, 0.12),
        0 0 0 0.5px rgba(12, 46, 78, 0.05);
    transition: all 0.5s var(--ease-spring);
}

/* Scrolled state with darker glass effect */
.nav.scrolled {
    top: 1rem;
    width: min(90%, 900px);
}

.nav.scrolled .nav-inner {
    background: rgba(12, 46, 78, 0.96);
    border-color: rgba(42, 66, 91, 0.4);
    padding: 0.625rem 1.25rem;
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.1) inset,
        0 20px 40px -8px rgba(12, 46, 78, 0.3),
        0 0 0 0.5px rgba(12, 46, 78, 0.2);
}

/* Logo color inversion on scroll */
.logo-dark {
    display: none;
}

.nav.scrolled .logo-light {
    display: none;
}

.nav.scrolled .logo-dark {
    display: block;
}

/* Logo container with smooth hover */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.4s var(--ease-spring);
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-container:active {
    transform: scale(0.98);
}

.logo-image {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Desktop navigation links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-link {
    color: var(--steel);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s var(--ease-spring);
    position: relative;
    padding: 0.625rem 1.125rem;
    border-radius: var(--radius-full);
}

/* Hover background effect for nav links */
.nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(225, 88, 62, 0.08);
    border-radius: var(--radius-full);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s var(--ease-spring);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange-red);
}

.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

/* Active indicator dot with pulse animation */
.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0.375rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--orange-red);
    border-radius: var(--radius-full);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(225, 88, 62, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.3);
        opacity: 0.8;
        box-shadow: 0 0 0 4px rgba(225, 88, 62, 0);
    }
}

/* Scrolled nav link color changes */
.nav.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.nav.scrolled .nav-link:hover,
.nav.scrolled .nav-link.active {
    color: var(--orange-red);
}

/* Mobile toggle button - hidden on desktop */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--steel);
    cursor: pointer;
    padding: 0.5rem;
}

/* ============================================
   MOBILE NAVIGATION - iOS-Style Bottom Sheet
   Glass morphism drawer with gesture support
   ============================================ */

/* Backdrop overlay for mobile navigation */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 46, 78, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-spring);
    z-index: 998;
    pointer-events: none;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Bottom sheet container with glass effect */
.mobile-nav-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
    padding: 1.5rem 1.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-spring);
    z-index: 999;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 
        0 0 0 1px rgba(226, 229, 234, 0.8) inset,
        0 -8px 32px -4px rgba(12, 46, 78, 0.15);
    will-change: transform;
}

.mobile-nav-sheet.active {
    transform: translateY(0);
}

/* Visual handle indicator for swipe gesture */
.mobile-nav-handle {
    width: 40px;
    height: 4px;
    background: var(--silver);
    border-radius: var(--radius-full);
    margin: 0 auto 1.5rem;
    transition: all 0.3s var(--ease-spring);
}

.mobile-nav-sheet.active .mobile-nav-handle {
    background: var(--mist);
}

/* Mobile navigation header with close button */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--cloud);
}

.mobile-nav-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 77, 86, 0.08);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--steel);
    cursor: pointer;
    transition: all 0.3s var(--ease-spring);
}

.mobile-nav-close:hover {
    background: rgba(225, 88, 62, 0.1);
    color: var(--orange-red);
    transform: rotate(90deg);
}

/* Mobile navigation links list */
.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-spring);
}

/* Staggered entrance animation for nav items */
.mobile-nav-sheet.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-sheet.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav-sheet.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav-sheet.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav-sheet.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav-sheet.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav-sheet.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.3s; }

/* Individual mobile nav link styling */
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s var(--ease-spring);
    border: 1px solid transparent;
}

.mobile-nav-link:active {
    transform: scale(0.98);
}

/* Icon container in mobile nav */
.mobile-nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 88, 62, 0.1);
    border-radius: var(--radius-lg);
    color: var(--orange-red);
    transition: all 0.3s var(--ease-spring);
}

/* Arrow indicator in mobile nav */
.mobile-nav-arrow {
    margin-left: auto;
    color: var(--mist);
    transition: all 0.3s var(--ease-spring);
    opacity: 0;
    transform: translateX(-10px);
}

/* Hover state for mobile nav links */
.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: rgba(225, 88, 62, 0.05);
    border-color: rgba(225, 88, 62, 0.2);
    transform: translateX(4px);
}

.mobile-nav-link:hover .mobile-nav-icon {
    background: var(--gradient-orange);
    color: var(--white);
    transform: rotate(5deg) scale(1.05);
}

.mobile-nav-link:hover .mobile-nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   BUTTONS - Enhanced with Magnetic Effect
   Premium button styles with smooth interactions
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.4s var(--ease-spring);
    cursor: pointer;
    border: none;
    font-family: var(--font-base);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect on button hover */
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-smooth);
}

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

.btn:active {
    transform: scale(0.98);
}

/* Primary button with gradient and glow */
.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: 
        0 0 0 1px rgba(225, 88, 62, 0.1) inset,
        0 4px 12px -2px rgba(225, 88, 62, 0.35),
        0 8px 24px -4px rgba(225, 88, 62, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 1px rgba(225, 88, 62, 0.2) inset,
        0 8px 24px -2px rgba(225, 88, 62, 0.4),
        0 16px 40px -4px rgba(225, 88, 62, 0.3);
}

/* Secondary button with subtle styling */
.btn-secondary {
    background: var(--white);
    color: var(--navy-deep);
    border: 1px solid var(--cloud);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--off-white);
    transform: translateY(-1px);
    border-color: var(--orange-red);
    box-shadow: var(--shadow-md);
}

/* Ghost button with glass effect */
.btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.3) inset,
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.4) inset,
        0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   BACK TO TOP BUTTON
   Floating action button with glow effect
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--gradient-orange);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.5s var(--ease-spring);
    box-shadow: 
        0 0 0 1px rgba(225, 88, 62, 0.2) inset,
        0 8px 24px -4px rgba(225, 88, 62, 0.4),
        0 16px 48px -8px rgba(225, 88, 62, 0.2);
    z-index: 999;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 0 0 1px rgba(225, 88, 62, 0.3) inset,
        0 12px 32px -4px rgba(225, 88, 62, 0.5),
        0 24px 64px -8px rgba(225, 88, 62, 0.3),
        var(--shadow-glow-strong);
}

.back-to-top:active {
    transform: translateY(-4px) scale(1);
}

/* Glow halo effect on hover */
.back-to-top::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-2xl);
    background: var(--gradient-orange);
    opacity: 0;
    transition: opacity 0.4s var(--ease-spring);
    z-index: -1;
    filter: blur(12px);
}

.back-to-top:hover::after {
    opacity: 0.6;
}

/* ============================================
   HERO SECTION
   Full viewport hero with parallax background
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

/* Parallax background image */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80") center / cover;
    opacity: 0.12;
    z-index: 1;
    animation: subtle-zoom 30s ease-in-out infinite;
}

@keyframes subtle-zoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Gradient overlay with animated shift */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        rgba(225, 88, 62, 0.1) 0%, 
        transparent 40%, 
        rgba(12, 46, 78, 0.1) 100%);
    z-index: 2;
    animation: gradient-shift 20s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { transform: translateX(0) translateY(0); opacity: 1; }
    33% { transform: translateX(-10px) translateY(10px); opacity: 0.9; }
    66% { transform: translateX(10px) translateY(-10px); opacity: 0.9; }
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 800px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideUp 1s var(--ease-spring) 0.2s forwards;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0;
    animation: slideUp 1s var(--ease-spring) 0.4s forwards;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp 1s var(--ease-spring) 0.6s forwards;
}

/* Slide up entrance animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   STATISTICS SECTION
   Animated counter cards with 3D hover
   ============================================ */
.stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80");
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
}

.stats::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(225, 88, 62, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 70%, rgba(12, 46, 78, 0.08) 0%, transparent 25%);
    pointer-events: none;
}

.stats-container {
    position: relative;
    z-index: 1;
}

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

/* Enhanced stat cards with deeper 3D effect */
.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--radius-2xl);
    transition: all 0.5s var(--ease-spring);
    background: var(--white);
    border: 1px solid var(--cloud);
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.5) inset,
        0 4px 20px -4px rgba(12, 46, 78, 0.08);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Top accent line on stat cards */
.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-spring);
}

/* Gradient overlay on hover */
.stat-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(225, 88, 62, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-spring);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-12px) rotateX(2deg);
    border-color: var(--orange-red);
    box-shadow: 
        0 0 0 0.5px rgba(225, 88, 62, 0.2) inset,
        0 20px 60px -8px rgba(225, 88, 62, 0.2),
        0 0 80px -20px rgba(225, 88, 62, 0.15);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(225, 88, 62, 0.1));
}

.stat-label {
    color: var(--ash);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ============================================
   ABOUT SECTION
   Two-column layout with feature items
   ============================================ */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

/* Accent underline for section headers */
.about-content h2::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: var(--radius-full);
}

.about-content p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.about-features {
    display: grid;
    gap: 1rem;
}

/* Feature item cards with glass effect and border accent */
.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border-left: 3px solid var(--orange-red);
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.8) inset,
        0 4px 12px -2px rgba(12, 46, 78, 0.06);
    transition: all 0.4s var(--ease-spring);
}

.feature-item:hover {
    transform: translateX(6px);
    box-shadow: 
        0 0 0 0.5px rgba(225, 88, 62, 0.2) inset,
        0 8px 24px -4px rgba(225, 88, 62, 0.12);
    background: linear-gradient(135deg, rgba(225, 88, 62, 0.03) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-orange);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 
        0 0 0 1px rgba(225, 88, 62, 0.1) inset,
        0 4px 12px -2px rgba(225, 88, 62, 0.3);
}

.feature-text {
    color: var(--slate);
    font-weight: 500;
    font-size: 0.9375rem;
}

/* ============================================
   SERVICES SECTION
   Grid of service cards with 3D tilt
   ============================================ */
.services {
    background: var(--off-white);
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--ash);
    margin-top: 1.5rem;
}

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

/* Premium service cards with radial gradient hover */
.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--cloud);
    transition: all 0.5s var(--ease-spring);
    cursor: pointer;
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.5) inset,
        0 4px 20px -4px rgba(12, 46, 78, 0.08);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Radial gradient overlay on hover */
.service-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(225, 88, 62, 0.06) 0%, transparent 70%);
    transition: all 0.6s var(--ease-smooth);
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    top: -100%;
    left: -100%;
}

.service-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 
        0 0 0 0.5px rgba(225, 88, 62, 0.2) inset,
        0 20px 60px -8px rgba(225, 88, 62, 0.15),
        0 0 80px -20px rgba(225, 88, 62, 0.1);
    border-color: var(--orange-red);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-orange);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.4s var(--ease-spring);
    box-shadow: 
        0 0 0 1px rgba(225, 88, 62, 0.1) inset,
        0 4px 12px -2px rgba(225, 88, 62, 0.3);
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.08);
    box-shadow: 
        0 0 0 1px rgba(225, 88, 62, 0.2) inset,
        0 8px 24px -4px rgba(225, 88, 62, 0.4),
        var(--shadow-glow);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.service-category {
    font-size: 0.75rem;
    color: var(--orange-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-description {
    color: var(--ash);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.service-features {
    display: grid;
    gap: 0.75rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--steel);
    font-weight: 500;
}

/* Checkmark badge for service features */
.service-feature::before {
    content: "✓";
    color: var(--emerald);
    font-weight: 700;
    width: 20px;
    height: 20px;
    background: rgba(0, 128, 98, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ============================================
   CTA SECTION
   Full-width call-to-action with glass stats
   ============================================ */
.cta {
    background: var(--gradient-navy);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80") center / cover;
    opacity: 0.08;
    z-index: 1;
}

.cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(12, 46, 78, 0.95) 0%,
            rgba(26, 75, 115, 0.92) 50%,
            rgba(12, 46, 78, 0.95) 100%);
    backdrop-filter: blur(2px);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: clamp(1.875rem, 4vw, 2.75rem);
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Glass morphism stat cards in CTA section */
.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.cta-stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.2) inset,
        0 8px 32px -4px rgba(0, 0, 0, 0.3);
    transition: all 0.5s var(--ease-spring);
}

.cta-stat:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-8px);
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.3) inset,
        0 20px 60px -8px rgba(225, 88, 62, 0.3),
        0 0 80px -20px rgba(225, 88, 62, 0.2);
    border-color: rgba(225, 88, 62, 0.3);
}

.cta-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.2));
}

.cta-stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   PROJECTS SECTION
   Portfolio grid with enhanced hover states
   ============================================ */
.projects {
    background: var(--white);
    padding: 6rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Project cards with 3D depth on hover */
.project-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--cloud);
    transition: all 0.5s var(--ease-spring);
    cursor: pointer;
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.5) inset,
        0 4px 20px -4px rgba(12, 46, 78, 0.08);
    position: relative;
    transform-style: preserve-3d;
}

/* "View Details" button appears on hover */
.project-card::after {
    content: "View Details →";
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: var(--white);
    padding: 0.625rem 1.125rem;
    border-radius: var(--radius-lg);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--orange-red);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-spring);
    box-shadow: 
        0 4px 12px -2px rgba(12, 46, 78, 0.1);
    z-index: 2;
}

.project-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 
        0 0 0 0.5px rgba(12, 46, 78, 0.1) inset,
        0 24px 72px -12px rgba(12, 46, 78, 0.18),
        0 0 80px -20px rgba(12, 46, 78, 0.1);
}

.project-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-spring);
}

.project-card:hover .project-image {
    transform: scale(1.08);
}

/* Gradient overlay on project images */
.project-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 46, 78, 0.8) 0%, transparent 60%);
    z-index: 1;
}

.project-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(225, 88, 62, 0.95);
    backdrop-filter: blur(20px);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 2;
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.2) inset,
        0 4px 12px -2px rgba(225, 88, 62, 0.4);
}

.project-content {
    padding: 2rem;
}

.project-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.project-description {
    color: var(--ash);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--cloud);
}

.project-location {
    color: var(--mist);
    font-size: 0.8125rem;
    font-weight: 500;
}

.project-year {
    color: var(--orange-red);
    font-size: 0.8125rem;
    font-weight: 600;
}

/* ============================================
   TEAM SECTION
   Team member cards with avatar animation
   ============================================ */
.team {
    padding: 6rem 0;
    background: var(--off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--cloud);
    transition: all 0.5s var(--ease-spring);
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.5) inset,
        0 4px 20px -4px rgba(12, 46, 78, 0.08);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 0 0 0.5px rgba(225, 88, 62, 0.2) inset,
        0 20px 60px -8px rgba(12, 46, 78, 0.12),
        0 0 40px -10px rgba(225, 88, 62, 0.1);
    border-color: var(--orange-red);
}

.member-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-orange);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 
        0 0 0 1px rgba(225, 88, 62, 0.1) inset,
        0 8px 24px -4px rgba(225, 88, 62, 0.3);
    transition: all 0.5s var(--ease-spring);
    position: relative;
}

/* Ring animation on avatar hover */
.member-avatar::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(225, 88, 62, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s var(--ease-spring);
}

.team-member:hover .member-avatar::after {
    opacity: 1;
    inset: -10px;
}

.team-member:hover .member-avatar {
    transform: scale(1.08);
    box-shadow: 
        0 0 0 1px rgba(225, 88, 62, 0.2) inset,
        0 12px 32px -4px rgba(225, 88, 62, 0.4),
        var(--shadow-glow);
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--orange-red);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.member-bio {
    color: var(--ash);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   Tabbed accordion with search functionality
   ============================================ */
.faq {
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    padding: 6rem 0;
}

.faq__search {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.faq__search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.faq__search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mist);
    font-size: 1.25rem;
    pointer-events: none;
}

.faq__search-input {
    width: 100%;
    padding: 1.25rem 4rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--cloud);
    background-color: var(--white);
    font-size: 1rem;
    transition: all 0.4s var(--ease-spring);
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.5) inset,
        0 4px 12px -2px rgba(12, 46, 78, 0.06);
    font-family: var(--font-base);
}

.faq__search-input:focus {
    outline: none;
    border-color: var(--orange-red);
    box-shadow: 
        0 0 0 1px var(--orange-red) inset,
        0 0 0 4px rgba(225, 88, 62, 0.1),
        0 8px 24px -4px rgba(225, 88, 62, 0.1);
}

.faq__search-clear {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mist);
    font-size: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-spring);
    padding: 0.5rem;
    border-radius: var(--radius-md);
}

.faq__search-clear:hover {
    background: rgba(0, 0, 0, 0.05);
}

.faq__search-clear.active {
    opacity: 1;
    visibility: visible;
}

.faq__tabs {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.faq__tab-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--cloud);
    padding-bottom: 0.5rem;
}

.faq__tab-btn {
    position: relative;
    padding: 0.875rem 1.75rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--steel);
    cursor: pointer;
    transition: all 0.4s var(--ease-spring);
    font-family: var(--font-base);
    font-size: 0.9375rem;
}

/* Animated underline for active tab */
.faq__tab-btn::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: var(--radius-full);
    transition: width 0.4s var(--ease-spring);
}

.faq__tab-btn:hover {
    color: var(--orange-red);
    background: rgba(225, 88, 62, 0.06);
}

.faq__tab-btn.active {
    color: var(--orange-red);
    background: rgba(225, 88, 62, 0.1);
}

.faq__tab-btn.active::after {
    width: 2.5rem;
}

.faq__tab-pane {
    display: none;
}

.faq__tab-pane.active {
    display: block;
    animation: fadeIn 0.6s var(--ease-spring);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* FAQ item cards with enhanced styling */
.faq__item {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.5) inset,
        0 4px 12px -2px rgba(12, 46, 78, 0.06);
    transition: all 0.4s var(--ease-spring);
    border: 1px solid var(--cloud);
}

.faq__item:hover {
    box-shadow: 
        0 0 0 0.5px rgba(12, 46, 78, 0.1) inset,
        0 8px 24px -4px rgba(12, 46, 78, 0.08);
    transform: translateY(-2px);
}

.faq__item.active {
    border-color: var(--orange-red);
    box-shadow: 
        0 0 0 0.5px rgba(225, 88, 62, 0.2) inset,
        0 12px 32px -4px rgba(225, 88, 62, 0.12);
}

.faq__question {
    position: relative;
    padding: 1.75rem 2rem;
    padding-right: 4rem;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: none;
    text-align: left;
    font-family: var(--font-base);
    transition: all 0.3s var(--ease-spring);
}

.faq__question:hover {
    background: rgba(225, 88, 62, 0.02);
}

.faq__question h3 {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: color 0.3s var(--ease-spring);
}

.faq__item.active .faq__question h3 {
    color: var(--orange-red);
}

.faq__icon {
    position: absolute;
    right: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mist);
    transition: all 0.4s var(--ease-spring);
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.faq__item.active .faq__icon {
    transform: translateY(-50%) rotate(180deg);
    color: var(--orange-red);
    background: rgba(225, 88, 62, 0.1);
}

/* Smooth collapsible answer with grid animation */
.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.5s var(--ease-spring);
}

.faq__item.active .faq__answer {
    grid-template-rows: 1fr;
}

.faq__answer-inner {
    min-height: 0;
    padding: 0 2rem;
}

.faq__item.active .faq__answer-inner {
    padding-bottom: 1.75rem;
}

.faq__answer p {
    color: var(--ash);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.faq__answer p:last-child {
    margin-bottom: 0;
}

/* No results state */
.faq__no-results {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.5) inset,
        0 4px 12px -2px rgba(12, 46, 78, 0.06);
    margin: 0 auto;
    max-width: 500px;
    display: none;
}

.faq__no-results.active {
    display: block;
    animation: fadeIn 0.6s var(--ease-spring);
}

.faq__no-results-icon {
    font-size: 3rem;
    color: var(--cloud);
    margin-bottom: 1rem;
}

.faq__no-results h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: var(--steel);
}

.faq__no-results p {
    color: var(--ash);
    margin-bottom: 1.5rem;
}

/* FAQ CTA card */
.faq__cta {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.faq__cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.5) inset,
        0 12px 32px -4px rgba(12, 46, 78, 0.1);
    transition: all 0.5s var(--ease-spring);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--cloud);
}

.faq__cta-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-orange);
}

.faq__cta-content:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 0 0 0.5px rgba(225, 88, 62, 0.2) inset,
        0 24px 72px -12px rgba(12, 46, 78, 0.15);
    border-color: var(--orange-red);
}

.faq__cta-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
}

.faq__cta-content p {
    color: var(--ash);
    margin-bottom: 1.75rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   CONTACT SECTION
   Form with floating contact cards
   ============================================ */
.contact {
    padding: 6rem 0;
    background: var(--off-white);
}

.contact-grid {
    position: relative;
    margin-top: 3rem;
}

.contact-info {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: auto;
    max-width: 360px;
}

/* Floating contact cards with dancing animation */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: var(--radius-2xl);
    transition: all 0.5s var(--ease-spring);
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.8) inset,
        0 12px 40px -8px rgba(12, 46, 78, 0.15);
    border: 1px solid rgba(226, 229, 234, 0.8);
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 0 0 0.5px rgba(225, 88, 62, 0.2) inset,
        0 24px 72px -12px rgba(225, 88, 62, 0.2),
        0 0 80px -20px rgba(225, 88, 62, 0.15);
    border-color: var(--orange-red);
    animation: none !important;
}

/* Staggered floating animations for each contact item */
.contact-item:nth-child(1) {
    margin-left: 0;
    animation: float-dance-1 6s ease-in-out infinite;
}

.contact-item:nth-child(2) {
    margin-left: 2rem;
    animation: float-dance-2 7s ease-in-out infinite 1s;
}

.contact-item:nth-child(3) {
    margin-left: 4rem;
    animation: float-dance-3 6.5s ease-in-out infinite 2s;
}

@keyframes float-dance-1 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-12px) translateX(8px) rotate(0.8deg);
    }
    50% {
        transform: translateY(-6px) translateX(-5px) rotate(-0.5deg);
    }
    75% {
        transform: translateY(-15px) translateX(4px) rotate(0.6deg);
    }
}

@keyframes float-dance-2 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    30% {
        transform: translateY(-10px) translateX(-6px) rotate(-0.6deg);
    }
    60% {
        transform: translateY(-18px) translateX(5px) rotate(0.7deg);
    }
    85% {
        transform: translateY(-8px) translateX(-4px) rotate(-0.3deg);
    }
}

@keyframes float-dance-3 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    20% {
        transform: translateY(-14px) translateX(6px) rotate(0.9deg);
    }
    55% {
        transform: translateY(-9px) translateX(-7px) rotate(-0.7deg);
    }
    80% {
        transform: translateY(-16px) translateX(3px) rotate(0.4deg);
    }
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-orange);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 
        0 0 0 1px rgba(225, 88, 62, 0.1) inset,
        0 4px 12px -2px rgba(225, 88, 62, 0.3);
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-details h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.375rem;
}

.contact-details p {
    color: var(--ash);
    font-size: 0.8125rem;
    line-height: 1.4;
}

/* Optimized email link styling */
.contact-details a {
    color: var(--orange-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s var(--ease-spring);
    display: inline-block;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.contact-details a:hover {
    color: var(--orange-warm);
    transform: translateX(2px);
}

/* Contact form container */
.contact-form {
    background: var(--white);
    padding: 3.5rem;
    padding-left: min(48%, 480px);
    border-radius: var(--radius-2xl);
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.5) inset,
        0 8px 32px -8px rgba(12, 46, 78, 0.08);
    border: 1px solid var(--cloud);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.9375rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--cloud);
    border-radius: var(--radius-lg);
    font-family: var(--font-base);
    font-size: 0.9375rem;
    transition: all 0.4s var(--ease-spring);
    background: var(--white);
}

/* Enhanced focus states with elastic animation */
.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--orange-red);
    box-shadow: 
        0 0 0 1px var(--orange-red) inset,
        0 0 0 4px rgba(225, 88, 62, 0.1),
        0 8px 24px -4px rgba(225, 88, 62, 0.1);
    transform: scale(1.01);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

/* ============================================
   COOKIE CONSENT BANNER
   Glass morphism banner with smooth entrance
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    padding: 2.5rem 3rem;
    z-index: 9999;
    border-radius: var(--radius-2xl);
    transform: translateY(calc(100% + 2rem));
    transition: transform 0.7s var(--ease-spring);
    box-shadow:
        0 0 0 1px rgba(12, 46, 78, 0.08) inset,
        0 24px 72px -12px rgba(12, 46, 78, 0.2),
        0 0 0 0.5px rgba(12, 46, 78, 0.05);
    border: 1px solid rgba(226, 229, 234, 0.8);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cookie-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(225, 88, 62, 0.12) 0%, rgba(237, 107, 72, 0.12) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(225, 88, 62, 0.2);
    box-shadow: 
        0 0 0 0.5px rgba(225, 88, 62, 0.1) inset,
        0 4px 12px -2px rgba(225, 88, 62, 0.15);
}

.cookie-icon-wrapper i {
    color: var(--orange-red);
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.cookie-text p {
    color: var(--steel);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

.cookie-text a {
    color: var(--orange-red);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s var(--ease-spring);
    position: relative;
    padding-bottom: 1px;
}

/* Underline animation on link hover */
.cookie-text a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--orange-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-spring);
}

.cookie-text a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    border: none;
    transition: all 0.4s var(--ease-spring);
    font-family: var(--font-base);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.cookie-btn-accept {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: 
        0 0 0 1px rgba(225, 88, 62, 0.1) inset,
        0 4px 12px -2px rgba(225, 88, 62, 0.3);
}

.cookie-btn-accept:hover {
    box-shadow: 
        0 0 0 1px rgba(225, 88, 62, 0.2) inset,
        0 8px 24px -4px rgba(225, 88, 62, 0.4);
    transform: translateY(-2px);
}

.cookie-btn-accept:active {
    transform: translateY(0);
}

.cookie-btn-decline {
    background: rgba(74, 77, 86, 0.08);
    color: var(--steel);
    border: none;
}

.cookie-btn-decline:hover {
    background: rgba(74, 77, 86, 0.14);
    color: var(--charcoal);
}

/* ============================================
   MODAL STYLES
   Full-screen modals with glass backdrop
   ============================================ */
.cookie-modal,
.project-modal {
    position: fixed;
    inset: 0;
    background: rgba(12, 46, 78, 0.96);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.5s var(--ease-spring);
}

.cookie-modal.active,
.project-modal.active {
    display: flex;
    opacity: 1;
}

.cookie-modal-content,
.project-modal-content {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: 
        0 0 0 0.5px rgba(255, 255, 255, 0.5) inset,
        0 48px 128px -24px rgba(12, 46, 78, 0.3);
    transform: scale(0.9);
    transition: transform 0.5s var(--ease-spring);
}

.cookie-modal.active .cookie-modal-content,
.project-modal.active .project-modal-content {
    transform: scale(1);
}

.cookie-modal-content {
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 3.5rem;
    position: relative;
}

.project-modal-content {
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.cookie-modal-close,
.project-modal-close {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: var(--radius-lg);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s var(--ease-spring);
    color: var(--steel);
    z-index: 1;
    box-shadow: 
        0 4px 12px -2px rgba(12, 46, 78, 0.1);
}

.cookie-modal-close:hover,
.project-modal-close:hover {
    background: var(--orange-red);
    color: var(--white);
    transform: rotate(90deg) scale(1.05);
    box-shadow: 
        0 8px 24px -4px rgba(225, 88, 62, 0.3);
}

/* Project modal specific styles */
.project-modal-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.project-modal-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 46, 78, 0.85) 0%, transparent 50%);
}

.project-modal-header {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    color: var(--white);
    z-index: 1;
}

.project-modal-tag {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    box-shadow: 
        0 4px 12px -2px rgba(225, 88, 62, 0.4);
}

.project-modal-title {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.project-modal-meta {
    display: flex;
    gap: 2.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.project-modal-body {
    padding: 3rem;
}

.project-modal-section {
    margin-bottom: 2.5rem;
}

.project-modal-section:last-child {
    margin-bottom: 0;
}

.project-modal-section h3 {
    color: var(--charcoal);
    margin-bottom: 1.25rem;
    font-size: 1.375rem;
}

.project-modal-section p {
    color: var(--ash);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.project-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.project-detail-item {
    display: flex;
    align-items: start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: var(--radius-xl);
    border-left: 3px solid var(--orange-red);
    box-shadow: 
        0 4px 12px -2px rgba(12, 46, 78, 0.04);
}

.project-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-orange);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 
        0 0 0 1px rgba(225, 88, 62, 0.1) inset,
        0 4px 12px -2px rgba(225, 88, 62, 0.3);
}

.project-detail-content h4 {
    font-size: 0.9375rem;
    color: var(--steel);
    margin-bottom: 0.375rem;
    font-weight: 600;
}

.project-detail-content p {
    font-size: 1.0625rem;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 0;
}

.project-features-list {
    display: grid;
    gap: 0.875rem;
    margin-top: 1rem;
}

.project-feature-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cloud);
    box-shadow: 
        0 2px 8px -2px rgba(12, 46, 78, 0.04);
}

.project-feature-item::before {
    content: "✓";
    color: var(--emerald);
    font-weight: 700;
    width: 24px;
    height: 24px;
    background: rgba(0, 128, 98, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   Site footer with gradient background
   ============================================ */
.footer {
    background: var(--gradient-navy);
    color: var(--white);
    padding: 5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-red), transparent);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    height: 95px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.375rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-download {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.4s var(--ease-spring);
    box-shadow: 
        0 4px 12px -2px rgba(0, 0, 0, 0.2);
}

.footer-download:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px -4px rgba(0, 0, 0, 0.3);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s var(--ease-spring);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--orange-red);
    transform: translateX(6px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.4s var(--ease-spring);
    box-shadow: 
        0 4px 12px -2px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    background: var(--orange-red);
    color: var(--white);
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 
        0 8px 24px -4px rgba(225, 88, 62, 0.4);
}

/* ============================================
   SCROLL REVEAL ANIMATION
   Fade-up entrance for sections
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-spring);
}

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

/* ============================================
   RESPONSIVE DESIGN - Mobile Optimization
   Breakpoints and layout adjustments
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        position: relative;
        max-width: 100%;
        margin-bottom: 2rem;
        transform: none;
        top: auto;
        left: auto;
    }

    .contact-item:nth-child(2),
    .contact-item:nth-child(3) {
        margin-left: 0;
    }

    .contact-form {
        padding: 3rem;
        padding-left: 3rem;
        min-height: auto;
    }

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

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

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

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

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

    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    .nav {
        width: calc(100% - 1.5rem);
    }

    .nav.scrolled {
        width: calc(100% - 1.5rem);
    }

    /* Hide desktop navigation, show mobile toggle */
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
        width: 44px;
        height: 44px;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        transition: all 0.4s var(--ease-spring);
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-toggle:active {
        transform: scale(0.92);
    }

    .nav.scrolled .mobile-toggle {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .mobile-toggle i {
        transition: all 0.3s var(--ease-spring);
    }

    /* Adjust sections for mobile */
    .stats-grid,
    .projects-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1.75rem;
    }

    .faq {
        padding: 4rem 0;
    }

    .faq__tab-controls {
        gap: 0.5rem;
    }

    .faq__tab-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .faq__question {
        padding: 1.5rem 1.75rem;
        padding-right: 3.5rem;
    }

    .faq__question h3 {
        font-size: 1rem;
    }

    .faq__icon {
        right: 1.5rem;
    }

    .faq__answer-inner {
        padding: 0 1.75rem;
    }

    .faq__item.active .faq__answer-inner {
        padding-bottom: 1.5rem;
    }

    .faq__cta-content {
        padding: 2.5rem;
    }

    .back-to-top {
        width: 52px;
        height: 52px;
        bottom: 1.75rem;
        right: 1.75rem;
    }

    /* Mobile cookie banner */
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.75rem 1.5rem;
        border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
        max-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        text-align: center;
    }

    .cookie-icon-wrapper {
        width: 52px;
        height: 52px;
        border-radius: var(--radius-lg);
        margin: 0 auto;
    }

    .cookie-text {
        width: 100%;
    }

    .cookie-text h4 {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .cookie-text p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.875rem;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        border-radius: var(--radius-lg);
    }

    .cookie-btn-decline {
        order: 2;
        background: transparent;
        border: 1px solid var(--cloud);
    }

    .project-details-grid {
        grid-template-columns: 1fr;
    }

    .project-modal-image {
        height: 280px;
    }

    .project-modal-title {
        font-size: 1.75rem;
    }

    .project-modal-body {
        padding: 2rem;
    }

    .cookie-modal-content {
        padding: 2.5rem;
    }
}

/* ============================================
   ACCESSIBILITY & REDUCED MOTION
   Support for user preferences
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

::selection {
    background: var(--orange-red);
    color: var(--white);
}

/* Enhanced focus states for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--orange-red);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ============================================
   CUSTOM SCROLLBAR
   Styled scrollbar for modern browsers
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-orange);
    border-radius: var(--radius-full);
    border: 2px solid var(--off-white);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--orange-warm) 0%, var(--orange-red) 100%);
}