
        /* ====== ANIMATIONS ====== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-40px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(196, 30, 58, 0.3); }
            50% { box-shadow: 0 0 40px rgba(196, 30, 58, 0.6); }
        }
        @keyframes bounceIn {
            0% { opacity: 0; transform: scale(0.3); }
            50% { transform: scale(1.05); }
            70% { transform: scale(0.9); }
            100% { opacity: 1; transform: scale(1); }
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        @keyframes ripple {
            to { transform: scale(4); opacity: 0; }
        }
        @keyframes preloaderFill {
            0% { width: 0; }
            100% { width: 100%; }
        }
        @keyframes kenBurns {
            0% { transform: scale(1) translate(0, 0); }
            50% { transform: scale(1.15) translate(-2%, -2%); }
            100% { transform: scale(1) translate(0, 0); }
        }
        @keyframes heroImageZoom {
            0% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        @keyframes heroImagePan {
            0% { transform: scale(1.1) translate(0, 0); }
            50% { transform: scale(1.15) translate(-1%, -1%); }
            100% { transform: scale(1.1) translate(0, 0); }
        }
        @keyframes slideInFromRight {
            0% { opacity: 0; transform: translateX(100px) scale(0.9); }
            100% { opacity: 1; transform: translateX(0) scale(1); }
        }
        @keyframes imageReveal {
            0% { clip-path: inset(0 100% 0 0); opacity: 0; }
            100% { clip-path: inset(0 0 0 0); opacity: 1; }
        }
        @keyframes imageGlow {
            0%, 100% { filter: brightness(1) contrast(1); }
            50% { filter: brightness(1.1) contrast(1.05); }
        }
        @keyframes borderGlow {
            0%, 100% { box-shadow: 0 0 20px rgba(196, 30, 58, 0.3), 0 0 40px rgba(245, 158, 11, 0.2); }
            50% { box-shadow: 0 0 40px rgba(196, 30, 58, 0.6), 0 0 80px rgba(245, 158, 11, 0.4); }
        }
        @keyframes floatUpDown {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(2deg); }
            75% { transform: translateY(15px) rotate(-2deg); }
        }
        @keyframes rotateSlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        @keyframes textGlow {
            0%, 100% { text-shadow: 0 0 10px rgba(196, 30, 58, 0.3); }
            50% { text-shadow: 0 0 30px rgba(196, 30, 58, 0.6), 0 0 60px rgba(245, 158, 11, 0.3); }
        }

        .animate-fadeInUp { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
        .animate-fadeInLeft { animation: fadeInLeft 0.8s ease-out forwards; opacity: 0; }
        .animate-fadeInRight { animation: fadeInRight 0.8s ease-out forwards; opacity: 0; }
        .animate-scaleIn { animation: scaleIn 0.6s ease-out forwards; opacity: 0; }
        .animate-float { animation: float 6s ease-in-out infinite; }
        .animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
        .animate-bounceIn { animation: bounceIn 0.8s ease-out forwards; opacity: 0; }
        .animate-gradient { background-size: 200% 200%; animation: gradientShift 8s ease infinite; }
        .animate-kenBurns { animation: kenBurns 20s ease-in-out infinite; }
        .animate-heroImageZoom { animation: heroImageZoom 1.5s ease-out forwards; }
        .animate-heroImagePan { animation: heroImagePan 15s ease-in-out infinite; }
        .animate-slideInFromRight { animation: slideInFromRight 1s ease-out forwards; opacity: 0; }
        .animate-imageReveal { animation: imageReveal 1.2s ease-out forwards; opacity: 0; }
        .animate-imageGlow { animation: imageGlow 4s ease-in-out infinite; }
        .animate-borderGlow { animation: borderGlow 3s ease-in-out infinite; }
        .animate-floatUpDown { animation: floatUpDown 8s ease-in-out infinite; }
        .animate-rotateSlow { animation: rotateSlow 30s linear infinite; }
        .animate-textGlow { animation: textGlow 3s ease-in-out infinite; }

        .delay-100 { animation-delay: 0.1s; }
        .delay-200 { animation-delay: 0.2s; }
        .delay-300 { animation-delay: 0.3s; }
        .delay-400 { animation-delay: 0.4s; }
        .delay-500 { animation-delay: 0.5s; }
        .delay-600 { animation-delay: 0.6s; }
        .delay-700 { animation-delay: 0.7s; }
        .delay-800 { animation-delay: 0.8s; }
        .delay-1000 { animation-delay: 1s; }
        .delay-1200 { animation-delay: 1.2s; }

        /* ====== SCROLL REVEAL ====== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }
        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }
        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* ====== HOVER EFFECTS ====== */
        .hover-lift {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .hover-lift:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        .hover-scale {
            transition: all 0.4s ease;
        }
        .hover-scale:hover {
            transform: scale(1.05);
        }
        .hover-underline {
            position: relative;
        }
        .hover-underline::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #c41e3a;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .hover-underline:hover::after {
            width: 100%;
        }

        /* ====== NAVBAR ====== */
.navbar {
    transition: all 0.4s ease;
    background: #ffffff;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* ===== LOGO CONTAINER ===== */
.logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

/* ===== LOGO IMAGE ===== */
.navbar-logo {
    width: 90px;
    height: 80px;
    object-fit: contain;
    border-radius: 1px;
    transition: all 0.4s ease;
}

/* Hover Effect */
.logo-container:hover .navbar-logo {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* ===== OPTIONAL TEXT ===== */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-primary {
    font-size: 26px;
    font-weight: 900;
    color: #1e3a5f;
    letter-spacing: -1px;
}

.logo-secondary {
    font-size: 18px;
    font-weight: 800;
    color: #c41e3a;
    letter-spacing: 2px;
}

/* ===== NAV LINKS ===== */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c41e3a;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .navbar-logo {
        width: 50px;
        height: 50px;
    }

    .logo-primary {
        font-size: 22px;
    }

    .logo-secondary {
        font-size: 14px;
    }

}
        /* ====== HERO SECTION WITH IMAGE ====== */
        .hero-section {
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
        }
        .hero-bg-image {
            position: absolute;
            inset: 0;
            z-index: 1;
        }
        .hero-bg-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(30,58,95,0.88) 40%, rgba(15,23,42,0.85) 100%);
            z-index: 2;
        }
        .hero-content {
            position: relative;
            z-index: 10;
            width: 100%;
        }
        .hero-text-shadow {
            text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 2px 10px rgba(0,0,0,0.3);
        }

        /* Hero Image Frame */
        .hero-image-frame {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 80px -20px rgba(0,0,0,0.5);
        }
        .hero-image-frame::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 27px;
            background: linear-gradient(135deg, #c41e3a, #f59e0b, #1e3a5f, #c41e3a);
            background-size: 300% 300%;
            animation: gradientShift 6s ease infinite;
            z-index: -1;
        }
        .hero-image-frame::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            border: 2px solid rgba(255,255,255,0.1);
            pointer-events: none;
        }
        .hero-image-inner {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
        }
        .hero-image-inner img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Floating Elements around hero image */
        .hero-float-card {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 1rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            z-index: 20;
            transition: all 0.4s ease;
        }
        .hero-float-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 50px rgba(0,0,0,0.2);
        }

        /* Rotating badge */
        .rotating-badge {
            position: absolute;
            width: 100px;
            height: 100px;
            z-index: 20;
        }
        .rotating-badge svg {
            width: 100%;
            height: 100%;
            animation: rotateSlow 20s linear infinite;
        }
        .rotating-badge text {
            fill: white;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* ====== BUTTONS ====== */
        .btn-primary {
            background: linear-gradient(135deg, #c41e3a, #9a1830);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }
        .btn-primary:hover::before {
            left: 100%;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(196, 30, 58, 0.4);
        }
        .btn-secondary {
            background: transparent;
            border: 2px solid white;
            transition: all 0.4s ease;
        }
        .btn-secondary:hover {
            background: white;
            color: #1e3a5f;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
        }
        .btn-outline {
            border: 0px solid #c41e3a;
            color: #c41e3a;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .btn-outline::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: #c41e3a;
            transition: left 0.4s ease;
            z-index: -1;
        }
        .btn-outline:hover::before {
            left: 0;
        }
        .btn-outline:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(196, 30, 58, 0.3);
        }

        /* ====== SERVICE CARDS ====== */
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 4px;
            background: linear-gradient(90deg, #c41e3a, #f59e0b);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .service-card:hover::before {
            transform: scaleX(1);
        }
        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
            border-color: rgba(196, 30, 58, 0.2);
        }
        .service-icon {
            width: 80px; height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transition: all 0.4s ease;
        }
        .service-card:hover .service-icon {
            transform: rotateY(360deg) scale(1.1);
        }

        /* ====== CATEGORY CARDS ====== */
        .category-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .category-card img {
            transition: all 0.6s ease;
            filter: brightness(0.7);
        }
        .category-card:hover img {
            transform: scale(1.15);
            filter: brightness(0.4);
        }
        .category-card .cat-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            z-index: 2;
        }
        .category-card .cat-icon {
            width: 60px; height: 60px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 1rem;
            transition: all 0.4s ease;
        }
        .category-card:hover .cat-icon {
            background: #c41e3a;
            transform: rotate(360deg) scale(1.1);
        }
        .category-card .cat-title {
            color: white;
            font-size: 1.25rem;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        .category-card:hover .cat-title {
            transform: translateY(-5px);
        }
        .category-card .cat-desc {
            color: rgba(255,255,255,0.8);
            font-size: 0.875rem;
            margin-top: 0.5rem;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease 0.1s;
        }
        .category-card:hover .cat-desc {
            opacity: 1;
            transform: translateY(0);
        }
        .category-card .cat-arrow {
            position: absolute;
            top: 1.5rem; right: 1.5rem;
            width: 40px; height: 40px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0;
            transform: scale(0);
            transition: all 0.4s ease;
        }
        .category-card:hover .cat-arrow {
            opacity: 1;
            transform: scale(1);
        }

        /* ====== TRANSPORT CARDS ====== */
        .transport-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.5s ease;
        }
        .transport-card img {
            transition: all 0.6s ease;
        }
        .transport-card:hover img {
            transform: scale(1.1);
        }
        .transport-card .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.3) 50%, transparent 100%);
            transition: all 0.4s ease;
        }
        .transport-card:hover .overlay {
            background: linear-gradient(to top, rgba(30,58,95,0.95) 0%, rgba(30,58,95,0.5) 50%, rgba(30,58,95,0.2) 100%);
        }
        .transport-card .content {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 2rem;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }
        .transport-card:hover .content {
            transform: translateY(0);
        }
        .transport-card .badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(196, 30, 58, 0.9);
            color: white;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            transform: translateY(-20px);
            opacity: 0;
            transition: all 0.4s ease 0.1s;
        }
        .transport-card:hover .badge {
            transform: translateY(0);
            opacity: 1;
        }

        /* ====== STATS ====== */
        .stat-item {
            text-align: center;
            padding: 2rem;
            position: relative;
        }
        .stat-item::after {
            content: '';
            position: absolute;
            right: 0; top: 50%;
            transform: translateY(-50%);
            width: 1px; height: 60%;
            background: rgba(255,255,255,0.1);
        }
        .stat-item:last-child::after {
            display: none;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #f59e0b;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            color: rgba(255,255,255,0.7);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* ====== TESTIMONIALS ====== */
        .testimonial-card {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
        }
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem; right: 2rem;
            font-size: 6rem;
            color: rgba(196, 30, 58, 0.1);
            font-family: 'Playfair Display', serif;
            line-height: 1;
        }
        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        .stars { color: #f59e0b; }

        /* ====== PROCESS STEPS ====== */
        .process-step {
            position: relative;
            text-align: center;
        }
        .process-step .step-number {
            width: 70px; height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, #c41e3a, #9a1830);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
        }
        .process-step:hover .step-number {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5);
        }
        .process-step .step-line {
            position: absolute;
            top: 35px; left: 50%;
            width: 100%; height: 2px;
            background: linear-gradient(90deg, #c41e3a, transparent);
            z-index: 1;
        }
        .process-step:last-child .step-line {
            display: none;
        }

        /* ====== FORM INPUTS ====== */
        .form-input {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }
        .form-input:focus {
            outline: none;
            border-color: #c41e3a;
            box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
        }
        .form-input::placeholder {
            color: #94a3b8;
        }

        /* ====== FOOTER ====== */
        .footer-link {
            color: rgba(255,255,255,0.6);
            transition: all 0.3s ease;
            display: inline-block;
        }
        .footer-link:hover {
            color: #f59e0b;
            transform: translateX(5px);
        }
        .social-icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background: #c41e3a;
            transform: translateY(-5px) rotate(10deg);
        }

        /* ====== MOBILE MENU ====== */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .mobile-menu.open {
            transform: translateX(0);
        }
        .hamburger span {
            display: block;
            width: 25px; height: 2px;
            background: #1e3a5f;
            margin: 6px 0;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* ====== BACK TO TOP ====== */
        .back-to-top {
            position: fixed;
            bottom: 30px; right: 30px;
            width: 50px; height: 50px;
            background: linear-gradient(135deg, #c41e3a, #9a1830);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5);
        }

        /* ====== ACCORDION ====== */
        .accordion-item {
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .accordion-item:hover {
            border-color: #c41e3a;
        }
        .accordion-header {
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            transition: all 0.3s ease;
        }
        .accordion-header:hover {
            background: #fef2f2;
        }
        .accordion-header.active {
            background: linear-gradient(135deg, #fef2f2, #fff);
        }
        .accordion-icon {
            transition: all 0.3s ease;
            color: #c41e3a;
        }
        .accordion-header.active .accordion-icon {
            transform: rotate(180deg);
        }
        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;
            padding: 0 1.5rem;
        }
        .accordion-body.active {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem;
        }

        /* ====== PRELOADER ====== */
        .preloader {
            position: fixed;
            inset: 0;
            background: #0f172a;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        .preloader-bar {
            width: 200px; height: 3px;
            background: rgba(255,255,255,0.1);
            border-radius: 3px;
            margin-top: 1rem;
            overflow: hidden;
        }
        .preloader-bar-fill {
            height: 100%; width: 0;
            background: linear-gradient(90deg, #c41e3a, #f59e0b);
            border-radius: 3px;
            animation: preloaderFill 2s ease forwards;
        }

        /* ====== GRADIENT TEXT ====== */
        .gradient-text {
            background: linear-gradient(135deg, #c41e3a, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ====== WAVE SVG ====== */
        .wave-svg {
            position: absolute;
            bottom: 0; left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        .wave-svg svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 100px;
        }

        /* ====== SCROLLBAR ====== */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        ::-webkit-scrollbar-thumb {
            background: #c41e3a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #9a1830;
        }

        /* ====== RESPONSIVE ====== */
        @media (max-width: 768px) {
            .stat-item::after { display: none; }
            .process-step .step-line { display: none; }
            .hero-image-frame { margin-top: 2rem; }
        }

        /* ====== SELECTION ====== */
        ::selection {
            background: #c41e3a;
            color: white;
        }