
        /* ===== RESET & VARIABLES ===== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy: #0a1628;
            --navy-mid: #0f2044;
            --teal: #0d9488;
            --teal-light: #14b8a6;
            --teal-glow: #2dd4bf;
            --gold: #f59e0b;
            --gold-light: #fbbf24;
            --white: #ffffff;
            --off-white: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-400: #94a3b8;
            --gray-600: #475569;
            --gray-800: #1e293b;
            --font-main: 'Tajawal', sans-serif;
            --font-alt: 'Cairo', sans-serif;
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
            --shadow-teal: 0 8px 32px rgba(13, 148, 136, 0.3);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 40px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            background: var(--white);
            color: var(--gray-800);
            direction: rtl;
            overflow-x: hidden;
            line-height: 1.7;
        }

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

        ::-webkit-scrollbar-track {
            background: var(--navy);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--teal);
            border-radius: 3px;
        }

        /* ===== UTILITY CLASSES ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-pad {
            padding: 100px 0;
        }

        .section-pad-sm {
            padding: 70px 0;
        }

        .text-center {
            text-align: center;
        }

        .text-teal {
            color: var(--teal);
        }

        .text-gold {
            color: var(--gold);
        }

        .text-white {
            color: var(--white);
        }

        .fw-900 {
            font-weight: 900;
        }

        .hidden {
            display: none !important;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(13, 148, 136, 0.1);
            border: 1px solid rgba(13, 148, 136, 0.3);
            color: var(--teal);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .section-title {
            font-family: var(--font-alt);
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 900;
            color: var(--navy);
            line-height: 1.3;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 17px;
            color: var(--gray-600);
            max-width: 560px;
            margin: 0 auto 48px;
            line-height: 1.8;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 50px;
            font-family: var(--font-main);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            text-decoration: none;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--teal), var(--teal-light));
            color: var(--white);
            box-shadow: var(--shadow-teal);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(13, 148, 136, 0.45);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.7);
            transform: translateY(-2px);
        }

        .btn-navy {
            background: var(--navy);
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .btn-navy:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-wa {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
        }

        .btn-wa:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--navy);
            font-weight: 800;
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
        }

        /* ===== STICKY HEADER ===== */
        #main-header {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition);
        }

        #main-header.scrolled {
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(20px);
            padding: 14px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            cursor: pointer;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--teal), var(--teal-glow));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 900;
            color: white;
            font-family: var(--font-alt);
            box-shadow: var(--shadow-teal);
        }

        .logo-text {
            font-family: var(--font-alt);
            font-weight: 900;
            font-size: 22px;
            color: white;
            letter-spacing: 1px;
        }

        .logo-text span {
            color: var(--teal-glow);
        }

        nav {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 8px;
            transition: var(--transition);
            cursor: pointer;
        }

        nav a:hover,
        nav a.active {
            color: var(--teal-glow);
            background: rgba(13, 148, 136, 0.15);
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: white;
            border-radius: 2px;
            transition: var(--transition);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            background: var(--navy);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .mobile-nav.open {
            display: flex;
        }

        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-size: 22px;
            font-weight: 700;
            padding: 14px 32px;
            border-radius: 12px;
            transition: var(--transition);
            width: 80%;
            text-align: center;
            cursor: pointer;
        }

        .mobile-nav a:hover {
            background: rgba(13, 148, 136, 0.2);
            color: var(--teal-glow);
        }

        .mobile-close {
            position: absolute;
            top: 24px;
            left: 24px;
            background: none;
            border: none;
            color: white;
            font-size: 32px;
            cursor: pointer;
            line-height: 1;
        }

        /* ===== PAGE SYSTEM ===== */
        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        /* ===== HERO SECTION ===== */
        #hero {
            min-height: 100vh;
            background: var(--navy);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        /* Mesh gradient */
        .hero-mesh {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 70% 30%, rgba(13, 148, 136, 0.18) 0%, transparent 60%),
                radial-gradient(ellipse 60% 80% at 20% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 80% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 60%);
        }

        /* Grid pattern */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(13, 148, 136, 0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(13, 148, 136, 0.06) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
        }

        /* Floating shapes */
        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            animation: floatShape 8s ease-in-out infinite;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: rgba(13, 148, 136, 0.15);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: rgba(245, 158, 11, 0.08);
            bottom: -80px;
            left: -80px;
            animation-delay: 3s;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: rgba(13, 148, 136, 0.12);
            top: 50%;
            right: 30%;
            animation-delay: 5s;
        }

        @keyframes floatShape {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-30px) scale(1.05);
            }
        }

        /* Orbs */
        .orb {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(13, 148, 136, 0.2);
            animation: rotatOrb 20s linear infinite;
        }

        .orb-1 {
            width: 500px;
            height: 500px;
            top: -100px;
            right: -100px;
        }

        .orb-2 {
            width: 300px;
            height: 300px;
            top: 50px;
            right: 100px;
            animation-duration: 15s;
            animation-direction: reverse;
        }

        @keyframes rotatOrb {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding-top: 100px;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            min-height: 100vh;
            padding: 60px 0;
        }

        .hero-text {
            animation: slideInRight 0.8s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(13, 148, 136, 0.15);
            border: 1px solid rgba(13, 148, 136, 0.4);
            color: var(--teal-glow);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 28px;
            animation: pulse-badge 3s ease-in-out infinite;
        }

        @keyframes pulse-badge {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(13, 148, 136, 0);
            }

            50% {
                box-shadow: 0 0 0 8px rgba(13, 148, 136, 0.1);
            }
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--teal-glow);
            border-radius: 50%;
            animation: blink 2s ease-in-out infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }

        .hero-title {
            font-family: var(--font-alt);
            font-size: clamp(36px, 5vw, 62px);
            font-weight: 900;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, var(--teal-glow), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .hero-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            max-width: 500px;
            line-height: 1.9;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 56px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .stat-num {
            font-family: var(--font-alt);
            font-size: 32px;
            font-weight: 900;
            color: var(--teal-glow);
            line-height: 1;
        }

        .stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.55);
            font-weight: 500;
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            animation: slideInLeft 0.8s ease-out 0.2s both;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-card-main {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 32px;
            backdrop-filter: blur(20px);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-16px);
            }
        }

        .mock-browser {
            background: var(--navy-mid);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .mock-bar {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .mock-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .mock-dot:nth-child(1) {
            background: #ff5f56;
        }

        .mock-dot:nth-child(2) {
            background: #ffbd2e;
        }

        .mock-dot:nth-child(3) {
            background: #27c93f;
        }

        .mock-url {
            flex: 1;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            font-family: monospace;
            margin-right: 8px;
        }

        .mock-content {
            padding: 24px;
            min-height: 220px;
            position: relative;
            overflow: hidden;
        }

        .mock-hero-grad {
            height: 80px;
            background: linear-gradient(135deg, var(--teal) 0%, var(--navy-mid) 100%);
            border-radius: 8px;
            margin-bottom: 16px;
            position: relative;
            overflow: hidden;
        }

        .mock-hero-grad::after {
            content: 'URPROFILE';
            position: absolute;
            top: 50%;
            right: 50%;
            transform: translate(50%, -50%);
            color: white;
            font-weight: 900;
            font-size: 18px;
            letter-spacing: 2px;
            font-family: var(--font-alt);
        }

        .mock-lines {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mock-line {
            height: 10px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 5px;
        }

        .mock-line:nth-child(1) {
            width: 70%;
        }

        .mock-line:nth-child(2) {
            width: 90%;
        }

        .mock-line:nth-child(3) {
            width: 55%;
        }

        .mock-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-top: 16px;
        }

        .mock-card-sm {
            height: 50px;
            background: rgba(13, 148, 136, 0.15);
            border: 1px solid rgba(13, 148, 136, 0.2);
            border-radius: 8px;
            animation: shimmer 2s ease-in-out infinite;
        }

        .mock-card-sm:nth-child(2) {
            animation-delay: 0.3s;
        }

        .mock-card-sm:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes shimmer {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 1;
            }
        }

        /* Floating tags */
        .float-tag {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            padding: 10px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            color: var(--navy);
            box-shadow: var(--shadow-md);
            animation: float 5s ease-in-out infinite;
            white-space: nowrap;
        }

        .float-tag .ft-icon {
            font-size: 18px;
        }

        .float-tag-1 {
            bottom: -20px;
            right: -20px;
            animation-delay: 1s;
        }

        .float-tag-2 {
            top: -20px;
            left: -20px;
            animation-delay: 2.5s;
        }

        /* ===== SERVICES SECTION ===== */
        #services-home {
            padding: 100px 0;
            background: var(--off-white);
            position: relative;
            overflow: hidden;
        }

        #services-home::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-top: 16px;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 32px 24px;
            border: 1px solid var(--gray-200);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            group: true;
        }

        .service-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--teal), var(--teal-glow));
            transform: scaleX(0);
            transform-origin: right;
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(13, 148, 136, 0.2);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.05));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
            transition: var(--transition);
            border: 1px solid rgba(13, 148, 136, 0.1);
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--teal), var(--teal-light));
            transform: scale(1.1) rotate(-5deg);
        }

        .service-card:hover .service-icon .svc-emoji {
            filter: grayscale(0);
        }

        .service-title {
            font-family: var(--font-alt);
            font-size: 17px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .service-desc {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.7;
        }

        .service-arrow {
            margin-top: 20px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--teal);
            font-size: 13px;
            font-weight: 600;
            opacity: 0;
            transform: translateX(-8px);
            transition: var(--transition);
        }

        .service-card:hover .service-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* ===== PORTFOLIO SECTION ===== */
        #portfolio-home {
            padding: 100px 0;
            background: var(--white);
        }

        .portfolio-filters {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .filter-btn {
            padding: 10px 24px;
            border-radius: 50px;
            border: 2px solid var(--gray-200);
            background: transparent;
            color: var(--gray-600);
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--teal);
            border-color: var(--teal);
            color: white;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 28px;
        }

        .portfolio-item {
            border-radius: var(--radius-md);
            overflow: hidden;
            background: var(--gray-100);
            border: 1px solid var(--gray-200);
            transition: var(--transition);
            cursor: pointer;
        }

        .portfolio-item:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .portfolio-thumb {
            height: 220px;
            position: relative;
            overflow: hidden;
        }

        .port-bg {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            position: relative;
            transition: transform 0.5s ease;
        }

        .portfolio-item:hover .port-bg {
            transform: scale(1.05);
        }

        .port-overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 22, 40, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .portfolio-item:hover .port-overlay {
            opacity: 1;
        }

        .port-overlay-content {
            text-align: center;
            color: white;
        }

        .port-overlay-content .btn {
            margin-top: 12px;
            padding: 10px 24px;
            font-size: 14px;
        }

        .portfolio-info {
            padding: 20px;
        }

        .portfolio-tag {
            display: inline-block;
            background: rgba(13, 148, 136, 0.1);
            color: var(--teal);
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 50px;
            margin-bottom: 8px;
        }

        .portfolio-name {
            font-family: var(--font-alt);
            font-size: 17px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
        }

        .portfolio-desc {
            font-size: 13px;
            color: var(--gray-600);
        }

        /* ===== CLIENTS SECTION ===== */
        #clients-home {
            padding: 80px 0;
            background: var(--navy);
            overflow: hidden;
        }

        .clients-track-wrap {
            overflow: hidden;
            margin-top: 40px;
        }

        .clients-track {
            display: flex;
            gap: 32px;
            animation: scrollTrack 20s linear infinite;
            width: max-content;
        }

        @keyframes scrollTrack {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .client-logo {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            padding: 20px 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 160px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 700;
            font-size: 15px;
            transition: var(--transition);
            white-space: nowrap;
            font-family: var(--font-alt);
        }

        .client-logo:hover {
            background: rgba(13, 148, 136, 0.15);
            color: var(--teal-glow);
            border-color: rgba(13, 148, 136, 0.3);
        }

        /* ===== WHY US ===== */
        #why-us {
            padding: 100px 0;
            background: var(--off-white);
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .why-visual {
            position: relative;
            padding: 20px;
        }

        .why-main-card {
            background: var(--navy);
            border-radius: var(--radius-lg);
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .why-main-card::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: rgba(13, 148, 136, 0.15);
            border-radius: 50%;
            filter: blur(40px);
        }

        .why-circles {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .circle-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .circle-ring {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 3px solid var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: rotateRing 8s linear infinite;
        }

        .circle-ring::before {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--teal-glow);
            border-radius: 50%;
            top: -6px;
            right: 50%;
            transform: translateX(50%);
            box-shadow: 0 0 10px var(--teal-glow);
        }

        .circle-ring:nth-child(2) {
            animation-direction: reverse;
            animation-duration: 6s;
        }

        @keyframes rotateRing {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .circle-num {
            font-family: var(--font-alt);
            font-size: 22px;
            font-weight: 900;
            color: var(--teal-glow);
            position: relative;
            z-index: 1;
        }

        .circle-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }

        .why-stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 16px;
        }

        .why-stat-box {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 16px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .why-stat-box .num {
            font-family: var(--font-alt);
            font-size: 24px;
            font-weight: 900;
            color: var(--gold-light);
        }

        .why-stat-box .lbl {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 4px;
        }

        .why-features {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-top: 40px;
        }

        .why-feature {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 24px;
            background: var(--white);
            border-radius: var(--radius-md);
            border: 1px solid var(--gray-200);
            transition: var(--transition);
        }

        .why-feature:hover {
            border-color: rgba(13, 148, 136, 0.3);
            box-shadow: var(--shadow-md);
            transform: translateX(-4px);
        }

        .why-feat-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .why-feat-title {
            font-family: var(--font-alt);
            font-size: 17px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
        }

        .why-feat-desc {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ===== PRICING ===== */
        #pricing-home {
            padding: 100px 0;
            background: var(--white);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 16px;
        }

        .pricing-card {
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            border: 2px solid var(--gray-200);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.popular {
            border-color: var(--teal);
            background: var(--navy);
            color: white;
            transform: scale(1.03);
        }

        .pricing-card.popular:hover {
            transform: scale(1.03) translateY(-8px);
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--navy);
            font-size: 12px;
            font-weight: 800;
            padding: 5px 16px;
            border-radius: 50px;
            white-space: nowrap;
        }

        .pricing-icon {
            font-size: 40px;
            margin-bottom: 20px;
            display: block;
        }

        .pricing-name {
            font-family: var(--font-alt);
            font-size: 20px;
            font-weight: 900;
            margin-bottom: 8px;
            color: var(--navy);
        }

        .pricing-card.popular .pricing-name {
            color: white;
        }

        .pricing-tagline {
            font-size: 14px;
            color: var(--gray-600);
            margin-bottom: 24px;
        }

        .pricing-card.popular .pricing-tagline {
            color: rgba(255, 255, 255, 0.6);
        }

        .pricing-price {
            font-family: var(--font-alt);
            margin-bottom: 32px;
        }

        .price-amount {
            font-size: 48px;
            font-weight: 900;
            color: var(--teal);
            line-height: 1;
        }

        .pricing-card.popular .price-amount {
            color: var(--teal-glow);
        }

        .price-currency {
            font-size: 20px;
            font-weight: 700;
            vertical-align: top;
            margin-top: 8px;
            display: inline-block;
        }

        .price-period {
            font-size: 14px;
            color: var(--gray-400);
            margin-top: 4px;
        }

        .pricing-card.popular .price-period {
            color: rgba(255, 255, 255, 0.4);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 32px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--gray-600);
        }

        .pricing-card.popular .pricing-features li {
            color: rgba(255, 255, 255, 0.8);
        }

        .feat-check {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(13, 148, 136, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal);
            font-size: 11px;
            flex-shrink: 0;
            border: 1px solid rgba(13, 148, 136, 0.2);
        }

        .pricing-card.popular .feat-check {
            background: rgba(13, 148, 136, 0.2);
            border-color: rgba(13, 148, 136, 0.4);
        }

        /* ===== TESTIMONIALS ===== */
        #testimonials {
            padding: 100px 0;
            background: var(--off-white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 16px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 32px;
            border: 1px solid var(--gray-200);
            transition: var(--transition);
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 16px;
            left: 24px;
            font-size: 80px;
            font-family: Georgia, serif;
            color: rgba(13, 148, 136, 0.1);
            line-height: 1;
        }

        .stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
            color: var(--gold);
            font-size: 16px;
        }

        .testimonial-text {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
            font-family: var(--font-alt);
        }

        .author-name {
            font-weight: 700;
            font-size: 15px;
            color: var(--navy);
        }

        .author-title {
            font-size: 12px;
            color: var(--gray-400);
            margin-top: 2px;
        }

        /* ===== CTA SECTION ===== */
        #cta-main {
            padding: 100px 0;
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

        #cta-main::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 60% at 30% 50%, rgba(13, 148, 136, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 70% 30%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
        }

        .cta-inner {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .cta-title {
            font-family: var(--font-alt);
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 900;
            color: white;
            margin-bottom: 16px;
        }

        .cta-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 48px;
        }

        .cta-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #070f1d;
            color: rgba(255, 255, 255, 0.6);
            padding: 70px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand .logo-text {
            color: white;
            margin-bottom: 16px;
            display: block;
            font-family: var(--font-alt);
            font-size: 24px;
            font-weight: 900;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 16px;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--teal);
            border-color: var(--teal);
        }

        .footer-col h4 {
            font-family: var(--font-alt);
            font-size: 15px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 10px;
            transition: var(--transition);
            cursor: pointer;
        }

        .footer-col a:hover {
            color: var(--teal-glow);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-copy {
            font-size: 13px;
        }

        .footer-made {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.3);
        }

        .footer-made span {
            color: var(--teal-glow);
        }

        /* ===== WHATSAPP FLOAT ===== */
        .wa-float {
            position: fixed;
            bottom: 28px;
            left: 28px;
            z-index: 900;
            animation: waFloat 3s ease-in-out infinite;
        }

        @keyframes waFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .wa-float a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 58px;
            height: 58px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 50%;
            color: white;
            font-size: 26px;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
            transition: var(--transition);
        }

        .wa-float a:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
        }

        .wa-pulse {
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 2px solid rgba(37, 211, 102, 0.4);
            animation: waPulse 2.5s ease-out infinite;
        }

        @keyframes waPulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            100% {
                transform: scale(1.8);
                opacity: 0;
            }
        }

        /* ===== SERVICES PAGE ===== */
        .page-hero {
            min-height: 380px;
            background: var(--navy);
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(13, 148, 136, 0.2) 0%, transparent 60%);
        }

        .page-hero-content {
            position: relative;
            z-index: 1;
        }

        .page-title {
            font-family: var(--font-alt);
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 900;
            color: white;
            margin-bottom: 16px;
        }

        .page-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.65);
            max-width: 560px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
        }

        .breadcrumb span {
            color: var(--teal-glow);
        }

        .services-detailed {
            padding: 80px 0;
        }

        .service-detail-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid var(--gray-200);
            margin-bottom: 28px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 32px;
            align-items: center;
            transition: var(--transition);
        }

        .service-detail-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: rgba(13, 148, 136, 0.2);
            transform: translateX(-4px);
        }

        .svc-detail-icon {
            width: 80px;
            height: 80px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            flex-shrink: 0;
        }

        .svc-detail-title {
            font-family: var(--font-alt);
            font-size: 22px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .svc-detail-desc {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .svc-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .svc-tag {
            background: var(--gray-100);
            color: var(--gray-600);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 50px;
        }

        /* ===== PORTFOLIO PAGE ===== */
        .portfolio-full {
            padding: 80px 0;
        }

        .portfolio-full-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 32px;
        }

        /* ===== ABOUT PAGE ===== */
        .about-section {
            padding: 80px 0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-visual {
            position: relative;
        }

        .about-card-main {
            background: var(--navy);
            border-radius: var(--radius-xl);
            padding: 48px;
            position: relative;
            overflow: hidden;
        }

        .about-card-main::before {
            content: 'URPROFILE';
            position: absolute;
            bottom: -20px;
            left: -10px;
            font-size: 80px;
            font-weight: 900;
            font-family: var(--font-alt);
            color: rgba(255, 255, 255, 0.03);
            white-space: nowrap;
        }

        .about-logo-big {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--teal), var(--teal-glow));
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-alt);
            font-weight: 900;
            font-size: 32px;
            color: white;
            margin: 0 auto 24px;
            box-shadow: var(--shadow-teal);
        }

        .about-card-title {
            font-family: var(--font-alt);
            font-size: 28px;
            font-weight: 900;
            color: white;
            text-align: center;
            margin-bottom: 12px;
        }

        .about-card-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            text-align: center;
            line-height: 1.8;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 32px;
        }

        .about-stat {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 20px 12px;
            text-align: center;
        }

        .about-stat .n {
            font-family: var(--font-alt);
            font-size: 28px;
            font-weight: 900;
            color: var(--teal-glow);
        }

        .about-stat .l {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 4px;
        }

        .about-text {}

        .about-lead {
            font-size: 19px;
            color: var(--navy);
            font-weight: 600;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .about-body {
            font-size: 16px;
            color: var(--gray-600);
            line-height: 1.9;
            margin-bottom: 32px;
        }

        .vision-mission {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 32px;
        }

        .vm-card {
            padding: 28px;
            border-radius: var(--radius-md);
            border: 1px solid var(--gray-200);
            transition: var(--transition);
        }

        .vm-card:hover {
            border-color: var(--teal);
            box-shadow: var(--shadow-md);
        }

        .vm-icon {
            font-size: 32px;
            margin-bottom: 12px;
        }

        .vm-title {
            font-family: var(--font-alt);
            font-size: 17px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .vm-text {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ===== PRICING PAGE ===== */
        .pricing-full {
            padding: 80px 0;
        }

        .pricing-compare {
            margin-top: 60px;
            overflow-x: auto;
        }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .compare-table th {
            padding: 24px 20px;
            font-family: var(--font-alt);
            font-weight: 700;
            font-size: 16px;
        }

        .compare-table th:first-child {
            background: var(--gray-100);
            color: var(--gray-600);
            text-align: right;
        }

        .compare-table th:nth-child(2) {
            background: var(--gray-100);
            color: var(--navy);
        }

        .compare-table th:nth-child(3) {
            background: var(--teal);
            color: white;
        }

        .compare-table th:nth-child(4) {
            background: var(--navy);
            color: white;
        }

        .compare-table td {
            padding: 16px 20px;
            border-bottom: 1px solid var(--gray-200);
            font-size: 14px;
            color: var(--gray-600);
            text-align: center;
        }

        .compare-table td:first-child {
            text-align: right;
            color: var(--navy);
            font-weight: 600;
        }

        .compare-table tr:last-child td {
            border-bottom: none;
        }

        .compare-table tr:hover td {
            background: rgba(13, 148, 136, 0.04);
        }

        .check-yes {
            color: var(--teal);
            font-size: 18px;
        }

        .check-no {
            color: var(--gray-300);
            font-size: 18px;
        }

        /* ===== CLIENTS PAGE ===== */
        .clients-full {
            padding: 80px 0;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 20px;
            margin-top: 16px;
        }

        .client-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-md);
            padding: 32px 20px;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
        }

        .client-card:hover {
            border-color: var(--teal);
            box-shadow: var(--shadow-teal);
            transform: translateY(-4px);
        }

        .client-initial {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-alt);
            font-size: 22px;
            font-weight: 900;
            color: white;
            margin: 0 auto 16px;
        }

        .client-card-name {
            font-weight: 700;
            font-size: 15px;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .client-card-type {
            font-size: 12px;
            color: var(--gray-400);
        }

        /* ===== CONTACT PAGE ===== */
        .contact-full {
            padding: 80px 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info {}

        .contact-card {
            background: var(--navy);
            border-radius: var(--radius-lg);
            padding: 40px;
            color: white;
        }

        .contact-card-title {
            font-family: var(--font-alt);
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .contact-card-sub {
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
            margin-bottom: 36px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .contact-item-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-item-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 4px;
        }

        .contact-item-val {
            font-size: 15px;
            color: white;
            font-weight: 600;
        }

        .contact-form {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 48px;
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow-sm);
        }

        .form-title {
            font-family: var(--font-alt);
            font-size: 24px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 32px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .form-input {
            width: 100%;
            padding: 14px 18px;
            border: 1.5px solid var(--gray-200);
            border-radius: var(--radius-sm);
            font-family: var(--font-main);
            font-size: 15px;
            color: var(--gray-800);
            background: var(--white);
            transition: var(--transition);
            outline: none;
            direction: rtl;
        }

        .form-input:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
        }

        textarea.form-input {
            resize: vertical;
            min-height: 120px;
        }

        select.form-input {
            cursor: pointer;
        }

        /* ===== ORDER PAGE ===== */
        .order-full {
            padding: 80px 0;
        }

        .order-form-wrap {
            max-width: 700px;
            margin: 0 auto;
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 56px;
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow-lg);
        }

        .order-form-title {
            font-family: var(--font-alt);
            font-size: 28px;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 8px;
            text-align: center;
        }

        .order-form-sub {
            text-align: center;
            color: var(--gray-600);
            margin-bottom: 40px;
        }

        .step-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 40px;
        }

        .step {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            border: 2px solid var(--gray-200);
            color: var(--gray-400);
            transition: var(--transition);
        }

        .step.active {
            background: var(--teal);
            border-color: var(--teal);
            color: white;
        }

        .step.done {
            background: rgba(13, 148, 136, 0.1);
            border-color: var(--teal);
            color: var(--teal);
        }

        .step-line {
            flex: 1;
            height: 2px;
            background: var(--gray-200);
            max-width: 60px;
        }

        .step-line.done {
            background: var(--teal);
        }

        .services-select-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 24px;
        }

        .svc-option {
            border: 2px solid var(--gray-200);
            border-radius: var(--radius-sm);
            padding: 16px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .svc-option:hover {
            border-color: var(--teal);
            background: rgba(13, 148, 136, 0.04);
        }

        .svc-option.selected {
            border-color: var(--teal);
            background: rgba(13, 148, 136, 0.08);
        }

        .svc-option-icon {
            font-size: 22px;
        }

        .svc-option-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--navy);
        }

        /* ===== COUNTERS ===== */
        .counter-section {
            padding: 70px 0;
            background: var(--navy);
        }

        .counters-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            text-align: center;
        }

        .counter-item {}

        .counter-num {
            font-family: var(--font-alt);
            font-size: 48px;
            font-weight: 900;
            color: var(--teal-glow);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            margin-bottom: 8px;
        }

        .counter-plus {
            font-size: 32px;
            color: var(--gold-light);
        }

        .counter-label {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.55);
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-btns {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-visual {
                max-width: 500px;
                margin: 0 auto;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .pricing-card.popular {
                transform: none;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .service-detail-card {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .svc-detail-icon {
                margin: 0 auto;
            }

            .svc-tags {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .header-cta .btn {
                display: none;
            }

            .hero-title {
                font-size: 32px;
            }

            .services-grid {
                grid-template-columns: 1fr 1fr;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .counters-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .order-form-wrap {
                padding: 32px 24px;
            }

            .vision-mission {
                grid-template-columns: 1fr;
            }

            .about-stats {
                grid-template-columns: repeat(3, 1fr);
            }

            .why-stats-row {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
            }

            .hero-stats {
                gap: 24px;
            }

            .counters-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-select-grid {
                grid-template-columns: 1fr;
            }

            .section-pad {
                padding: 70px 0;
            }
        }
    
