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

        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-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            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;
        }

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

        .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: 20px;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }

        nav a {
            color: #333333;
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s;
            font-size: 16px;
        }

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

        .cta-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: nowrap;
            align-items: center;
            margin-right: auto;
        }

        .lang-select {
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 10px;
            border: 1px solid #E0E0E0;
            background: #FFFFFF;
            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;
        }

        .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-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: transparent;
            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;
        }

        @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;
            justify-content: space-between;
            align-items: center;
            margin-top: 12px;
        }

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

        .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;
        }

        .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 30px;
            background: linear-gradient(120deg, #FFF7F0 0%, #FFFFFF 65%);
        }

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

        .urgent-grid {
            display: flex;
            overflow: hidden;
        }

        .urgent-track {
            display: flex;
            gap: 16px;
            width: max-content;
            animation: urgent-marquee 22s linear infinite;
            animation-direction: reverse;
        }

        .urgent-card {
            background: #fff;
            border-radius: 16px;
            padding: 20px;
            border: 1px solid rgba(178, 74, 60, 0.2);
            box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            display: inline-block;
            min-width: 260px;
        }

        @keyframes urgent-marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .urgent-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #B24A3C, #C5A059);
        }

        .urgent-badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 800;
            background: rgba(178, 74, 60, 0.12);
            color: #B24A3C;
            margin-bottom: 10px;
        }

        .urgent-title {
            font-size: 18px;
            font-weight: 800;
            color: #3B2A24;
            margin-bottom: 6px;
        }

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

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

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

        .urgent-link {
            text-decoration: none;
            font-weight: 700;
            color: #B24A3C;
            font-size: 13px;
        }

        /* 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;
            background: #0B3B23;
            color: #E7EFEA;
        }

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

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

        .footer-title {
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 12px;
            color: #FFFFFF;
        }

        .footer-text {
            font-size: 14px;
            color: #CFE0D6;
            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(255, 255, 255, 0.25);
            background: transparent;
            color: #E7EFEA;
            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(255, 255, 255, 0.6);
            color: #FFFFFF;
        }

        .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: #CFE0D6;
        }

        .footer-link {
            color: #E7EFEA;
            text-decoration: none;
            font-weight: 600;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 20px;
            font-size: 13px;
            color: #BFD0C6;
            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;
        }

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

            nav {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            }

            nav.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

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

            .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: linear-gradient(135deg, rgba(0, 166, 81, 0.08) 0%, rgba(0, 108, 53, 0.12) 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, #00A651 0%, #006C35 50%, #C5A059 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.business-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 108, 53, 0.18),
        0 8px 16px rgba(0, 166, 81, 0.15),
        0 0 0 1px rgba(0, 108, 53, 0.1);
}

.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;
}
