    /* Custom styles & animations */
    :root {
        --plum-950: #2d0414;
        --plum-900: #500724;
        --amber-400: #f59e0b;
    }
    
    * {
        scroll-behavior: smooth;
    }
    
    body {
        font-family: 'Inter', sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    h1, h2, h3, h4, .font-display {
        font-family: 'Space Grotesk', sans-serif;
    }
    
    /* Hero shape animations */
    .hero-shape {
        animation: float 8s ease-in-out infinite;
    }
    
    .shape-1 {
        animation-delay: 0s;
    }
    
    .shape-2 {
        animation-delay: -2s;
        animation-duration: 10s;
    }
    
    .shape-3 {
        animation-delay: -4s;
        animation-duration: 12s;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        33% { transform: translateY(-20px) rotate(2deg); }
        66% { transform: translateY(10px) rotate(-1deg); }
    }
    
    /* Scroll indicator */
    .scroll-indicator {
        display: flex;
        justify-content: center;
    }
    
    .scroll-dot {
        animation: scrollBounce 2s ease-in-out infinite;
    }
    
    @keyframes scrollBounce {
        0%, 100% { top: 8px; opacity: 1; }
        50% { top: 20px; opacity: 0.3; }
    }
    
    /* Service card hover */
    .service-card {
        backdrop-filter: blur(10px);
    }
    
    /* Area card */
    .area-card {
        transition: transform 0.5s ease;
    }
    
    /* Testimonial card */
    .testimonial-card {
        backdrop-filter: blur(10px);
        transition: transform 0.4s ease, border-color 0.4s ease;
    }
    
    /* Navbar scroll state */
    nav.scrolled {
        background: rgba(45, 4, 20, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }
    
    nav.scrolled .menu-line {
        background: white;
    }
    
    /* Mobile menu animation */
    #mobile-menu.active {
        opacity: 1;
        pointer-events: all;
    }
    
    #mobile-menu.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    #mobile-menu.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    
    #mobile-menu.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        width: 24px;
    }
    
    /* Reveal animations */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Service cards stagger */
    .service-card:nth-child(1) { transition-delay: 0s; }
    .service-card:nth-child(2) { transition-delay: 0.1s; }
    .service-card:nth-child(3) { transition-delay: 0.2s; }
    .service-card:nth-child(4) { transition-delay: 0.3s; }
    .service-card:nth-child(5) { transition-delay: 0.4s; }
    .service-card:nth-child(6) { transition-delay: 0.5s; }
    
    /* Testimonial cards stagger */
    .testimonial-card:nth-child(1) { transition-delay: 0s; }
    .testimonial-card:nth-child(2) { transition-delay: 0.15s; }
    .testimonial-card:nth-child(3) { transition-delay: 0.3s; }
    
    /* Geometric accent animations */
    @keyframes rotate-slow {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    
    @keyframes pulse-glow {
        0%, 100% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
        50% { box-shadow: 0 0 40px rgba(245, 158, 11, 0.6); }
    }
    
    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: var(--plum-950);
    }
    
    ::-webkit-scrollbar-thumb {
        background: var(--plum-800);
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: var(--amber-400);
    }
    
    /* Form select arrow */
    select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 1rem;
        padding-right: 3rem;
    }
    
    /* Selection color */
    ::selection {
        background: rgba(245, 158, 11, 0.3);
        color: white;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .font-display {
            font-size: clamp(2rem, 8vw, 3rem);
        }
    }
