@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1e1e2a;
    --gold: #f5a623;
    --gold-light: #ffc857;
    --gold-dark: #c4841d;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6a6a7a;
    --gradient-gold: linear-gradient(135deg, #f5a623, #ffc857);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #111118 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-gold: 0 0 30px rgba(245, 166, 35, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    direction: rtl;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

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

/* ======== NAVBAR ======== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 45px;
    filter: brightness(1.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: center;
}

.nav-links a {
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid var(--gold);
    background: transparent;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0a0a0f;
    background: var(--gold);
}

/* Dropdown Styles */
.nav-item.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: rgba(25, 25, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

.dropdown-item {
    display: block !important;
    width: 100%;
    padding: 10px 20px !important;
    text-align: right;
    clear: both;
    white-space: nowrap;
    border-radius: 0 !important;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: rgba(245, 166, 35, 0.1) !important;
    color: var(--gold) !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.nav-auth {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Cairo';
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gradient-gold);
    color: #0a0a0f;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #0a0a0f;
}

.btn-ghost {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 4px;
    transition: var(--transition);
}

/* ======== HERO ======== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Logo watermark in background */
.hero-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    animation: logo-pulse 6s ease-in-out infinite;
}

.hero-logo-bg img {
    width: 600px;
    max-width: 70vw;
    filter: brightness(1.5);
}

@keyframes logo-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.04;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.07;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 5s ease-in-out infinite reverse;
}

@keyframes pulse-glow {

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

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-badge span {
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    max-width: 500px;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.8;
}

.hero-slogan {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 12px;
    margin-bottom: 28px;
}

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

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual .glow-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

.hero-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 80px);
    grid-template-rows: repeat(2, 80px);
    gap: 16px;
}

.hero-icon-item {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}

.hero-icon-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

/* ======== CURSOR GLOW EFFECT ======== */
.cursor-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(245, 166, 35, 0.45) 0%,
            rgba(255, 200, 87, 0.25) 20%,
            rgba(245, 166, 35, 0.12) 40%,
            rgba(196, 132, 29, 0.05) 60%,
            transparent 75%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: left 0.25s ease-out, top 0.25s ease-out, opacity 0.5s ease;
    opacity: 0;
    filter: blur(20px);
    will-change: left, top;
    mix-blend-mode: screen;
}

.hero:hover .cursor-glow {
    opacity: 1;
}

/* ======== STATS ======== */
.stats {
    padding: 40px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 166, 35, 0.3);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    direction: ltr;
    display: inline-block;
    font-feature-settings: "tnum";
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ======== ABOUT US / من نحن ======== */
.about-section {
    background: var(--bg-primary);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-right: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, 0.3);
    border-right-color: var(--gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.about-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 2;
    margin: 0;
}

.about-card strong {
    color: var(--gold);
    font-weight: 700;
}

/* ======== CREDIBILITY BANNER ======== */
.credibility-banner {
    padding: 0;
}

.credibility-box {
    background: var(--bg-card);
    border-top: 3px solid var(--gold);
    border-radius: 0;
    padding: 50px 40px;
    text-align: center;
    position: relative;
}

.credibility-box h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
}

.credibility-box p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.btn-credibility {
    background: rgba(255, 255, 255, 0.95);
    color: #0a0a0f;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-family: 'Cairo';
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-credibility:hover {
    background: var(--gold);
    color: #0a0a0f;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
}

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

    .credibility-box {
        padding: 35px 20px;
    }

    .credibility-box h2 {
        font-size: 1.5rem;
    }
}

/* ======== SECTIONS ======== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 50px;
    font-size: 1.05rem;
}

/* ======== CATEGORIES GRID ======== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    /* Gold tint filter */
    filter: sepia(80%) saturate(300%) hue-rotate(-5deg) brightness(0.95);
}

/* على الموبايل — الصورة تظهر كاملة بدون قص */
@media (max-width: 768px) {
    .category-card {
        aspect-ratio: auto;
    }
    .category-card img {
        height: auto;
        object-fit: fill;
    }
}

.category-card:hover img {
    transform: scale(1.1);
    filter: sepia(0%) saturate(100%) brightness(1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(245, 166, 35, 0.4) 0%, rgba(10, 10, 15, 0.3) 50%, transparent 100%);
}

.category-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.category-count {
    font-size: 0.85rem;
    color: var(--gold);
}

/* ======== SERVICES SHOWCASE ======== */
.services-showcase {
    background: var(--bg-secondary);
    overflow: hidden;
}

.services-showcase-layout {
    display: grid;
    grid-template-columns: 1fr 340px 1fr;
    gap: 30px;
    align-items: center;
    min-height: 520px;
}

.services-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Service card - white/light style like DigitalVIP */
.svc-card {
    background: var(--gradient-gold);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #0a0a0f;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.15);
    text-decoration: none;
}

a.svc-card,
a.svc-card:visited,
a.svc-card:hover {
    color: #0a0a0f;
    text-decoration: none;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(245, 166, 35, 0.3);
}

.svc-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(10, 10, 15, 0.15);
    line-height: 1;
    min-width: 48px;
}

.svc-icon {
    font-size: 1.8rem;
    min-width: 40px;
    text-align: center;
}

.svc-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.4;
}

.svc-body p {
    font-size: 0.8rem;
    color: rgba(10, 10, 15, 0.6);
    line-height: 1.5;
}

/* Center scrolling columns */
.scroll-columns {
    display: flex;
    gap: 12px;
    height: 520px;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}

.scroll-col {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.scroll-track {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scroll-track img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    flex-shrink: 0;
    /* Gold tint filter — converts platform colors to gold tones */
    filter: sepia(80%) saturate(300%) hue-rotate(-5deg) brightness(0.95);
    transition: filter 0.3s ease;
}

.scroll-track img:hover {
    filter: sepia(0%) saturate(100%) hue-rotate(0deg) brightness(1);
}

/* Scroll UP animation */
.scroll-up .scroll-track {
    animation: scrollUp 20s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Scroll DOWN animation */
.scroll-down .scroll-track {
    animation: scrollDown 22s linear infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }

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

/* Pause scroll on hover */
.scroll-columns:hover .scroll-track {
    animation-play-state: paused;
}


/* ======== WHY US ======== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(245, 166, 35, 0.2);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(245, 166, 35, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ======== TESTIMONIALS ======== */
.testimonials-section {
    background: var(--bg-secondary);
}

.testimonials-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 0;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 380px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    scroll-snap-align: start;
    transition: var(--transition);
}

.testimonial-img-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--glass-border);
    transition: var(--transition);
}

.testimonial-img-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 166, 35, 0.15);
}

.testimonial-img-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/5;
    object-fit: contain;
    display: block;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card:hover {
    border-color: rgba(245, 166, 35, 0.2);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0a0a0f;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ======== CTA ======== */
.cta-section {
    text-align: center;
    position: relative;
}

.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1), transparent 70%);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-box p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 32px;
    position: relative;
}

/* ======== FAQ ======== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(245, 166, 35, 0.2);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold);
}

.faq-question .icon {
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ======== FOOTER ======== */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-about .logo-text {
    margin-bottom: 16px;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: #0a0a0f;
    border-color: var(--gold);
}

.footer h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-links a {
    display: block;
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-right: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.currency-select {
    display: flex;
    gap: 8px;
}

.currency-select button {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 6px;
    font-family: 'Cairo';
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.currency-select button:hover,
.currency-select button.active {
    background: var(--gold);
    color: #0a0a0f;
    border-color: var(--gold);
}

/* ======== FIXED CURRENCY SELECTOR ======== */
.currency-fixed {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 8px 6px;
}

.currency-fixed button {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    padding: 6px 10px;
    border-radius: 8px;
    font-family: 'Cairo';
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.currency-fixed button:hover {
    color: var(--gold);
    background: rgba(245, 166, 35, 0.1);
}

.currency-fixed button.active {
    background: var(--gold);
    color: #0a0a0f;
    border-color: var(--gold);
}

/* ======== ANIMATIONS ======== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ======== PARTICLES ======== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.2;
    animation: particle-float linear infinite;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.2;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

/* ======== MOBILE NAV ======== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1100;
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--glass-border);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--glass-border);
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1101;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

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

    .hero p {
        margin: 0 auto 32px;
    }

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

    .hero-visual {
        margin-top: 40px;
    }

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

    .services-showcase-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .scroll-columns {
        height: 350px;
        order: -1;
    }

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

@media (max-width: 768px) {

    .nav-links,
    .nav-auth {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p,
    .hero-sub {
        font-size: 0.9rem;
    }

    .hero-slogan {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .currency-fixed {
        padding: 4px 4px;
    }

    .currency-fixed button {
        padding: 4px 8px;
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

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

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

    .scroll-columns {
        height: 280px;
    }

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

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

    .cta-box {
        padding: 50px 24px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .testimonial-card {
        min-width: 300px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p,
    .hero-sub {
        font-size: 0.85rem;
    }

    .hero-slogan {
        font-size: 1rem;
    }

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

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-icon-grid {
        grid-template-columns: repeat(3, 55px);
        gap: 8px;
    }

    .hero-icon-item {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .hero-visual .glow-circle {
        width: 250px;
        height: 250px;
    }

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

    .currency-fixed {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        padding: 3px 2px;
        z-index: 90;
    }

    .currency-fixed button {
        padding: 3px 5px;
        font-size: 0.58rem;
    }
}