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

        html {
            scroll-behavior: smooth;
        }

        section[id] {
            scroll-margin-top: 96px;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: #F8F9FA;
            color: #333333;
            line-height: 1.6;
            scrollbar-color: #0F7C3F #E6EEE9;
        }

        body::-webkit-scrollbar {
            width: 10px;
        }

        body::-webkit-scrollbar-track {
            background: #E6EEE9;
        }

        body::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #0F7C3F, #006C35);
            border-radius: 999px;
            border: 2px solid #E6EEE9;
        }

        body::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #00A651, #006C35);
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(236, 249, 242, 0.18));
            border-bottom: 1px solid rgba(0, 108, 53, 0.2);
            box-shadow: 0 8px 24px rgba(0, 108, 53, 0.1);
            backdrop-filter: blur(18px) saturate(130%);
            -webkit-backdrop-filter: blur(18px) saturate(130%);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            gap: 14px;
        }

        .header-brand {
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            flex-shrink: 0;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: #006C35;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Cairo', sans-serif;
        }

        .brand-name {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 0.3px;
            background: linear-gradient(135deg, #006C35, #00A651);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .brand-name .brand-accent {
            color: #C5A059;
            background: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #006C35, #00A651);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
        }

        nav {
            display: flex;
            gap: 14px;
            align-items: center;
            flex: 1;
            min-width: 0;
        }

        .nav-links {
            display: flex;
            gap: 18px;
            align-items: center;
            flex: 1;
            min-width: 0;
        }

        nav a {
            color: #1F3B2D;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            font-size: 15px;
        }

        nav a:hover {
            color: #006C35;
        }

        .nav-utility {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .cta-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: nowrap;
            align-items: center;
            flex-shrink: 0;
        }

        .auth-actions {
            display: flex;
            align-items: center;
        }

        .lang-select {
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 10px;
            border: 1px solid rgba(0, 108, 53, 0.2);
            background: rgba(255, 255, 255, 0.28);
            font-size: 14px;
            color: #333333;
        }

        .lang-select select {
            border: none;
            background: transparent;
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            cursor: pointer;
            padding-left: 6px;
            color: #1f3b2d;
            min-width: 110px;
        }

        .lang-select select:focus {
            outline: none;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 14px;
            white-space: nowrap;
        }

        .cta-buttons .btn {
            padding: 10px 16px;
            font-size: 13px;
            border-radius: 999px;
        }

        .btn-auth {
            background-color: rgba(255, 255, 255, 0.8);
            color: #0f7c3f;
            border: 1px solid rgba(15, 124, 63, 0.25);
            border-radius: 999px;
            padding: 9px 14px;
            font-size: 13px;
            font-weight: 700;
        }

        .btn-auth:hover {
            background-color: #0f7c3f;
            color: #fff;
        }

        .profile-icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #0f7c3f;
            color: #fff;
            text-decoration: none;
            box-shadow: 0 8px 16px rgba(15, 124, 63, 0.25);
            transition: transform 0.2s ease, background-color 0.2s ease;
        }

        .profile-icon-btn:hover {
            background: #0b6a35;
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-primary {
            background-color: #006C35;
            color: white;
        }

        .btn-primary:hover {
            background-color: #005028;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 108, 53, 0.3);
        }

        .btn-secondary {
            background-color: rgba(255, 255, 255, 0.22);
            color: #006C35;
            border: 2px solid #006C35;
        }

        .btn-secondary:hover {
            background-color: #006C35;
            color: white;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: #006C35;
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #006C35 0%, #00A651 100%);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
            pointer-events: none;
        }

        /* Saudi Cultural Elements */
        .saudi-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            opacity: 0.15;
            background-image:
                repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(197, 160, 89, 0.4) 35px, rgba(197, 160, 89, 0.4) 70px),
                repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(197, 160, 89, 0.3) 35px, rgba(197, 160, 89, 0.3) 70px);
        }

        .floating-icon {
            position: absolute;
            font-size: 80px;
            opacity: 0.25;
            animation: float 6s ease-in-out infinite;
            filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.5));
            pointer-events: none;
        }

        .icon-1 {
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .icon-2 {
            top: 30%;
            left: 8%;
            animation-delay: 2s;
        }

        .icon-3 {
            bottom: 15%;
            right: 15%;
            animation-delay: 4s;
        }

        .icon-4 {
            bottom: 25%;
            left: 12%;
            animation-delay: 1s;
            font-size: 70px;
        }

        .icon-5 {
            top: 50%;
            right: 5%;
            animation-delay: 3s;
            font-size: 65px;
        }

        .icon-6 {
            top: 20%;
            left: 50%;
            animation-delay: 2.5s;
            font-size: 75px;
        }

        .icon-7 {
            bottom: 40%;
            left: 5%;
            animation-delay: 1.5s;
            font-size: 60px;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.25;
            }
            50% {
                transform: translateY(-30px) rotate(8deg);
                opacity: 0.4;
            }
        }

        /* Animated Particles */
        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background-color: rgba(197, 160, 89, 0.8);
            border-radius: 50%;
            animation: particle-float 15s linear infinite;
            box-shadow: 0 0 10px rgba(197, 160, 89, 0.6);
            pointer-events: none;
        }

        @keyframes particle-float {
            0% {
                transform: translateY(100vh) translateX(0) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
                transform: translateY(90vh) translateX(20px) scale(1);
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) translateX(150px) scale(0);
                opacity: 0;
            }
        }

        /* Sword Animation */
        .swords-emblem {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 300px;
            opacity: 0.08;
            filter: blur(2px);
            animation: pulse 8s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes pulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.08;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.15);
                opacity: 0.12;
            }
        }

        /* Palm Trees */
        .palm-tree {
            position: absolute;
            font-size: 120px;
            opacity: 0.15;
            animation: sway 4s ease-in-out infinite;
            pointer-events: none;
        }

        .palm-left {
            bottom: 0;
            left: 50px;
            animation-delay: 0s;
        }

        .palm-right {
            bottom: 0;
            right: 50px;
            animation-delay: 1s;
        }

        @keyframes sway {
            0%, 100% {
                transform: rotate(-3deg);
            }
            50% {
                transform: rotate(3deg);
            }
        }

        /* Stars */
        .star {
            position: absolute;
            color: #C5A059;
            font-size: 20px;
            animation: twinkle 3s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes twinkle {
            0%, 100% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.3);
            }
        }

        /* Light Rays */
        .light-ray {
            position: absolute;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.3), transparent);
            animation: ray-move 10s linear infinite;
            pointer-events: none;
        }

        @keyframes ray-move {
            0% {
                transform: translateX(-100px);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateX(100px);
                opacity: 0;
            }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            color: white;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: hero-title-reveal 1s ease-out both;
        }

        .hero-subtitle {
            font-size: 20px;
            font-weight: 300;
            margin-bottom: 15px;
            opacity: 0.95;
            animation: hero-subtitle-reveal 1.2s ease-out both;
            animation-delay: 0.15s;
        }

        .hero-cards {
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            animation: hero-cards-reveal 1.3s ease-out both;
            animation-delay: 0.3s;
        }

        /* Hero Cards - Circular Style - Enhanced Premium Design */
        .hero-cards--circles {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1000px;
            margin: 40px auto 0;
            perspective: 1000px;
        }

        .hero-circle {
            position: relative;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,255,250,0.92) 100%);
            border: none;
            box-shadow:
                0 10px 40px rgba(0, 108, 53, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                inset 0 -2px 0 rgba(0, 108, 53, 0.05);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: visible;
            animation: circle-appear 0.8s ease-out backwards;
        }

        /* Animated ring effect */
        .hero-circle::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--circle-color, #006C35) 0%, var(--circle-color-light, #00A651) 50%, var(--circle-color, #006C35) 100%);
            z-index: -1;
            opacity: 0.6;
            animation: ring-rotate 8s linear infinite;
            transition: opacity 0.4s ease;
        }

        .hero-circle::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--circle-color, #006C35), transparent, var(--circle-color, #006C35));
            z-index: -2;
            opacity: 0.3;
            animation: ring-pulse 3s ease-in-out infinite;
        }

        @keyframes ring-rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes ring-pulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.02); }
        }

        .hero-circle:hover {
            transform: translateY(-15px) scale(1.1);
            box-shadow:
                0 25px 50px rgba(0, 108, 53, 0.25),
                0 10px 20px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 0 30px var(--circle-color-light, rgba(0, 166, 81, 0.3));
        }

        .hero-circle:hover::before {
            opacity: 1;
        }

        /* Staggered animations */
        .hero-circle:nth-child(1) { animation-delay: 0s; }
        .hero-circle:nth-child(2) { animation-delay: 0.1s; }
        .hero-circle:nth-child(3) { animation-delay: 0.2s; }
        .hero-circle:nth-child(4) { animation-delay: 0.3s; }
        .hero-circle:nth-child(5) { animation-delay: 0.4s; }
        .hero-circle:nth-child(6) { animation-delay: 0.5s; }

        @keyframes circle-appear {
            0% {
                opacity: 0;
                transform: scale(0.5) translateY(30px);
            }
            60% {
                transform: scale(1.05) translateY(-5px);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        @keyframes circle-float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .hero-circle-inner {
            position: absolute;
            inset: 8px;
            border-radius: 50%;
            background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(248,255,250,0.85) 100%);
            border: 2px solid rgba(var(--circle-color-rgb, 0, 108, 53), 0.15);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .hero-circle:hover .hero-circle-inner {
            border-color: var(--circle-color, #006C35);
            box-shadow: inset 0 0 20px rgba(var(--circle-color-rgb, 0, 108, 53), 0.1);
        }

        .hero-circle-icon {
            font-size: 42px;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .hero-circle:hover .hero-circle-icon {
            transform: scale(1.25) rotate(15deg);
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
        }

        .hero-circle-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-circle-main {
            font-size: 13px;
            font-weight: 800;
            color: #0B3B23;
            text-align: center;
            line-height: 1.4;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }

        .hero-circle:hover .hero-circle-main {
            color: var(--circle-color, #006C35);
        }

        .hero-circle-sub {
            font-size: 11px;
            font-weight: 700;
            color: var(--circle-color, #006C35);
            margin-top: 4px;
            padding: 2px 10px;
            background: rgba(var(--circle-color-rgb, 0, 108, 53), 0.1);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .hero-circle:hover .hero-circle-sub {
            background: var(--circle-color, #006C35);
            color: white;
        }

        /* Hajj Special Styles with RGB values for effects */
        .hero-circle--hajj-add {
            --circle-color: #f59e0b;
            --circle-color-light: #fbbf24;
            --circle-color-rgb: 245, 158, 11;
            background: linear-gradient(145deg, rgba(255,251,235,0.95) 0%, rgba(254,243,199,0.92) 100%);
        }

        .hero-circle--hajj-add .hero-circle-inner {
            border-color: rgba(245, 158, 11, 0.2);
        }

        .hero-circle--hajj-request {
            --circle-color: #2563eb;
            --circle-color-light: #3b82f6;
            --circle-color-rgb: 37, 99, 235;
            background: linear-gradient(145deg, rgba(239,246,255,0.95) 0%, rgba(219,234,254,0.92) 100%);
        }

        .hero-circle--hajj-request .hero-circle-inner {
            border-color: rgba(37, 99, 235, 0.2);
        }

        /* Sparkle effect on hover */
        .hero-circle-sparkle {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hero-circle:hover .hero-circle-sparkle {
            opacity: 1;
        }

        .sparkle-dot {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--circle-color, #006C35);
            border-radius: 50%;
            animation: sparkle 1s ease-in-out infinite;
        }

        .sparkle-dot:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
        .sparkle-dot:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.2s; }
        .sparkle-dot:nth-child(3) { bottom: 15%; left: 25%; animation-delay: 0.4s; }
        .sparkle-dot:nth-child(4) { bottom: 25%; right: 20%; animation-delay: 0.6s; }

        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }

        /* Responsive Circle Cards */
        @media (max-width: 768px) {
            .hero-cards--circles {
                gap: 20px;
            }

            .hero-circle {
                width: 120px;
                height: 120px;
            }

            .hero-circle-icon {
                font-size: 32px;
                margin-bottom: 6px;
            }

            .hero-circle-main {
                font-size: 11px;
            }

            .hero-circle-sub {
                font-size: 9px;
                padding: 2px 8px;
            }
        }

        @media (max-width: 480px) {
            .hero-cards--circles {
                gap: 16px;
            }

            .hero-circle {
                width: 100px;
                height: 100px;
            }

            .hero-circle-icon {
                font-size: 26px;
                margin-bottom: 4px;
            }

            .hero-circle-main {
                font-size: 9px;
            }

            .hero-circle-sub {
                font-size: 7px;
                padding: 1px 6px;
            }

            .hero-circle-inner {
                inset: 6px;
            }
        }

        @keyframes hero-title-reveal {
            from {
                opacity: 0;
                transform: translateY(16px);
                letter-spacing: 1px;
            }
            to {
                opacity: 1;
                transform: translateY(0);
                letter-spacing: 0;
            }
        }

        @keyframes hero-subtitle-reveal {
            from {
                opacity: 0;
                transform: translateY(18px);
            }
            to {
                opacity: 0.95;
                transform: translateY(0);
            }
        }

        @keyframes hero-cards-reveal {
            from {
                opacity: 0;
                transform: translateY(18px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-card {
            position: relative;
            background:
                linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 251, 246, 0.96) 100%);
            border-radius: 18px;
            padding: 20px 18px;
            border: 1px solid rgba(0, 108, 53, 0.22);
            color: #0B3B23;
            font-weight: 800;
            text-align: center;
            letter-spacing: -0.2px;
            box-shadow:
                0 18px 30px rgba(0, 0, 0, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
            transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, filter 0.28s ease;
            overflow: hidden;
            text-decoration: none;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -30%;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(0, 166, 81, 0.18) 0%, transparent 70%);
            opacity: 0.8;
            pointer-events: none;
            transition: transform 0.35s ease, opacity 0.35s ease;
        }

        .hero-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.45);
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .hero-card-sub {
            display: inline-block;
            margin-inline-start: 6px;
            color: #0A5B36;
            font-weight: 800;
        }

        .hero-card--accent {
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 248, 255, 0.96) 100%);
            border-color: rgba(28, 117, 188, 0.25);
            color: #0B3B23;
        }

        .hero-card--accent::before {
            background: radial-gradient(circle, rgba(28, 117, 188, 0.2) 0%, transparent 70%);
        }

        .hero-card--accent:hover {
            border-color: rgba(28, 117, 188, 0.6);
        }

        .hero-card--hajj-add {
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 244, 230, 0.96) 100%);
            border-color: rgba(212, 134, 34, 0.3);
        }

        .hero-card--hajj-add::before {
            background: radial-gradient(circle, rgba(212, 134, 34, 0.22) 0%, transparent 70%);
        }

        .hero-card--hajj-add:hover {
            border-color: rgba(212, 134, 34, 0.6);
        }

        .hero-card--hajj-request {
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 250, 243, 0.96) 100%);
            border-color: rgba(19, 126, 92, 0.3);
        }

        .hero-card--hajj-request::before {
            background: radial-gradient(circle, rgba(19, 126, 92, 0.22) 0%, transparent 70%);
        }

        .hero-card--hajj-request:hover {
            border-color: rgba(19, 126, 92, 0.6);
        }

        .hero-card:hover {
            transform: translateY(-6px) scale(1.01);
            border-color: rgba(0, 166, 81, 0.6);
            box-shadow:
                0 24px 38px rgba(0, 0, 0, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            filter: saturate(1.05);
        }

        .hero-card:hover::before {
            transform: translate(-6px, 6px) scale(1.1);
            opacity: 1;
        }

        .hero-card:hover::after {
            opacity: 0.85;
        }

        .hero-card:focus-visible {
            outline: 3px solid rgba(0, 166, 81, 0.45);
            outline-offset: 4px;
        }

        /* Search Box */
        .search-container {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .search-title {
            color: #333333;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 25px;
            text-align: center;
        }

        .search-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            color: #333333;
            font-weight: 700;
            font-size: 14px;
        }

        .form-group select,
        .form-group input {
            padding: 14px;
            border: 2px solid #E0E0E0;
            border-radius: 8px;
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            transition: all 0.3s;
            background-color: #F8F9FA;
        }

        .form-group select:focus,
        .form-group input:focus {
            outline: none;
            border-color: #006C35;
            background-color: white;
        }

        .search-button {
            grid-column: 1 / -1;
            padding: 16px;
            background-color: #006C35;
            color: white;
            border: none;
            border-radius: 8px;
            font-family: 'Cairo', sans-serif;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .search-button:hover {
            background-color: #005028;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 108, 53, 0.3);
        }

        .quick-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .quick-link {
            padding: 8px 16px;
            background-color: #F8F9FA;
            color: #333333;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
            border: 1px solid #E0E0E0;
        }

        .quick-link:hover {
            background-color: #006C35;
            color: white;
            border-color: #006C35;
        }

        /* Jobs Section */
        .jobs-section {
            padding: 90px 20px;
            background: radial-gradient(circle at top, #ffffff 0%, #F3F6F4 55%, #EEF3F0 100%);
        }

        .jobs-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 800;
            color: #0B3B23;
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-size: 16px;
            color: #4B5B52;
        }

        .section-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(0, 166, 81, 0.12);
            color: #006C35;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .section-link:hover {
            transform: translateY(-2px);
            background: rgba(0, 166, 81, 0.18);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .section-link::before {
            content: "💬";
            font-size: 16px;
        }

        .search-whatsapp-link {
            margin: 12px auto 0;
            display: inline-flex;
            justify-content: center;
        }

        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }

        .news-ticker {
            padding: 18px 20px;
            background: linear-gradient(135deg, #F8FFFE 0%, #FFFFFF 50%, #F3F8F6 100%);
        }

        .news-ticker__track {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .news-ticker__item {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 68px;
            padding: 0 18px;
            border-radius: 16px;
            background: linear-gradient(160deg, #ffffff 0%, #eef7f2 100%);
            border: 1px solid rgba(0, 108, 53, 0.18);
            color: #0B3B23;
            font-weight: 800;
            letter-spacing: -0.2px;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .news-ticker__track {
                gap: 12px;
            }

            .news-ticker__item {
                height: 56px;
                padding: 0 14px;
                font-size: 14px;
            }
        }

        @media (max-width: 420px) {
            .news-ticker__track {
                justify-content: flex-start;
            }

            .news-ticker__item {
                height: 52px;
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .news-ticker__track {
                flex-wrap: wrap;
                line-height: 1.8;
            }
        }

        .job-card {
            background: white;
            border-radius: 16px;
            padding: 22px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 108, 53, 0.12);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .job-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
        }

        .job-tag {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            background: rgba(0, 108, 53, 0.1);
            color: #006C35;
            margin-bottom: 12px;
        }

        .job-media {
            position: relative;
            margin-bottom: 14px;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .job-image {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
        }

        .job-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 800;
            color: white;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
        }

        .badge-green {
            background: #0F7C3F;
        }

        .badge-gold {
            background: #B8891F;
        }

        .badge-blue {
            background: #1E6B6D;
        }

        .badge-clay {
            background: #B24A3C;
        }

        .job-title {
            font-size: 20px;
            font-weight: 800;
            color: #0B3B23;
            margin-bottom: 8px;
        }

        .job-meta {
            font-size: 14px;
            color: #5C6D64;
            margin-bottom: 12px;
        }

        .job-footer {
            display: flex;
            align-items: flex-end;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 12px;
        }

        .job-actions {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            width: 100%;
        }

        .job-actions .job-btn {
            flex: 1 1 calc(50% - 4px);
            text-align: center;
        }

        .job-btn {
            padding: 8px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            text-decoration: none;
            border: 1px solid transparent;
            transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
        }

        .job-btn-primary {
            background: #006C35;
            color: white;
            box-shadow: 0 8px 18px rgba(0, 108, 53, 0.2);
        }

        .job-btn-secondary {
            background: #F2F5F4;
            color: #006C35;
            border-color: rgba(0, 108, 53, 0.2);
        }

        .job-btn:hover {
            transform: translateY(-1px);
        }

        .job-salary {
            font-weight: 800;
            color: #C5A059;
            font-size: 16px;
            flex: 1 1 100%;
            min-width: 0;
        }

        .job-action {
            text-decoration: none;
            font-weight: 700;
            color: #006C35;
            font-size: 14px;
        }

        .jobs-cta {
            text-align: center;
            margin-top: 35px;
        }

        .jobs-cta .btn {
            padding: 12px 24px;
        }

        /* Urgent Ads Section */
        .urgent-section {
            padding: 70px 20px 40px;
            background:
                radial-gradient(circle at 14% 8%, rgba(15, 124, 63, 0.08) 0%, transparent 42%),
                radial-gradient(circle at 86% 12%, rgba(15, 124, 63, 0.05) 0%, transparent 44%),
                linear-gradient(120deg, #F7FCF9 0%, #FFFFFF 64%);
        }

        .urgent-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .urgent-live {
            margin-top: 8px;
            font-size: 13px;
            font-weight: 600;
            color: rgba(11, 59, 35, 0.7);
        }

        .urgent-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .urgent-card {
            background: #FFFFFF;
            border-radius: 14px;
            padding: 18px;
            border: 1px solid rgba(15, 124, 63, 0.16);
            box-shadow: 0 10px 22px rgba(11, 59, 35, 0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            opacity: 0;
            transform: translateY(10px);
            animation: urgent-card-in 0.55s ease forwards;
            animation-delay: var(--delay);
        }

        .urgent-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 28px rgba(11, 59, 35, 0.14);
            border-color: rgba(15, 124, 63, 0.28);
        }

        @keyframes urgent-card-in {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .urgent-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #0F7C3F, #18A957, #0F7C3F);
            background-size: 180% 100%;
            animation: urgent-line 2.8s linear infinite;
        }

        .urgent-card::before {
            content: '';
            position: absolute;
            inset: -30% auto auto -30%;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(15, 124, 63, 0.12) 0%, rgba(15, 124, 63, 0) 70%);
            pointer-events: none;
            animation: urgent-glow 4.6s ease-in-out infinite;
        }

        @keyframes urgent-line {
            0% { background-position: 0% 0; }
            100% { background-position: 180% 0; }
        }

        @keyframes urgent-glow {
            0%, 100% { opacity: 0.45; transform: translate(0, 0); }
            50% { opacity: 0.9; transform: translate(18px, 10px); }
        }

        .urgent-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 800;
            background: rgba(15, 124, 63, 0.13);
            color: #0B6A35;
            border: 1px solid rgba(15, 124, 63, 0.18);
            margin-bottom: 10px;
            animation: urgent-badge-pulse 2s ease-in-out infinite;
        }

        @keyframes urgent-badge-pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(15, 124, 63, 0.18);
            }
            50% {
                box-shadow: 0 0 0 6px rgba(15, 124, 63, 0);
            }
        }

        .urgent-title {
            font-size: 17px;
            font-weight: 800;
            color: #0B3B23;
            margin-bottom: 4px;
        }

        .urgent-meta {
            font-size: 13px;
            color: #5C6D64;
            margin-bottom: 12px;
        }

        .urgent-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-top: 12px;
        }

        .urgent-pay {
            font-weight: 800;
            color: #0F7C3F;
            font-size: 14px;
        }

        .urgent-link {
            text-decoration: none;
            font-weight: 700;
            color: #0F7C3F;
            font-size: 13px;
            padding: 6px 10px;
            border-radius: 8px;
            border: 1px solid rgba(15, 124, 63, 0.16);
            transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        }

        .urgent-link:hover {
            background: #0F7C3F;
            color: #FFFFFF;
            border-color: #0F7C3F;
        }

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

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

        /* Requests Section */
        .requests-section {
            padding: 90px 20px;
            background: linear-gradient(120deg, #F7F3EE 0%, #FFFFFF 60%);
        }

        .requests-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .requests-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        .request-card {
            background: white;
            border-radius: 16px;
            padding: 22px;
            border: 1px solid rgba(0, 108, 53, 0.12);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .request-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
        }

        .request-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .request-title {
            font-size: 18px;
            font-weight: 800;
            color: #2E3B33;
        }

        .request-chip {
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            background: rgba(0, 108, 53, 0.1);
            color: #006C35;
        }

        .request-desc {
            font-size: 14px;
            color: #5C6D64;
            margin-bottom: 12px;
        }

        .request-meta {
            font-size: 13px;
            color: #6E7B74;
            margin-bottom: 14px;
        }

        .request-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .request-actions {
            display: flex;
            gap: 8px;
        }

        .request-btn {
            padding: 8px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            text-decoration: none;
            border: 1px solid transparent;
            transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
        }

        .request-btn-primary {
            background: #8A6A2B;
            color: white;
            box-shadow: 0 8px 18px rgba(138, 106, 43, 0.2);
        }

        .request-btn-secondary {
            background: #F8F2E8;
            color: #8A6A2B;
            border-color: rgba(138, 106, 43, 0.25);
        }

        .request-btn:hover {
            transform: translateY(-1px);
        }

        .request-budget {
            font-size: 16px;
            font-weight: 800;
            color: #006C35;
        }

        .request-action {
            text-decoration: none;
            font-weight: 700;
            color: #006C35;
            font-size: 14px;
        }

        /* Services Section */
        .services-section {
            padding: 90px 20px;
            background: linear-gradient(135deg, #FFFFFF 0%, #F2F5F4 60%, #E9F0EC 100%);
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }

        .service-card {
            background: #fff;
            border-radius: 16px;
            padding: 22px;
            border: 1px solid rgba(0, 108, 53, 0.12);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
        }

        .service-title {
            font-size: 18px;
            font-weight: 800;
            color: #0B3B23;
            margin-bottom: 10px;
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 8px;
            color: #4B5B52;
            font-size: 14px;
        }

        .service-list li::before {
            content: "•";
            color: #006C35;
            margin-left: 6px;
        }

        .service-highlight {
            background: rgba(0, 108, 53, 0.08);
            border: 1px solid rgba(0, 108, 53, 0.16);
            padding: 16px;
            border-radius: 14px;
            color: #2E3B33;
            font-size: 14px;
            line-height: 1.7;
        }

        .service-badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            background: rgba(197, 160, 89, 0.15);
            color: #8A6A2B;
            margin-bottom: 10px;
        }

        .platform-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .platform-tag {
            padding: 6px 12px;
            border-radius: 999px;
            background: #F7F3EE;
            border: 1px solid rgba(197, 160, 89, 0.35);
            font-size: 12px;
            font-weight: 700;
            color: #6F5A2A;
        }

        .services-cta {
            text-align: center;
            margin-top: 30px;
        }

        /* Guarantee Section */
        .guarantee-section {
            padding: 90px 20px;
            background: radial-gradient(circle at top, #FFFFFF 0%, #F5F7F6 55%, #EEF2F0 100%);
        }

        .guarantee-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .guarantee-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        .guarantee-card {
            background: #fff;
            border-radius: 16px;
            padding: 22px;
            border: 1px solid rgba(0, 108, 53, 0.12);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
        }

        .guarantee-badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            background: rgba(0, 108, 53, 0.12);
            color: #006C35;
            margin-bottom: 10px;
        }

        .guarantee-title {
            font-size: 20px;
            font-weight: 800;
            color: #0B3B23;
            margin-bottom: 8px;
        }

        .guarantee-text {
            font-size: 14px;
            color: #4B5B52;
            line-height: 1.7;
        }

        .guarantee-cta {
            text-align: center;
            margin-top: 30px;
        }

        .guarantee-link {
            color: #006C35;
            font-weight: 700;
            text-decoration: none;
        }

        /* Directory Section */
        .directory-section {
            padding: 90px 20px;
            background: linear-gradient(120deg, #F8F6F2 0%, #FFFFFF 65%);
        }

        .directory-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .directory-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        .directory-card {
            background: #fff;
            border-radius: 16px;
            padding: 22px;
            border: 1px solid rgba(197, 160, 89, 0.2);
            box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
        }

        .directory-title {
            font-size: 18px;
            font-weight: 800;
            color: #2E3B33;
            margin-bottom: 10px;
        }

        .directory-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 8px;
            font-size: 14px;
            color: #5C6D64;
        }

        .directory-list li::before {
            content: "•";
            color: #C5A059;
            margin-left: 6px;
        }

        .directory-note {
            font-size: 13px;
            color: #6E7B74;
            margin-top: 10px;
        }

        .directory-cta {
            text-align: center;
            margin-top: 30px;
        }

        /* Footer */
        .site-footer {
            padding: 70px 20px 40px;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 166, 81, 0.18) 0%, transparent 65%),
                radial-gradient(ellipse 60% 50% at 85% 100%, rgba(200, 146, 42, 0.12) 0%, transparent 58%),
                radial-gradient(ellipse 40% 40% at 10% 80%, rgba(61, 190, 131, 0.14) 0%, transparent 52%),
                linear-gradient(135deg, #F7FFFB 0%, #ECF9F2 52%, #F9FFFC 100%);
            color: #234D38;
        }

        .site-footer::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image:
                repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0, 108, 53, 0.07) 35px, rgba(0, 108, 53, 0.07) 70px),
                repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(0, 166, 81, 0.05) 35px, rgba(0, 166, 81, 0.05) 70px);
            opacity: 0.85;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

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

        .footer-grid > div {
            background: rgba(255, 255, 255, 0.62);
            border: 1px solid rgba(11, 59, 35, 0.12);
            border-radius: 14px;
            padding: 16px;
            box-shadow: 0 12px 28px rgba(11, 59, 35, 0.08);
            backdrop-filter: blur(2px);
        }

        .footer-title {
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 12px;
            color: #0B3B23;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-title::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: linear-gradient(135deg, #E8B84B 0%, #00A651 100%);
            box-shadow: 0 0 0 4px rgba(200, 146, 42, 0.16);
        }

        .footer-text {
            font-size: 14px;
            color: #466857;
            line-height: 1.8;
        }

        .footer-text-more[hidden] {
            display: none;
        }

        .footer-toggle {
            margin-top: 12px;
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid rgba(11, 59, 35, 0.24);
            background: rgba(255, 255, 255, 0.72);
            color: #0B3B23;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
        }

        .footer-toggle:hover {
            border-color: rgba(11, 59, 35, 0.4);
            color: #0B3B23;
            background: rgba(200, 146, 42, 0.22);
        }

        .footer-toggle:focus-visible {
            outline: 2px solid #C5A059;
            outline-offset: 2px;
        }

        .footer-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 8px;
            font-size: 14px;
            color: #466857;
        }

        .footer-list li {
            padding-bottom: 6px;
            border-bottom: 1px dashed rgba(11, 59, 35, 0.16);
        }

        .footer-list li:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

        .footer-link {
            color: #1E5A3E;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: #F8E2B3;
        }

        .footer-bottom {
            border-top: 1px solid rgba(11, 59, 35, 0.15);
            padding-top: 20px;
            font-size: 13px;
            color: #547363;
            text-align: center;
        }

        /* Job Apply Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(11, 59, 35, 0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s ease;
            z-index: 1100;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: #fff;
            border-radius: 18px;
            width: min(560px, 92vw);
            padding: 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .modal-title {
            font-size: 20px;
            font-weight: 800;
            color: #0B3B23;
            margin-bottom: 10px;
        }

        .modal-subtitle {
            font-size: 14px;
            color: #5C6D64;
            margin-bottom: 16px;
        }

        .modal-close {
            position: absolute;
            top: 14px;
            left: 14px;
            border: none;
            background: #F1F4F2;
            color: #0B3B23;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
        }

        .modal-form {
            display: grid;
            gap: 12px;
        }

        .modal-form input,
        .modal-form textarea {
            padding: 12px;
            border: 1px solid #E0E0E0;
            border-radius: 10px;
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            background: #F8F9FA;
        }

        .modal-actions {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .modal-actions .btn {
            flex: 1;
        }

        /* Scroll To Top Button */
        .scroll-top-btn {
            position: fixed;
            left: 20px;
            bottom: 24px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: none;
            background: #0F7C3F;
            color: white;
            font-size: 18px;
            cursor: pointer;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
            opacity: 0;
            transform: translateY(10px);
            pointer-events: none;
            transition: opacity 0.3s, transform 0.3s;
            z-index: 1000;
        }

        .scroll-top-btn.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .scroll-top-btn:hover {
            background: #00A651;
        }

        .floating-whatsapp-btn {
            position: fixed;
            left: 20px;
            bottom: 82px;
            z-index: 1001;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 999px;
            text-decoration: none;
            color: #ffffff;
            background: linear-gradient(135deg, #0f9d4f 0%, #22c55e 100%);
            box-shadow:
                0 10px 28px rgba(15, 157, 79, 0.45),
                0 0 0 0 rgba(34, 197, 94, 0.65);
            animation: whatsapp-glow 1.8s infinite;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .floating-whatsapp-btn svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
            flex-shrink: 0;
        }

        .floating-whatsapp-btn span {
            font-size: 13px;
            font-weight: 800;
            line-height: 1;
            white-space: nowrap;
        }

        .floating-whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow:
                0 14px 34px rgba(15, 157, 79, 0.55),
                0 0 0 6px rgba(34, 197, 94, 0.16);
        }

        @keyframes whatsapp-glow {
            0% {
                box-shadow:
                    0 10px 28px rgba(15, 157, 79, 0.45),
                    0 0 0 0 rgba(34, 197, 94, 0.55);
            }
            70% {
                box-shadow:
                    0 10px 28px rgba(15, 157, 79, 0.45),
                    0 0 0 10px rgba(34, 197, 94, 0);
            }
            100% {
                box-shadow:
                    0 10px 28px rgba(15, 157, 79, 0.45),
                    0 0 0 0 rgba(34, 197, 94, 0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header-container {
                padding: 0 15px;
            }

            nav {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: #ffffff;
                flex-direction: column;
                padding: 20px;
                border: 1px solid rgba(0, 108, 53, 0.14);
                border-top: none;
                border-bottom-left-radius: 14px;
                border-bottom-right-radius: 14px;
                box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
                gap: 16px;
            }

            nav.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .floating-whatsapp-btn {
                left: 14px;
                bottom: 78px;
                width: 54px;
                height: 54px;
                padding: 0;
                border-radius: 50%;
                justify-content: center;
            }

            .floating-whatsapp-btn span {
                display: none;
            }

            .scroll-top-btn {
                left: 14px;
                bottom: 18px;
            }

            .nav-links {
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .nav-links a {
                width: 100%;
                padding: 10px 12px;
                border-radius: 10px;
                color: #0f172a;
                background: #f8fafc;
                border: 1px solid #e2e8f0;
            }

            .nav-links a:hover {
                background: #f1f5f9;
                color: #0f7c3f;
            }

            .nav-utility {
                width: 100%;
                justify-content: space-between;
            }

            .auth-actions,
            .auth-actions .btn-auth {
                width: 100%;
            }

            .lang-select {
                width: 100%;
                justify-content: space-between;
            }

            .lang-select select {
                min-width: 0;
                width: 100%;
                text-align: right;
            }

            .profile-icon-btn {
                width: 100%;
                border-radius: 10px;
                height: 42px;
            }

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

            .hero-subtitle {
                font-size: 16px;
            }

            .search-container {
                padding: 25px;
            }

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

            .hero-cards {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .section-title {
                font-size: 28px;
            }
        }

        @media (max-width: 520px) {
            .hero-cards {
                grid-template-columns: 1fr;
            }
        }

/* Business Owner Section */
.business-owner-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #F8FFFE 0%, #FFFFFF 50%, #F3F8F6 100%);
    position: relative;
    overflow: hidden;
}

/* Platform Info Section */
.platform-info-section {
    padding: 90px 20px;
    background:
        radial-gradient(circle at 10% 10%, rgba(0, 166, 81, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 90% 20%, rgba(197, 160, 89, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #F8FFFE 0%, #FFFFFF 50%, #F3F8F6 100%);
}

.platform-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.platform-info-hero {
    text-align: center;
    margin-bottom: 36px;
}

.platform-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(0, 166, 81, 0.12);
    color: #006C35;
    font-weight: 800;
    margin-bottom: 16px;
}

.platform-info-title {
    font-size: 32px;
    font-weight: 800;
    color: #0B3B23;
    margin-bottom: 10px;
}

.platform-info-lead {
    font-size: 16px;
    color: #4B5B52;
}

.platform-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.platform-info-card {
    background: white;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(0, 108, 53, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    color: #0B3B23;
    line-height: 1.9;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.platform-info-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.platform-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: rgba(0, 166, 81, 0.12);
    margin-bottom: 12px;
}

.platform-info-card-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.platform-info-card p + p {
    margin-top: 12px;
}

.platform-info-card--highlight {
    border-color: rgba(178, 74, 60, 0.3);
    background: linear-gradient(160deg, #ffffff 0%, #fff4ee 100%);
}

.platform-info-card--highlight::after {
    background: radial-gradient(circle, rgba(178, 74, 60, 0.18) 0%, transparent 70%);
}

@media (max-width: 768px) {
    .platform-info-section {
        padding: 60px 16px;
    }

    .platform-info-title {
        font-size: 26px;
    }
}

.business-owner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 108, 53, 0.03) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.business-owner-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.business-owner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    justify-content: center;
    margin-top: 50px;
}

.business-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #F8FFFE 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(0, 108, 53, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 78% 58% at 50% 0%, rgba(0, 166, 81, 0.12) 0%, transparent 66%),
        radial-gradient(ellipse 56% 48% at 86% 100%, rgba(200, 146, 42, 0.09) 0%, transparent 60%),
        linear-gradient(135deg, rgba(247, 255, 251, 0.9) 0%, rgba(236, 249, 242, 0.94) 52%, rgba(249, 255, 252, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
}

.business-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.45) 0%, rgba(11, 59, 35, 0.32) 52%, rgba(200, 146, 42, 0.45) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.business-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, #F7FFFB 0%, #ECF9F2 52%, #F9FFFC 100%);
    border-color: rgba(11, 59, 35, 0.14);
    box-shadow:
        0 20px 40px rgba(11, 59, 35, 0.12),
        0 8px 16px rgba(0, 166, 81, 0.08),
        0 0 0 1px rgba(11, 59, 35, 0.08);
}

.business-card:hover::before {
    opacity: 1;
}

.business-card:hover::after {
    opacity: 1;
}

.business-icon {
    font-size: 52px;
    margin-bottom: 4px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 108, 53, 0.15));
    position: relative;
    z-index: 1;
}

.business-card:hover .business-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(0, 108, 53, 0.25));
}

.business-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.business-card:hover .business-title {
    color: #006C35;
    transform: translateY(-2px);
}

/* Add subtle animation on page load */
.business-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.business-card:nth-child(1) { animation-delay: 0.1s; }
.business-card:nth-child(2) { animation-delay: 0.15s; }
.business-card:nth-child(3) { animation-delay: 0.2s; }
.business-card:nth-child(4) { animation-delay: 0.25s; }
.business-card:nth-child(5) { animation-delay: 0.3s; }
.business-card:nth-child(6) { animation-delay: 0.35s; }
.business-card:nth-child(7) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .business-owner-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .business-card {
        padding: 30px 20px;
    }

    .business-icon {
        font-size: 44px;
    }

    .business-title {
        font-size: 16px;
    }
}

/* Worker Section */
.worker-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 50%, #FFF4E6 100%);
    position: relative;
    overflow: hidden;
}

.worker-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.03) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
    pointer-events: none;
}

.worker-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.worker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    justify-content: center;
    margin-top: 50px;
}

.worker-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(197, 160, 89, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
}

.worker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08) 0%, rgba(181, 137, 70, 0.12) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
}

.worker-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #C5A059 0%, #B58946 50%, #8B6914 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.worker-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(197, 160, 89, 0.18),
        0 8px 16px rgba(181, 137, 70, 0.15),
        0 0 0 1px rgba(197, 160, 89, 0.1);
}

.worker-card:hover::before {
    opacity: 1;
}

.worker-card:hover::after {
    opacity: 1;
}

.worker-icon {
    font-size: 52px;
    margin-bottom: 4px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 8px rgba(197, 160, 89, 0.15));
    position: relative;
    z-index: 1;
}

.worker-card:hover .worker-icon {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 4px 12px rgba(197, 160, 89, 0.25));
}

.worker-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.worker-card:hover .worker-title {
    color: #8B6914;
    transform: translateY(-2px);
}

/* Add subtle animation on page load */
.worker-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.worker-card:nth-child(1) { animation-delay: 0.1s; }
.worker-card:nth-child(2) { animation-delay: 0.15s; }
.worker-card:nth-child(3) { animation-delay: 0.2s; }
.worker-card:nth-child(4) { animation-delay: 0.25s; }
.worker-card:nth-child(5) { animation-delay: 0.3s; }
.worker-card:nth-child(6) { animation-delay: 0.35s; }
.worker-card:nth-child(7) { animation-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .worker-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .worker-card {
        padding: 30px 20px;
    }

    .worker-icon {
        font-size: 44px;
    }

    .worker-title {
        font-size: 16px;
    }
}

/* Modal Phone Country Selector */
.phone-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.country-selector {
    position: relative;
    flex-shrink: 0;
    width: 120px;
}

.country-selector-trigger {
    height: 100%;
    padding: 12px 10px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    background-color: #F8F9FA;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.country-selector-trigger:hover {
    border-color: #006C35;
    background-color: #fff;
}

.selector-arrow {
    font-size: 12px;
    color: #7A8B82;
}

.country-flag {
    font-size: 18px;
}

.country-code {
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #006C35;
}

.phone-number-input {
    flex: 1;
}

.country-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #006C35;
    border-radius: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 1200;
    box-shadow: 0 8px 20px rgba(0, 108, 53, 0.15);
}

.country-selector.open .country-options {
    max-height: 260px;
    overflow-y: auto;
    opacity: 1;
    transform: translateY(0);
}

.country-option {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.country-option:hover {
    background-color: #F0FDF4;
}

.country-option.selected {
    background-color: #E6F7ED;
    font-weight: 700;
}

.country-option .country-name {
    flex: 1;
    font-size: 13px;
}

.country-option .country-code {
    font-size: 12px;
}

/* Providers Section */
.providers-section {
    padding: 70px 20px;
    background: radial-gradient(circle at top, rgba(0, 108, 53, 0.08), transparent 40%),
        linear-gradient(135deg, #FFFFFF 0%, #F7F3EE 100%);
}

.providers-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.provider-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 14px 34px rgba(15, 124, 63, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: grid;
    gap: 14px;
}

.provider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 124, 63, 0.16);
}

.provider-card-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    position: relative;
}

.provider-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #006C35, #00A651);
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.provider-head-info {
    display: grid;
    gap: 4px;
}

.provider-name {
    font-size: 18px;
    font-weight: 800;
    color: #2E3B33;
}

.provider-meta {
    color: #5C6D64;
    font-size: 13px;
}

.provider-type {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 108, 53, 0.1);
    color: #006C35;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.provider-body {
    display: grid;
    gap: 10px;
}

.provider-summary {
    color: #2E3B33;
    font-size: 14px;
    line-height: 1.7;
}

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

.provider-tag {
    background: #F1F4F2;
    color: #0B3B23;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
}

.providers-cta {
    margin-top: 24px;
    text-align: center;
}

.provider-inline-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.input-error {
    border-color: #D32F2F !important;
    background: #FFF5F5 !important;
}

.field-error {
    color: #D32F2F;
    font-size: 12px;
    margin-top: -6px;
    display: block;
}

.provider-steps {
    gap: 0;
}

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

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E6EEE9;
}

.step-dot.active {
    background: #006C35;
}

.provider-step {
    display: none;
    gap: 12px;
}

.provider-step.active {
    display: grid;
}

.provider-step-actions .btn {
    flex: 1;
}

#providerPrevStep,
#providerNextStep,
#providerSubmit {
    justify-content: center;
}

/* =======================================
   HERO SECTION (Updated)
======================================= */
:root {
  --gold: #C8922A;
  --gold-light: #E8B84B;
  --white: #FFFFFF;
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.2);
}

.hero {
  min-height: 78vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 88px 24px 48px;
  overflow: hidden;
  font-family: 'Tajawal', 'Cairo', sans-serif;
  color: #0B3B23;
  margin-bottom: -1px;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(
    to bottom,
    rgba(247, 255, 251, 0) 0%,
    rgba(247, 255, 251, 0.65) 55%,
    #F7FFFB 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,166,81,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 85% 100%, rgba(200,146,42,0.12) 0%, transparent 58%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(61,190,131,0.14) 0%, transparent 52%),
    linear-gradient(135deg, #F7FFFB 0%, #ECF9F2 52%, #F9FFFC 100%);
}

.pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0,108,53,0.14) 35px, rgba(0,108,53,0.14) 70px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(0,166,81,0.1) 35px, rgba(0,166,81,0.1) 70px);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-drift 12s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(52,199,133,0.2);
  top: -100px;
  left: 30%;
  animation-duration: 14s;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(200,146,42,0.14);
  bottom: 0;
  right: 10%;
  animation-duration: 10s;
  animation-delay: -4s;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: rgba(0,166,81,0.14);
  top: 40%;
  left: 5%;
  animation-duration: 16s;
  animation-delay: -8s;
}

@keyframes orb-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-40px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 600;
  color: #0F7C3F;
  margin-bottom: 32px;
  animation: fade-up 0.7s ease both;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(32px, 5.2vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 14px;
  animation: fade-up 0.7s 0.1s ease both;
}

.hero-title .line-1 {
  color: #0B3B23;
  display: block;
}

.hero-title .line-2 {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #F0C060 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title .line-2 .workers-highlight {
  background: none;
  color: #1F3A5F;
  -webkit-text-fill-color: #1F3A5F;
  font-weight: 900;
}

body.page-loading {
  overflow: hidden;
}

.global-page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(198, 152, 57, 0.14), transparent 45%),
    radial-gradient(circle at 80% 15%, rgba(11, 59, 35, 0.12), transparent 46%),
    linear-gradient(135deg, #F9F7F2 0%, #F4F0E8 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.global-page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.global-page-loader__content {
  min-width: min(88vw, 360px);
  padding: 26px 28px;
  border: 1px solid rgba(11, 59, 35, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 50px rgba(11, 59, 35, 0.12);
  text-align: center;
}

.global-page-loader__spinner {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 3px solid rgba(11, 59, 35, 0.15);
  border-top-color: #0B3B23;
  animation: global-loader-spin 0.85s linear infinite;
}

.global-page-loader__brand {
  font-size: 24px;
  font-weight: 800;
  color: #0B3B23;
  letter-spacing: 0.4px;
  line-height: 1.25;
}

.global-page-loader__text {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(11, 59, 35, 0.72);
}

@keyframes global-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-title .line-3 {
  color: rgba(11,59,35,0.72);
  display: block;
  font-size: 0.65em;
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(11,59,35,0.72);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 32px;
  animation: fade-up 0.7s 0.2s ease both;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 12px;
    animation: fade-up 0.7s 0.3s ease both;
}

.action-grid--dual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 20px;
}

.action-row-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    animation: fade-up 0.7s 0.4s ease both;
}

.action-card {
    position: relative;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(0,108,53,0.18);
    border-radius: 20px;
    padding: 20px 14px 18px;
    text-decoration: none;
    color: #0B3B23;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(12px);
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    overflow: hidden;
    cursor: pointer;
}

.action-card--path {
    align-items: center;
    text-align: center;
    gap: 7px;
    padding: 14px 12px;
}

.action-card--path .card-title {
    font-size: 18px;
    font-weight: 900;
    color: #0B3B23;
    line-height: 1.2;
}

.action-card--path .card-desc {
    font-size: 13px;
    color: rgba(11, 59, 35, 0.8);
    line-height: 1.55;
    min-height: 38px;
    max-width: 260px;
}

.action-card--path .card-cta {
    margin-top: 1px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    background: rgba(11, 59, 35, 0.1);
    color: #0B3B23;
}

.action-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.action-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(0,108,53,0.35);
  box-shadow:
    0 16px 34px rgba(0,108,53,0.18),
    0 0 0 1px rgba(0,108,53,0.12),
    inset 0 1px 0 rgba(255,255,255,0.55);
}

.action-card:hover::before { opacity: 1; }

.card-hajj-add {
  background: rgba(200,146,42,0.12);
  border-color: rgba(200,146,42,0.38);
}

.card-hajj-req {
  background: rgba(10,107,58,0.14);
  border-color: rgba(10,107,58,0.4);
}

.card-general-add {
  background: rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.38);
}

.card-general-request {
  background: rgba(139,92,246,0.12);
  border-color: rgba(139,92,246,0.38);
}

.card-open-jobs {
  background: rgba(236,72,153,0.12);
  border-color: rgba(236,72,153,0.38);
}

.card-open-requests {
  background: rgba(20,184,166,0.12);
  border-color: rgba(20,184,166,0.38);
}

.card-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.action-card:hover .card-icon-wrap {
  transform: scale(1.15) rotate(8deg);
  background: rgba(200,146,42,0.2);
  border-color: rgba(200,146,42,0.4);
}

.card-hajj-add .card-icon-wrap {
  background: rgba(200,146,42,0.2);
  border-color: rgba(200,146,42,0.38);
}

.card-hajj-req .card-icon-wrap {
  background: rgba(10,107,58,0.24);
  border-color: rgba(10,107,58,0.42);
}

.card-general-add .card-icon-wrap {
  background: rgba(37,99,235,0.22);
  border-color: rgba(37,99,235,0.42);
}

.card-general-request .card-icon-wrap {
  background: rgba(139,92,246,0.22);
  border-color: rgba(139,92,246,0.42);
}

.card-open-jobs .card-icon-wrap {
  background: rgba(236,72,153,0.22);
  border-color: rgba(236,72,153,0.42);
}

.card-open-requests .card-icon-wrap {
  background: rgba(20,184,166,0.22);
  border-color: rgba(20,184,166,0.42);
}

.card-label {
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
}

.card-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(200,146,42,0.2);
  color: var(--gold-light);
  border: 1px solid rgba(200,146,42,0.3);
}

.card-badge.green {
  background: rgba(10,107,58,0.25);
  color: #4DD98A;
  border-color: rgba(18,168,92,0.3);
}

.search-section {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  animation: fade-up 0.7s 0.5s ease both;
}

.search-box {
  background: #FFFFFF;
  border: 1px solid #E2ECE7;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 32px rgba(11, 59, 35, 0.10);
}

.search-heading {
  font-size: 18px;
  font-weight: 700;
  color: #0B3B23;
  margin-bottom: 16px;
  text-align: center;
}

.search-heading span { color: #0F7C3F; }

.search-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 10px;
  margin-bottom: 12px;
}

.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field-wrap label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(11,59,35,0.78);
}

.field-wrap select,
.field-wrap input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  background: #FFFFFF;
  border: 1px solid #D5E2DB;
  border-radius: 10px;
  color: #0B3B23;
  font-family: 'Tajawal', 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.field-wrap select:focus,
.field-wrap input:focus {
  outline: none;
  border-color: #0F7C3F;
  box-shadow: 0 0 0 3px rgba(15,124,63,0.12);
}

.field-wrap select option { background: #FFFFFF; color: #0B3B23; }
.field-wrap input::placeholder { color: rgba(11,59,35,0.42); }

.select-wrap { position: relative; }

.select-wrap::after {
  content: '▾';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #0F7C3F;
  font-size: 12px;
  pointer-events: none;
}

.search-btn {
  height: 48px;
  padding: 0 18px;
  background: #0F7C3F;
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: 'Tajawal', 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15,124,63,0.28);
  background: #0B6A35;
}

.quick-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  justify-content: center;
}

.quick-tag {
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(0,108,53,0.16);
  background: rgba(255,255,255,0.7);
  color: rgba(11,59,35,0.72);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.quick-tag:hover {
  border-color: rgba(0,108,53,0.35);
  color: #0F7C3F;
  background: rgba(0,166,81,0.12);
}

.stats-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  max-width: 800px;
  width: 100%;
  margin-top: 22px;
  border-top: 1px solid rgba(0,108,53,0.14);
  padding-top: 20px;
  animation: fade-up 0.7s 0.6s ease both;
}

.stat-item {
  flex: 1;
  max-width: 200px;
  text-align: center;
  position: relative;
  padding: 0 24px;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(0,108,53,0.15);
}

.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(11,59,35,0.58);
  font-weight: 500;
}

@keyframes fade-up {
  from { opacity:0; transform: translateY(24px); }
  to { opacity:1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 72px 16px 38px;
  }
  .action-grid,
  .action-row-2 { grid-template-columns: 1fr 1fr; }
  .search-box {
    padding: 16px;
    border-radius: 14px;
  }
  .search-fields { grid-template-columns: 1fr; }
  .search-btn {
    width: 100%;
    height: 46px;
  }
  .stat-num { font-size: 26px; }
}

@media (max-width: 520px) {
  .action-grid,
  .action-row-2 { grid-template-columns: 1fr; }
  .stats-bar { flex-wrap: wrap; gap: 14px 0; }
  .stat-item { max-width: 50%; flex: 0 0 50%; }
  .stat-item:nth-child(2n + 1)::before { display: none; }
}
