    *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {

            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --primary: #303293;
            --gold: #ffad32;
            --gold-light: #ffad32;
            --gold-pale: #ffad32;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Cairo', sans-serif;
            color: var(--gray-700);
            background: var(--white);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 1000;
            background: transparent;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 2px 32px rgba(48, 50, 147, 0.10);
            border-bottom: 1px solid rgba(48, 50, 147, 0.07);
        }

        .navbar-inner {
            max-width: 1240px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            padding: 0 32px;
            gap: 24px;
        }

        /* ── Brand ── */
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .nav-logo {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 900;
            flex-shrink: 0;
            box-shadow: 0 2px 16px rgba(48, 50, 147, 0.35);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .nav-logo img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
  

        .nav-brand:hover .nav-logo {
            transform: rotate(-4deg) scale(1.06);
            box-shadow: 0 8px 24px rgba(48, 50, 147, 0.4);
        }

        .nav-brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.25;
        }

        .nav-brand-name {
            font-size: 16px;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -0.01em;
            transition: color 0.3s;
        }

        .navbar.scrolled .nav-brand-name {
            color: var(--primary);
        }

        .nav-brand-sub {
            font-size: 10px;
            color: rgba(255,255,255,0.65);
            font-weight: 500;
            letter-spacing: 0.03em;
            transition: color 0.3s;
        }

        .navbar.scrolled .nav-brand-sub {
            color: var(--gray-400);
        }

        /* ── Links ── */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.88);
            font-size: 14px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 10px;
            transition: all 0.25s ease;
            position: relative;
        }

        .navbar.scrolled .nav-links a {
            color: var(--gray-600);
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.14);
            color: #fff;
        }

        .navbar.scrolled .nav-links a:hover {
            background: rgba(48, 50, 147, 0.07);
            color: var(--primary);
        }

        /* CTA button */
        .nav-cta {
            background: var(--gold) !important;
            color: #1a1a2e !important;
            padding: 9px 22px !important;
            border-radius: 10px !important;
            font-size: 13.5px !important;
            font-weight: 700 !important;
            box-shadow: 0 4px 16px rgba(255, 173, 50, 0.38) !important;
            transition: all 0.3s ease !important;
            letter-spacing: 0.01em;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: #ffbc55 !important;
            color: #1a1a2e !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 24px rgba(255, 173, 50, 0.48) !important;
        }

        /* ── Divider ── */
        .nav-divider {
            width: 1px;
            height: 28px;
            background: rgba(255,255,255,0.2);
            flex-shrink: 0;
            transition: background 0.3s;
        }

        .navbar.scrolled .nav-divider {
            background: var(--gray-200);
        }

        /* ── Phone chip ── */
        .nav-phone {
            display: flex;
            align-items: center;
            gap: 7px;
            color: rgba(255,255,255,0.85);
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            padding: 7px 14px;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            flex-shrink: 0;
            direction: ltr;
        }

        .navbar.scrolled .nav-phone {
            color: var(--primary);
            border-color: rgba(48, 50, 147, 0.2);
        }

        .nav-phone:hover {
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.4);
            color: #fff;
        }

        .navbar.scrolled .nav-phone:hover {
            background: rgba(48, 50, 147, 0.06);
            border-color: rgba(48, 50, 147, 0.35);
            color: var(--primary);
        }

        .nav-phone iconify-icon {
            font-size: 15px;
            flex-shrink: 0;
        }

        /* ── Mobile toggle ── */
        .mobile-toggle {
            display: none;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.22);
            border-radius: 10px;
            cursor: pointer;
            padding: 8px 10px;
            color: #fff;
            font-size: 22px;
            line-height: 1;
            transition: all 0.3s;
        }

        .navbar.scrolled .mobile-toggle {
            background: rgba(48, 50, 147, 0.07);
            border-color: rgba(48, 50, 147, 0.15);
            color: var(--primary);
        }

        .mobile-toggle:hover {
            background: rgba(255,255,255,0.22);
        }

        .navbar.scrolled .mobile-toggle:hover {
            background: rgba(48, 50, 147, 0.12);
        }

        /* ── Mobile drawer ── */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            right: 0;
            left: 0;
            background: rgba(255, 255, 255, 0.99);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            padding: 16px 24px 24px;
            border-bottom: 2px solid var(--primary);
            box-shadow: 0 16px 48px rgba(48, 50, 147, 0.12);
            z-index: 999;
        }

        .mobile-menu.active {
            display: block;
            animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-12px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .mobile-menu a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 13px 16px;
            text-decoration: none;
            color: var(--gray-700);
            font-size: 15px;
            font-weight: 600;
            border-radius: 12px;
            transition: all 0.25s ease;
            margin-bottom: 4px;
        }

        .mobile-menu a:last-child {
            margin-bottom: 0;
        }

        .mobile-menu a:hover {
            background: rgba(48, 50, 147, 0.07);
            color: var(--primary);
            padding-right: 22px;
        }

        .mobile-menu-cta {
            background: var(--gold) !important;
            color: #1a1a2e !important;
            margin-top: 8px;
            justify-content: center;
            font-weight: 700 !important;
        }

        .mobile-menu-cta:hover {
            background: #ffbc55 !important;
            color: #1a1a2e !important;
            padding-right: 16px !important;
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 72px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.795),rgba(0, 0, 0, 0.6));
            z-index: 1;
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            z-index: 2;
            opacity: 0.04;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 24px;
            width: 100%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201, 168, 76, 0.15);
            border: 1px solid rgba(201, 168, 76, 0.3);
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 24px;
            animation: fadeInDown 0.8s ease-out;
        }

        .hero-badge span {
            color: var(--gold-light);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .hero-badge iconify-icon {
            color: var(--gold);
            font-size: 14px;
        }

        .hero-title {
            font-size: clamp(32px, 6vw, 58px);
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 20px;
            max-width: 700px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-title .gold {
            color: var(--gold-light);
        }

        .hero-desc {
            font-size: clamp(15px, 2vw, 18px);
            color: rgba(255, 255, 255, 0.8);
            max-width: 520px;
            margin-bottom: 36px;
            font-weight: 400;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 10px;
            font-family: 'Cairo', sans-serif;
            font-size: 14.5px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-gold {
            background: var(--gold);
            color: var(--gray-900);
            box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
        }

        .btn-gold:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 168, 76, 0.45);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(4px);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .btn-green {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(26, 86, 50, 0.3);
        }

        .btn-green:hover {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(26, 86, 50, 0.4);
        }

        .btn-whatsapp {
            background: #25D366;
            color: var(--white);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
        }

        .btn-whatsapp:hover {
            background: #20bd5a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 56px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-num {
            font-size: 28px;
            font-weight: 800;
            color: var(--gold-light);
            line-height: 1;
            margin-bottom: 4px;
        }

        .hero-stat-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        /* ===== SECTIONS COMMON ===== */
        .section {
            padding: 90px 24px;
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 12px;
        }

        .section-label::before,
        .section-label::after {
            content: '';
            width: 24px;
            height: 1.5px;
            background: var(--gold);
            border-radius: 2px;
            opacity: 0.5;
        }

        .section-title {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 14px;
            line-height: 1.3;
        }

        .section-desc {
            font-size: 15.5px;
            color: var(--gray-500);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ===== ABOUT ===== */
        .about {
            background: var(--gray-50);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 4/3;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .about-image:hover img {
            transform: scale(1.04);
        }

        .about-image-badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: var(--primary);
            color: var(--white);
            padding: 12px 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }

        .about-image-badge .num {
            font-size: 24px;
            font-weight: 800;
            color: var(--gold-light);
            line-height: 1;
        }

        .about-image-badge .label {
            font-size: 10px;
            font-weight: 500;
            opacity: 0.85;
        }

        .about-text h2 {
            font-size: clamp(22px, 3.5vw, 30px);
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .about-text h2 .gold {
            color: var(--primary);
        }

        .about-text p {
            color: var(--gray-500);
            font-size: 15px;
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-top: 28px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--gray-700);
        }

        .about-feature iconify-icon {
            color: var(--primary);
            font-size: 18px;
            flex-shrink: 0;
        }

        /* ===== SERVICES ===== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .service-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
            opacity: 0;
            transition: opacity 0.4s;
        }

        .service-card:hover {
            border-color: transparent;
            box-shadow: 0 12px 40px rgba(26, 86, 50, 0.1);
            transform: translateY(-6px);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: var(--primary);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 26px;
            transition: all 0.4s;
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--primary), var(--primary));
            transform: scale(1.08);
        }

        .service-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 10px;
        }

        .service-card p {
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.8;
        }

        /* ===== WHY US ===== */
        .why-us {
            background: var(--gray-50);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .why-card {
            display: flex;
            gap: 20px;
            padding: 28px;
            background: var(--white);
            border-radius: 14px;
            border: 1px solid var(--gray-200);
            transition: all 0.4s ease;
        }

        .why-card:hover {
            border-color: var(--primary);
            box-shadow: 0 8px 30px rgba(26, 86, 50, 0.08);
            transform: translateY(-3px);
        }

        .why-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            background: linear-gradient(135deg, var(--primary), var(--primary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 22px;
        }

        .why-card h3 {
            font-size: 15.5px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 6px;
        }

        .why-card p {
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.8;
        }

        /* ===== CTA BANNER ===== */
        .cta-banner {
            background: linear-gradient(135deg, var(--primary) 0%, #0d3a1e 100%);
            padding: 72px 24px;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-banner::after {
            content: '';
            position: absolute;
            bottom: -40%;
            right: -5%;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-inner {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-inner h2 {
            font-size: clamp(22px, 4vw, 32px);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 14px;
        }

        .cta-inner p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 15px;
            margin-bottom: 32px;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        /* ===== CONTACT ===== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: var(--gray-50);
            border-radius: 12px;
            border: 1px solid var(--gray-200);
            transition: all 0.3s;
        }

        .contact-item:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 16px rgba(26, 86, 50, 0.06);
        }

        .contact-item-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 20px;
        }

        .contact-item-text h4 {
            font-size: 13px;
            color: var(--gray-400);
            font-weight: 600;
            margin-bottom: 2px;
        }

        .contact-item-text p {
            font-size: 15px;
            font-weight: 700;
            color: var(--gray-900);
            direction: ltr;
            text-align: right;
        }

        .contact-actions {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 10px;
        }

        .contact-actions .btn {
            justify-content: center;
            padding: 16px 24px;
            font-size: 15px;
            border-radius: 12px;
        }

        .contact-map {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--gray-200);
            height: 100%;
            min-height: 360px;
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 12px;
            color: var(--gray-400);
        }

        .contact-map iconify-icon {
            font-size: 48px;
            color: var(--gray-300);
        }

        .contact-map span {
            font-size: 14px;
            font-weight: 500;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--gray-900);
            padding: 40px 24px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-text {
            color: var(--gray-400);
            font-size: 13px;
        }

        .footer-text .gold {
            color: var(--gold);
            font-weight: 600;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--white);
            font-size: 14px;
            font-weight: 700;
        }

        .footer-brand iconify-icon {
            color: var(--gold);
            font-size: 18px;
        }

        /* ===== FLOATING WHATSAPP ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            left: 28px;
            z-index: 900;
            width: 56px;
            height: 56px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s;
            text-decoration: none;
            animation: pulse-whatsapp 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 900;
            width: 44px;
            height: 44px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            box-shadow: 0 4px 16px rgba(26, 86, 50, 0.3);
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            opacity: 0;
            pointer-events: none;
            transform: translateY(10px);
        }

        .scroll-top.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-16px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse-whatsapp {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                gap: 24px;
            }

            .hero-stat-num {
                font-size: 22px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 64px 20px;
            }

            .footer-inner {
                flex-direction: column;
                text-align: center;
            }

            .whatsapp-float {
                bottom: 20px;
                left: 20px;
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .scroll-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
            }
        }