/* Reset & Base Styles */
:root {

    /* Monochromatic Slate Tokens */
    --clr-slate-950: #020617;
    --clr-slate-900: #0F172A;
    --clr-slate-800: #1E293B;
    --clr-slate-700: #334155;
    --clr-slate-600: #475569;
    --clr-slate-500: #64748B;
    --clr-slate-400: #94A3B8;
    --clr-slate-300: #CBD5E1;
    --clr-slate-200: #E2E8F0;
    --clr-slate-100: #F1F5F9;
    --clr-slate-50:  #F8FAFC;

    --clr-white: #FFFFFF;

    /* Theme Variables */
    --primary: var(--clr-slate-900);
    --primary-dark: var(--clr-slate-950);
    --primary-light: var(--clr-slate-200);
    --secondary: var(--clr-slate-600);
    --secondary-dark: var(--clr-slate-800);
    
    --bg-main: var(--clr-slate-50);
    --bg-card: var(--clr-white);
    --bg-alt: var(--clr-white);

    --text-main: var(--clr-slate-900);
    --text-muted: var(--clr-slate-500);
    --border: var(--clr-slate-200);

    --success: #10B981; /* Keep a standard green for success states only */
    --danger: #EF4444;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    /* Base Shadows (Pure Slate Tint) */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1);

}

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

body {
    font-family: 'IBM Plex Sans Arabic', 'Cairo', sans-serif;
    background-color: var(--bg-main);
    background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-light { color: #cbd5e1; }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-gradient {
    background: linear-gradient(135deg, var(--clr-slate-800), var(--clr-slate-900));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.w-full { width: 100%; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-8 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1rem; }
.mr-2 { margin-right: 0.5rem; }
.block { display: block; }
.hidden { display: none !important; }

/* Buttons */


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









.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Contact Topbar */
.contact-topbar {
    background: var(--bg-main);
    color: #cbd5e1;
    padding: 6px 0;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-topbar a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.contact-topbar a:hover {
    color: var(--clr-slate-900);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    padding: 12px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand {
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-dot {
    color: var(--primary);
    font-size: 2.5rem;
    line-height: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--clr-slate-900);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-main);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--bg-main);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.glow-1 {
    width: 400px; height: 400px;
    background: rgba(15, 23, 42, 0.15);
    top: -100px; right: -100px;
}

.glow-2 {
    width: 500px; height: 500px;
    background: rgba(15, 23, 42, 0.15);
    bottom: -200px; left: -100px;
}

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

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(15, 23, 42, 0.15);
    color: var(--primary);
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-icon {
    color: var(--primary);
}

.hero-image-wrapper {
    position: relative;
    padding: 15px;
    height: 100%;
    min-height: 600px;
}

.hero-image-card {
    position: relative;
    border-radius: 24px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
}


.fade-1 { animation: fadeAnim5 25s infinite; opacity: 0; }
.fade-2 { animation: fadeAnim5 25s infinite; animation-delay: 5s; opacity: 0; }
.fade-3 { animation: fadeAnim5 25s infinite; animation-delay: 10s; opacity: 0; }
.fade-4 { animation: fadeAnim5 25s infinite; animation-delay: 15s; opacity: 0; }
.fade-5 { animation: fadeAnim5 25s infinite; animation-delay: 20s; opacity: 0; }

@keyframes fadeAnim5 {
    0% { opacity: 0; }
    5% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    100% { opacity: 0; }
}


.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 4s ease-in-out infinite;
}

.badge-top {
    top: 30px;
    right: 20px;
}

.badge-bottom {
    bottom: 30px;
    left: 20px;
    animation-delay: 2s;
}

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

/* Trusted Section */
.trusted-section {
    background: linear-gradient(90deg, var(--bg-main) 0%, #F1F5F9 50%, var(--bg-main) 100%);
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.trusted-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.trusted-agency {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 30px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.trusted-agency:hover {
    opacity: 1;
}

.trusted-agency i {
    color: var(--primary);
    font-size: 1.4rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); } /* RTL scrolling */
}

/* Common Section Styles */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.9) 100%), url('../images/bg-abstract.png') center/cover fixed;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(15, 23, 42, 0.05), transparent 40%);
    pointer-events: none;
}

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

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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



.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}



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

.feature-icon-wrapper {
    width: 60px; height: 60px;
    background: rgba(15, 23, 42, 0.08); /* emerald hint */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--secondary);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* How it works */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%), url('../images/bg-abstract.png') center/cover fixed;
}

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

.step-line {
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step-card {
    position: relative;
    z-index: 1;
    text-align: center;
    background: var(--bg-card);
    padding: 20px;
}

[data-theme="dark"] .footer-social a { background: rgba(255,255,255,0.05); color: #fff; }
[data-theme="dark"] .footer-social a:hover { background: var(--bg-main); color: var(--primary); }

/* Language Dropdown Fixes */
.lang-selector {
    position: relative;
}

.lang-selector .dropdown-menu {
    display: none;
    position: absolute;
    list-style: none;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 150px;
    z-index: 1050;
    margin-top: 8px;
    top: 100%;
    right: 0;
}

.lang-selector .dropdown-menu.show {
    display: block;
}

.lang-selector .dropdown-item {
    color: var(--text-main);
    padding: 8px 20px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
}

.lang-selector .dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--secondary);
}

[data-theme="dark"] .lang-selector .dropdown-menu {
    background-color: #1a1a1a;
    border-color: #333;
}
[data-theme="dark"] .lang-selector .dropdown-item {
    color: #fff;
}
[data-theme="dark"] .lang-selector .dropdown-item:hover {
    background-color: #333;
    color: var(--secondary);
}

.step-number {
    width: 80px; height: 80px;
    background: var(--bg-main);
    color: var(--primary);
    font-size: 2rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 10px #fff, var(--shadow-md);
    border: 2px solid var(--primary);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--secondary);
}

.step-desc {
    color: var(--text-muted);
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%), url('../images/bg-abstract.png') center/cover fixed;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: start;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: #fff;
    border: none;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f8fafc;
}

.accordion-header .icon {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-inner {
    padding: 0 20px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

.glass-card {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    padding: 40px;
    border-radius: 24px;
    color: #fff;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.glass-card p {
    color: #cbd5e1;
}

/* Fair Billing Premium Callout */
.billing-callout {
    background: linear-gradient(135deg, rgba(10, 37, 53, 0.98), rgba(5, 20, 29, 0.95));
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.2);
}

.billing-callout::after {
    content: '\f155'; /* FontAwesome dollar sign or similar */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 200px;
    color: rgba(15, 23, 42, 0.05);
    right: -20px;
    bottom: -50px;
    transform: rotate(-15deg);
    pointer-events: none;
}

.billing-callout-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.billing-callout-content h3 {
    color: var(--primary-light);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.billing-callout-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-main);
}

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.method-icon {
    width: 50px; height: 50px;
    background: var(--bg-main);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.method-label {
    display: block;
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.method-value {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.security-badge {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #fff;
}

.security-badge h4 {
    margin-bottom: 5px;
    color: #10b981;
}

.security-badge p {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.form-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.form-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
}

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

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

.form-label {
    display: block;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    background: var(--bg-main);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-slate-900);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.15);
    background: #fff;
}

/* Footer */
.footer {
    background: var(--primary);
    padding: 60px 0 30px;
    color: #fff;
    border-top: 4px solid var(--primary-dark);
}

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

.footer-desc {
    color: #cbd5e1;
    margin-top: 20px;
    max-width: 300px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.sitemap-label {
    color: var(--clr-slate-900);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 5px;
    position: relative;
    padding-right: 15px;
}

.sitemap-label::before {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    width: 4px;
    height: 15px;
    background: var(--bg-main);
    border-radius: 2px;
}

.footer-heading {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-right: 15px;
}

.footer-heading::before {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    width: 4px;
    height: 15px;
    background: var(--bg-main);
    border-radius: 2px;
}

.footer-links a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

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

.footer-social a {
    color: #cbd5e1;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 37, 53, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 15px 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.cookie-text a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

.btn-cookie-manage {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .faq-wrapper, .contact-grid, .footer-top {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

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

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

    .floating-badge {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .step-line {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: 100%;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
    }
}

/* Dark Theme Variables */


















/* Logo Styles */
.nav-logo { height: 80px; width: auto; object-fit: contain; filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.1)); display: block; }
.footer-logo { 
    height: 80px; 
    width: auto; 
    object-fit: contain; 
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Fix for Role Cards layout (replacing Bootstrap grid) */
.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.row.mt-5 {
    margin-top: 3rem;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--clr-slate-800), var(--clr-slate-900));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Fixes for dark background sections */
.hero .btn-outline, 
.glass-card .btn-outline,
.text-light {
    color: #cbd5e1 !important;
}






.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-slate-800), var(--clr-slate-900));
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.3);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    border-color: var(--clr-slate-900);
    color: var(--clr-slate-900);
}

.btn-outline:hover {
    background: var(--bg-main);
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.15);
}


.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 23, 42, 0.2);
}


h1, h2, h3, h4, h5, h6, .hero-title, .section-title {
    font-weight: 800 !important;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.hero-subtitle, .feature-desc, .section-subtitle {
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.7;
}


html:not([lang="ar"]) .hero-title {
    font-size: 2.5rem;
}
