/* ===== CSS RESET & VARIABLES ===== */
:root {
    /* Colors - Dark Premium Theme */
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --card-bg: rgba(30, 41, 59, 0.7);
    --card-border: rgba(255, 255, 255, 0.1);

    --primary: #00d4aa;
    /* Cyan/Teal matching logo */
    --primary-hover: #00b894;
    --primary-glow: rgba(0, 212, 170, 0.4);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    --success: #10b981;
    --error: #ef4444;
    --info: #3b82f6;

    /* Social Colors */
    --instagram: #e1306c;
    --tiktok: #00f2fe;
    --telegram: #0088cc;

    /* Typography */
    --font-family: 'Cairo', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --glass-blur: blur(12px);

    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-darker);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ===== BACKGROUND EFFECTS ===== */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.orb-1 {
    top: -10%;
    right: -5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, rgba(2, 6, 23, 0) 70%);
}

.orb-2 {
    bottom: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(2, 6, 23, 0) 70%);
}

/* ===== TYPOGRAPHY & UTILITIES ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 800px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.hidden {
    display: none !important;
}

/* ===== GLASSMORPHISM ===== */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-darker);
    box-shadow: 0 4px 14px 0 var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 var(--primary-glow);
}

.btn-primary-sm {
    background-color: var(--primary);
    color: var(--bg-darker);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-primary-sm:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--card-border);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-muted);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-title span {
    color: var(--primary);
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-illustration {
    position: relative;
    display: flex;
    justify-content: flex-end;
    /* Moved to the left in RTL */
    align-items: center;
}

.stats-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 350px;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(20px);
    transition: transform 0.5s ease;
    margin-right: auto;
}

.stats-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(0);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.stat-icon.tiktok {
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon.shield {
    background: linear-gradient(135deg, var(--primary) 0%, #d97706 100%);
    color: #000;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    color: white;
}

.facebook-bg {
    background: linear-gradient(135deg, #1877f2 0%, #0c57b8 100%);
}

.instagram-bg {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok-bg {
    background: linear-gradient(135deg, #25F4EE 0%, #FE2C55 100%);
}

.telegram-bg {
    background: linear-gradient(135deg, #1c92d2 0%, #f2fcfe 100%);
    color: #0088cc;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.service-features i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* ===== PROMOTION CTA SECTION ===== */
.whatsapp-contact-card {
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(37, 211, 102, 0.3);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(37, 211, 102, 0.05) 100%);
}

.whatsapp-contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.whatsapp-contact-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.promotion-btn {
    font-size: 1.2rem;
    padding: 14px 32px;
}

/* ===== ORDER SECTION ===== */
.order-card {
    padding: 40px;
}

.order-header {
    text-align: center;
    margin-bottom: 30px;
}

.order-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.order-header p {
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-row {
    display: flex;
    gap: 20px;
}

.col-6 {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.required {
    color: var(--error);
}

input,
select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

input::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.select-wrapper {
    position: relative;
}

select {
    appearance: none;
    cursor: pointer;
}

select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.select-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* Fix for RTL select arrow */
select {
    padding-left: 40px;
    padding-right: 16px;
}

.price-display {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.price-value {
    padding: 14px 16px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px dashed var(--primary);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    text-align: center;
}

.help-text {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Alerts */
.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #34d399;
}

/* ===== PAYMENT METHOD SECTION ===== */
.payment-method-section {
    padding: 20px;
    margin: 24px 0;
    border: 1px solid var(--primary-glow);
    background: rgba(15, 23, 42, 0.6);
}

.payment-title {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 16px;
    text-align: center;
}

.mastercard-info {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(235, 0, 27, 0.1) 0%, rgba(247, 158, 27, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.mc-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mc-icon .fa-cc-mastercard {
    background: -webkit-linear-gradient(135deg, #FF5F00 0%, #EB001B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mc-details {
    display: flex;
    flex-direction: column;
}

.mc-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.mc-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.mc-number:hover {
    color: var(--primary);
}

.copy-icon {
    font-size: 1rem;
    color: var(--text-muted);
}

.mc-number:hover .copy-icon {
    color: var(--primary);
}

.payment-instruction {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 16px;
}

/* ===== STATS COUNTER SECTION ===== */
.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.counter-card {
    padding: 36px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.counter-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.04) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.counter-card:hover::before {
    opacity: 1;
}

.counter-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 170, 0.3);
}

.counter-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 4px;
}

.counter-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.counter-plus {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: -8px;
    line-height: 1;
}

.counter-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 170, 0.25);
}

.testi-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testi-text {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.8;
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testi-avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
}

.testi-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
}

.testi-platform {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.testi-platform i {
    font-size: 0.9rem;
    color: var(--primary);
}

/* ===== TESTIMONIALS SLIDER ===== */
.testi-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.testi-slider-viewport {
    overflow: hidden;
    flex: 1;
}

.testi-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testi-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}

.testi-nav-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: var(--glass-blur);
    flex-shrink: 0;
}

.testi-nav-btn:hover {
    background: rgba(0, 212, 170, 0.15);
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.08);
}

.testi-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.testi-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0, 212, 170, 0.5);
}

@media (max-width: 900px) {
    .testi-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 600px) {
    .testi-slide {
        flex: 0 0 100%;
    }

    .testi-nav-btn {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.85rem;
    }
}

/* ===== CUSTOM CATEGORY DROPDOWN WITH ICONS ===== */

.custom-cat-dropdown {
    position: relative;
    width: 100%;
    user-select: none;
}

.custom-cat-selected {
    width: 100%;
    padding: 14px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.custom-cat-selected:hover,
.custom-cat-dropdown.open .custom-cat-selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.custom-cat-selected .cat-arrow {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.custom-cat-dropdown.open .cat-arrow {
    transform: rotate(180deg);
}

.custom-cat-placeholder {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(148, 163, 184, 0.6);
}

.custom-cat-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.custom-cat-value i,
.custom-cat-placeholder i {
    width: 22px;
    text-align: center;
}

.custom-cat-list {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    background: rgba(15, 23, 42, 0.97);
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: 12px;
    z-index: 200;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    max-height: 280px;
    overflow-y: auto;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-cat-dropdown.open .custom-cat-list {
    display: block;
}

.custom-cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    cursor: pointer;
    transition: background 0.15s ease;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.custom-cat-item:last-child {
    border-bottom: none;
}

.custom-cat-item:hover {
    background: rgba(0, 212, 170, 0.1);
}

.custom-cat-item.selected {
    background: rgba(0, 212, 170, 0.12);
    color: var(--primary);
}

.cat-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: #fff;
}

.custom-cat-item .cat-item-name {
    flex: 1;
    font-weight: 600;
}

/* Scrollbar for dropdown */
.custom-cat-list::-webkit-scrollbar {
    width: 5px;
}

.custom-cat-list::-webkit-scrollbar-track {
    background: transparent;
}

.custom-cat-list::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 170, 0.3);
    border-radius: 10px;
}

/* ===== SERVICE INFO CARD ===== */

.service-info-card {
    background: rgba(0, 212, 170, 0.04);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sic-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.sic-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.sic-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sic-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.sic-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.sic-desc-wrap {
    background: rgba(0, 212, 170, 0.07);
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--text-main);
    display: flex;
    gap: 10px;
    line-height: 1.7;
    margin-top: 8px;
}

.sic-desc-wrap i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.sic-desc-wrap span {
    flex: 1;
    word-break: break-word;
}

.mc-holder-name {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mc-holder-name i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* ===== ZAIN CASH PAYMENT ===== */
.zaincash-section {
    border-color: rgba(255, 152, 0, 0.4) !important;
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.7) 0%, rgba(255, 152, 0, 0.04) 100%) !important;
}

.zc-icon {
    background: linear-gradient(135deg, #ff9800 0%, #e65100 100%) !important;
    color: white !important;
}

.zc-badge {
    background: rgba(255, 152, 0, 0.15);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.4);
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    vertical-align: middle;
    margin-right: 6px;
}

.btn-zaincash {
    background: linear-gradient(135deg, #ff9800 0%, #e65100 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 14px 0 rgba(255, 152, 0, 0.35);
}

.btn-zaincash:hover {
    background: linear-gradient(135deg, #e65100 0%, #bf360c 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(255, 152, 0, 0.4);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 211, 102, 0.4);
}


/* Settings Toggle */
.settings-toggle-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.settings-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.settings-link:hover {
    color: var(--text-main);
}

.api-settings {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    margin-bottom: 24px;
}

/* ===== ABOUT US SECTION ===== */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.about-logo {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
}

.about-logo img {
    max-width: 200px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    background: rgba(15, 23, 42, 0.5);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-size: 1rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #0088cc);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    color: white;
}

.info-icon.whatsapp-color {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.ltr-text {
    direction: ltr;
    display: inline-block;
}

.about-btn {
    padding: 14px 28px;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--card-border);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-illustration {
        justify-content: center;
        margin-top: 20px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .badge {
        margin: 0 auto 24px;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .stats-card {
        transform: none;
    }

    .stats-card:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    /* Hide less important links to save space but keep auth/balance */
    .nav>a[href="#home"],
    .nav>a[href="#services"],
    .nav>a[href="#promotion"],
    .nav>a[href="index.html"]:not(.logo) {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section {
        padding: 50px 0;
    }

    .about-content,
    .order-card,
    .whatsapp-contact-card {
        padding: 24px 16px;
    }

    .sic-stats {
        grid-template-columns: 1fr;
    }

    .counters-grid {
        grid-template-columns: 1fr;
    }

    .about-text h3 {
        text-align: center;
    }
}