    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        overflow-x: hidden;
    }

    /* Loader */
    #loader {
        opacity: 1;
    }

    #loader.fade-out {
        opacity: 0;
        pointer-events: none;
    }

    /* Header */
    #header.scrolled {
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Mobile menu */
    #mobile-menu.active {
        opacity: 1;
        pointer-events: all;
    }

    /* Hero reveal animations */
    .reveal-text {
        opacity: 0;
        transform: translateY(30px);
        animation: reveal 0.8s ease forwards;
    }

    .reveal-text:nth-child(1) { animation-delay: 0.3s; }
    .reveal-text:nth-child(2) { animation-delay: 0.5s; }
    .reveal-text:nth-child(3) { animation-delay: 0.7s; }
    .reveal-text:nth-child(4) { animation-delay: 0.9s; }

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

    /* Service cards */
    .service-card {
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #FF6B6B;
        transition: width 0.5s ease;
    }

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

    /* Scroll animations */
    .fade-in {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Custom select styling */
    select option {
        background: #1a1a1a;
        color: #fff;
    }

    /* Mobile link hover */
    .mobile-link {
        position: relative;
    }

    .mobile-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        width: 0;
        height: 1px;
        background: #FF6B6B;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .mobile-link:hover::after {
        width: 100%;
    }

    /* Selection color */
    ::selection {
        background: rgba(255, 107, 107, 0.3);
        color: #fff;
    }

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

    ::-webkit-scrollbar-track {
        background: #1a1a1a;
    }

    ::-webkit-scrollbar-thumb {
        background: #FF6B6B;
        border-radius: 3px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #EE5253;
    }

    /* Focus styles */
    input:focus,
    textarea:focus,
    select:focus {
        border-color: #FF6B6B !important;
    }

    /* Smooth image loading */
    img {
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    img.loaded {
        opacity: 1;
    }
