
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        body {
            background: linear-gradient(-45deg, #e3f0f9, #f0f4f8, #d4e4f0, #e8f0f7);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            color: #1a2b3c;
            line-height: 1.5;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .logo-img {
            width: 45px;
            height: 45px;
            object-fit: contain;
        }

        /* ===== ANIMATED BACKGROUND ===== */
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(255, 0, 0, 0.05);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
            25% { transform: translateY(-30px) translateX(15px) rotate(5deg); }
            50% { transform: translateY(20px) translateX(-20px) rotate(-5deg); }
            75% { transform: translateY(-15px) translateX(25px) rotate(3deg); }
        }

        .pattern-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(111, 15, 15, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(111, 15, 15, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 0;
            pointer-events: none;
            animation: patternMove 30s linear infinite;
        }

        @keyframes patternMove {
            0% { background-position: 0 0; }
            100% { background-position: 50px 50px; }
        }

        /* ===== NAVBAR ===== */
        .navbar {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            padding: 12px 20px;
            position: sticky;
            top: 0;
            z-index: 3000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            position: relative;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: #6f0f0f;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .logo-text {
            font-weight: 700;
            font-size: 1.2rem;
            color: #4c0b0b;
            line-height: 1.2;
        }

        .logo-text small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #7f4f4f;
            display: block;
        }

        /* Desktop Menu Button */
        .desktop-menu-btn {
            background: #6f0f0f;
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 12px #6f0f0f70;
            transition: 0.2s;
        }

        .desktop-menu-btn:hover {
            background: #5c0b0b;
            transform: scale(1.05);
        }

        .desktop-menu-btn i:last-child {
            transition: transform 0.3s ease;
        }

        .desktop-menu-btn.active i:last-child {
            transform: rotate(180deg);
        }

        /* Mobile Burger Button */
        .burger-btn {
            display: none;
            width: 48px;
            height: 48px;
            background: #6f0f0f;
            border: none;
            border-radius: 16px;
            cursor: pointer;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 12px #6f0f0f70;
        }

        .burger-btn span {
            width: 24px;
            height: 3px;
            background: white;
            border-radius: 6px;
            transition: 0.2s;
        }

        .burger-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .burger-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .burger-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Dropdown Menu */
        .dropdown-content {
            display: none;
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            min-width: 300px;
            border-radius: 24px;
            box-shadow: 0 20px 35px -8px #300000;
            padding: 12px 0;
            z-index: 4000;
            max-height: 80vh;
            overflow-y: auto;
            border: 1px solid rgba(255, 255, 255, 0.5);
            pointer-events: auto;
        }

        .dropdown-content.show {
            display: block;
        }

        .dropdown-content a {
            color: #1a2b3c;
            padding: 16px 24px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 16px;
            font-weight: 500;
            transition: 0.1s;
            border-bottom: 1px solid rgba(240, 245, 250, 0.5);
            cursor: pointer;
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a i {
            width: 24px;
            color: #0f4a6f;
            font-size: 1.2rem;
        }

        .dropdown-content a:hover {
            background: rgba(230, 242, 251, 0.8);
        }

        .dropdown-content a:active {
            background: #d1e5f5;
        }

        /* Overlay */
        .dropdown-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(3px);
            z-index: 2500;
            cursor: pointer;
        }

        .dropdown-overlay.show {
            display: block;
        }

        .layanan-page {
            max-width: 1200px;
            margin: 20px auto 0;
            padding: 16px 20px 40px;
            position: relative;
            z-index: 1;
            pointer-events: auto;
        }

        /* Glass morphism effects */
        .stats-card, .service-card, .fitur-item, .faq-container, .promo-banner {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 15px 35px -10px rgba(15, 74, 111, 0.2);
        }

        .support-block {
            backdrop-filter: blur(10px);
            background: linear-gradient(135deg, rgba(16, 62, 85, 0.95), rgba(6, 33, 46, 0.98));
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .support-block.light {
            background: rgba(255, 255, 255, 0.95);
        }

        .promo-banner {
            background: linear-gradient(145deg, rgba(10, 46, 64, 0.95), rgba(1, 33, 47, 0.98));
        }

        @keyframes glowPulse {
            0% { box-shadow: 0 5px 25px -8px rgba(15, 74, 111, 0.3); }
            50% { box-shadow: 0 8px 35px -5px rgba(15, 74, 111, 0.5); }
            100% { box-shadow: 0 5px 25px -8px rgba(15, 74, 111, 0.3); }
        }

        .service-card:hover, .fitur-item:hover {
            animation: glowPulse 2s infinite;
        }

        /* ===== HERO SECTION ===== */
        .hero-banner {
            position: relative;
            width: 100%;
            border-radius: 28px;
            overflow: hidden;
            margin-bottom: 24px;
            box-shadow: 0 20px 40px -12px rgba(0, 50, 80, 0.3);
        }

        .hero-banner img {
            width: 100%;
            height: auto;
            min-height: 240px;
            max-height: 380px;
            object-fit: cover;
            display: block;
            transition: transform 10s ease;
        }

        .hero-banner:hover img {
            transform: scale(1.05);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(95deg, rgba(10, 40, 56, 0.9) 30%, transparent 90%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 24px 28px;
        }

        .hero-overlay h1 {
            color: white;
            font-size: clamp(1.6rem, 5vw, 2.8rem);
            font-weight: 700;
            line-height: 1.2;
            max-width: 550px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            margin-bottom: 10px;
            animation: fadeInUp 1s ease;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            animation: fadeInUp 1s ease 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-tags span {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(4px);
            padding: 6px 16px;
            border-radius: 40px;
            color: white;
            font-size: 0.9rem;
            border: 1px solid rgba(255,255,255,0.2);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .hero-tags i {
            color: #ffb84d;
        }

        /* ===== STATS CARD ===== */
        .stats-card {
            border-radius: 28px;
            padding: 24px 28px;
            margin: -28px 16px 32px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px 30px;
            position: relative;
            z-index: 2;
            animation: slideInUp 0.8s ease;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            background: #e6f2fc;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0f4a6f;
            font-size: 1.5rem;
        }

        .stat-number {
            font-size: 1.6rem;
            font-weight: 700;
            color: #0b344c;
            line-height: 1.2;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #4f6c7f;
        }

        /* ===== SECTION TITLE ===== */
        .section-title {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 5px;
            background: #ffb84d;
            border-radius: 6px;
            animation: widthPulse 3s infinite;
        }

        @keyframes widthPulse {
            0%, 100% { width: 80px; }
            50% { width: 120px; }
        }

        .section-title i {
            color: #0f4a6f;
            margin-right: 12px;
            animation: spin 6s infinite linear;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* ===== SERVICE CARDS ===== */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            margin: 30px 0;
        }

        .service-card {
            border-radius: 26px;
            padding: 30px 20px;
            text-align: center;
            transition: 0.3s ease;
            animation: fadeIn 0.8s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 40px -12px #0f4a6f60;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .service-card img {
            width: 85px;
            height: 85px;
            object-fit: contain;
            margin-bottom: 18px;
            filter: drop-shadow(0 5px 10px rgba(15,74,111,0.2));
            transition: transform 0.3s ease;
        }

        .service-card:hover img {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #0b344c;
        }

        .service-card p {
            color: #3d5c70;
            font-size: 0.95rem;
        }

        /* ===== FITUR GRID ===== */
        .fitur-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
            margin: 30px 0;
        }

        .fitur-item {
            border-radius: 24px;
            padding: 22px 20px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: 0.3s ease;
            animation: fadeIn 0.8s ease 0.1s both;
        }

        .fitur-item:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 30px -10px #0f4a6f50;
        }

        .fitur-icon {
            min-width: 52px;
            height: 52px;
            background: #e1effb;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0f4a6f;
            font-size: 1.6rem;
            transition: 0.3s ease;
        }

        .fitur-item:hover .fitur-icon {
            transform: rotate(360deg);
            background: #0f4a6f;
            color: white;
        }

        .fitur-text h4 {
            font-size: 1.2rem;
            margin-bottom: 6px;
            color: #0b344c;
        }

        .fitur-text p {
            color: #3f5b6e;
            font-size: 0.92rem;
        }

        /* ===== DUKUNGAN DUAL KOLOM ===== */
        .support-dual {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px;
            margin: 40px 0;
        }

        .support-block {
            color: white;
            border-radius: 28px;
            padding: 28px 26px;
            transition: 0.3s ease;
            animation: fadeIn 0.8s ease 0.2s both;
        }

        .support-block:hover {
            transform: scale(1.02);
            box-shadow: 0 25px 40px -15px #0f4a6f;
        }

        .support-block.light {
            color: #1a2b3c;
        }

        .support-block h3 {
            font-size: 1.7rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .support-list {
            list-style: none;
        }

        .support-list li {
            margin-bottom: 16px;
            display: flex;
            gap: 12px;
            align-items: flex-start;
            transition: 0.2s ease;
        }

        .support-list li:hover {
            transform: translateX(5px);
        }

        .support-list i.fa-check-circle {
            color: #ffb84d;
            font-size: 1.4rem;
            transition: 0.3s ease;
        }

        .support-list li:hover i.fa-check-circle {
            transform: scale(1.2);
        }

        .light i.fa-check-circle {
            color: #0f4a6f !important;
        }

        .badge-response {
            background: #ffb84d;
            color: #0b2b3b;
            padding: 6px 20px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-top: 15px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* ===== FAQ ===== */
        .faq-container {
            border-radius: 30px;
            padding: 24px 28px;
            margin: 40px 0;
        }

        .faq-item {
            border-bottom: 1px solid rgba(227, 238, 246, 0.5);
            padding: 18px 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.15rem;
            cursor: pointer;
            color: #0b344c;
            transition: 0.2s ease;
        }

        .faq-question:hover {
            color: #0f4a6f;
            padding-left: 5px;
        }

        .faq-question i {
            color: #0f4a6f;
            transition: transform 0.2s;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.25s ease;
            color: #3b5b70;
            padding-right: 16px;
            margin-top: 8px;
        }

        .faq-item.active .faq-answer {
            max-height: 130px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* ===== PROMO COUNTDOWN - UPDATED ===== */
        .promo-banner {
            border-radius: 36px;
            padding: 32px 28px;
            color: white;
            text-align: center;
            margin: 40px 0;
            animation: glow 3s infinite;
            position: relative;
            overflow: hidden;
        }

        .promo-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: 0;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 25px 35px -15px #001f2c; }
            50% { box-shadow: 0 30px 45px -10px #0f4a6f; }
        }

        .promo-badge {
            background: #ffb84d;
            color: #0b2b3b;
            padding: 6px 28px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-block;
            margin-bottom: 18px;
            animation: bounce 2s infinite;
            position: relative;
            z-index: 1;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .promo-banner h3 {
            font-size: 1.9rem;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .promo-banner p {
            margin-bottom: 20px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .timer-wrap {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin: 25px 0 15px;
            position: relative;
            z-index: 1;
        }

        .timer-box {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 14px 8px;
            min-width: 75px;
            border-radius: 22px;
            transition: 0.3s ease;
            animation: timerPulse 2s infinite;
        }

        .timer-box:nth-child(1) { animation-delay: 0s; }
        .timer-box:nth-child(2) { animation-delay: 0.5s; }
        .timer-box:nth-child(3) { animation-delay: 1s; }
        .timer-box:nth-child(4) { animation-delay: 1.5s; }

        @keyframes timerPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); background: rgba(255,255,255,0.15); }
        }

        .timer-box:hover {
            transform: scale(1.1);
            background: rgba(255,255,255,0.2);
        }

        .timer-box span {
            font-size: 2.2rem;
            font-weight: 700;
            display: block;
            line-height: 1;
        }

        .timer-box small {
            font-size: 0.8rem;
            opacity: 0.8;
        }

        .promo-footer {
            font-size: 0.9rem;
            margin-top: 15px;
            color: #ffb84d;
            position: relative;
            z-index: 1;
        }

        /* ===== WORKSHOP IMAGE ===== */
        .workshop-img {
            border-radius: 30px;
            overflow: hidden;
            margin: 35px 0;
            box-shadow: 0 18px 35px -10px rgba(0,30,40,0.3);
            position: relative;
        }

        .workshop-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shine 5s infinite;
            z-index: 1;
            pointer-events: none;
        }

        @keyframes shine {
            0% { left: -100%; }
            20% { left: 200%; }
            100% { left: 200%; }
        }

        .workshop-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 10s ease;
        }

        .workshop-img:hover img {
            transform: scale(1.1);
        }

        /* ===== FOOTER SIMPLE ===== */
        .footer-simple {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(203, 218, 230, 0.5);
            color: #3e6077;
            font-size: 0.95rem;
        }

        .contact-inline {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            margin: 15px 0 20px;
        }

        .contact-inline a {
            text-decoration: none;
            color: #0f4a6f;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: 0.3s ease;
            padding: 8px 16px;
            border-radius: 40px;
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(5px);
        }

        .contact-inline a:hover {
            transform: translateY(-3px);
            background: #0f4a6f;
            color: white;
            box-shadow: 0 10px 20px -8px #0f4a6f;
        }

        /* ===== WHATSAPP BUTTON ===== */
        .whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 2000;
            background-color: #25d36567;
            padding: 5px 10px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            box-shadow: 10px 8px 0px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .whatsapp-icon img {
            width: 30px;
            height: 30px;
            margin-right: 10px;
        }

        .spn-cv {
            color: #444444c9;
            font-size: 16px;
            font-weight: bold;
            display: inline-block;
            animation: wave 2s ease-in-out infinite;
        }

        @keyframes wave {
            0%, 100% { transform: translateY(0); }
            25% { transform: translateY(-5px); }
            50% { transform: translateY(5px); }
            75% { transform: translateY(-3px); }
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .whatsapp-popup {
            position: fixed;
            bottom: 80px;
            right: 20px;
            background-color: #fff;
            width: 300px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            display: none;
            z-index: 3500;
        }

        .popup-header {
            background-color: #25D366;
            color: white;
            padding: 10px;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            font-size: 16px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .popup-header .close-btn {
            background-color: transparent;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
        }

        .popup-content {
            padding: 10px;
            font-size: 14px;
            color: #555;
        }

        .contact-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .contact-item:last-child {
            border-bottom: none;
        }

        .contact-item .contact-info {
            display: flex;
            align-items: center;
        }

        .contact-item img {
            width: 25px;
            height: 25px;
            margin-right: 10px;
        }

        .contact-item a {
            text-decoration: none;
            color: #25D366;
            font-weight: bold;
            font-size: 14px;
        }

        .contact-item a:hover {
            text-decoration: underline;
        }

        .contact-item .contact-role {
            font-size: 12px;
            color: #888;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .service-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .fitur-grid {
                grid-template-columns: 1fr;
            }

            .support-dual {
                grid-template-columns: 1fr;
            }

            .stats-card {
                flex-direction: column;
                gap: 18px;
                margin: -20px 10px 25px;
                padding: 20px;
            }

            .hero-overlay {
                background: linear-gradient(130deg, rgba(10, 40, 56, 0.9) 60%, transparent);
                padding: 20px;
            }

            .timer-box {
                min-width: 65px;
                padding: 10px 5px;
            }

            .timer-box span {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .desktop-menu-btn {
                display: none;
            }

            .burger-btn {
                display: flex;
            }

            .dropdown-content {
                position: fixed;
                top: 80px;
                left: 20px;
                right: 20px;
                width: auto;
                min-width: auto;
                max-height: calc(100vh - 100px);
            }
            
            .whatsapp-btn {
                display: flex;
                bottom: 15px;
                right: 15px;
                padding: 4px 8px;
            }
            
            .whatsapp-icon img {
                width: 25px;
                height: 25px;
            }
            
            .spn-cv {
                font-size: 14px;
            }
        }

        @media (min-width: 769px) {
            .burger-btn {
                display: none;
            }

            .desktop-menu-btn {
                display: flex;
            }

            .dropdown-content {
                position: absolute;
            }
        }

        @media (max-width: 480px) {
            .hero-tags span {
                padding: 4px 12px;
                font-size: 0.8rem;
            }
        }
        
        
        @media (max-width: 768px) {
    body {
        animation: none !important;
    }

    .particles,
    .pattern-overlay {
        display: none !important;
    }

    .navbar,
    .stats-card,
    .service-card,
    .faq-container,
    .promo-banner {
        animation: none !important;
        transition: none !important;
    }
}