/* =============================================== */
/* == هوية مركز أركان - تصميم أزرق احترافي == */
/* == الوضع الداكن بالكامل (Dark Mode) == */
/* =============================================== */
:root {
    /* الألوان الأساسية - ألوان داكنة */
    --bg-primary: #0f172a;      /* خلفية الصفحة الرئيسية (أزرق داكن جداً) */
    --bg-secondary: #1e293b;    /* خلفية البطاقات والأقسام */
    --bg-card: #1e293b;         /* خلفية العناصر الداخلية */
    --bg-dark: #020617;         /* الخلفية الداكنة جداً (فوتر) */
    
    /* ألوان النصوص - فاتحة */
    --fg-primary: #f1f5f9;      /* النص الأساسي (أبيض مغشى) */
    --fg-secondary: #cbd5e1;    /* النص الثانوي (رمادي فاتح) */
    --fg-muted: #94a3b8;        /* النص الخافت */
    
    /* الألوان المميزة */
    --accent-primary: #3b82f6;  /* أزرق */
    --accent-secondary: #2563eb;/* أزرق غامق */
    --accent-tertiary: #60a5fa; /* أزرق فاتح */
    --accent-light: #1e3a8a;    /* خلفية مميزة */
    
    /* الحدود والظلال */
    --border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* == الأساسيات == */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--bg-primary);
    color: var(--fg-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* == الروابط == */
a { color: var(--accent-tertiary); transition: color 0.3s ease; }
a:hover { color: #ffffff; }

/* == الهيدر == */
header { 
    background: var(--bg-secondary); 
    box-shadow: var(--shadow-sm); 
    position: relative;
    z-index: 1000;
}

.navbar { 
    padding: 0.75rem 0; 
    background: transparent !important; 
}

.navbar-brand img {
    height: 70px !important;
    max-width: 100%;
}

.navbar-nav .nav-link {
    color: var(--fg-secondary);
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #ffffff; }

.navbar-toggler { border: none; padding: 0.5rem; }
.navbar-toggler:focus { box-shadow: none; }

/* == الأزرار == */
.btn {
    font-family: 'Tajawal', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-arkan {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.btn-primary-arkan:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-secondary-arkan {
    background: transparent;
    color: var(--accent-tertiary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--accent-tertiary);
    font-weight: 700;
    font-size: 0.95rem;
}

.btn-secondary-arkan:hover {
    background: var(--accent-tertiary);
    color: var(--bg-primary);
}

.btn-outline-arkan {
    background: transparent;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 2px solid white;
    font-size: 0.95rem;
}

.btn-outline-arkan:hover {
    background: white;
    color: var(--bg-primary);
}

/* == Hero Section == */
.hero-section-arkan {
    min-height: auto;
    padding: 6rem 0 4rem;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay-arkan {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.hero-content-wrapper { 
    position: relative; 
    z-index: 2; 
    padding: 0; 
    width: 100%;
}

.hero-text-column { 
    padding-right: 2rem; 
    margin-bottom: 2rem;
}

.hero-badge-arkan {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.pulse-dot {
    width: 6px; 
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-section-arkan h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-section-arkan .lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    max-width: 100%;
    line-height: 1.8;
}

.hero-buttons { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 0.75rem; 
}

.hero-main-img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-placeholder {
    background: rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
}

.hero-placeholder i { 
    font-size: 5rem; 
    color: var(--accent-primary); 
    opacity: 0.5; 
}

/* == Section Titles == */
.section-label-arkan {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-tertiary);
    background: rgba(59, 130, 246, 0.15);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}

.section-title-arkan {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}

.section-subtitle-arkan {
    font-size: 0.95rem;
    color: var(--fg-muted);
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.7;
}

/* == About Section == */
.about-section-arkan { 
    padding: 3rem 0; 
    background: var(--bg-secondary); 
}

.about-text-arkan { 
    color: var(--fg-secondary); 
    line-height: 1.8; 
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.about-img-arkan { 
    border-radius: var(--radius-md); 
    box-shadow: var(--shadow-md); 
    max-width: 100%; 
    margin-bottom: 1.5rem;
}

.about-placeholder {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    display: inline-block;
}

.about-placeholder i { 
    font-size: 4rem; 
    color: var(--accent-primary); 
    opacity: 0.5; 
}

/* == Feature Cards == */
.why-choose-section-arkan { 
    padding: 3rem 0; 
    background: var(--bg-primary); 
}

.feature-card-arkan {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-arkan::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card-arkan:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.feature-card-arkan:hover::before { transform: scaleX(1); }

.feature-icon-arkan {
    width: 50px; 
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.1rem;
}

.feature-title-arkan { 
    font-size: 1rem; 
    font-weight: 700; 
    margin-bottom: 0.5rem; 
    color: white;
}

.feature-desc-arkan { 
    color: var(--fg-muted); 
    font-size: 0.875rem; 
    line-height: 1.6; 
}

/* == Services Cards == */
.services-section-arkan { 
    padding: 3rem 0; 
    background: var(--bg-primary); 
}

.service-card-arkan-new {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
}

.service-card-arkan-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-primary);
}

.service-img-wrapper { 
    position: relative; 
    height: 180px; 
    overflow: hidden; 
}

.service-img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-arkan-new:hover .service-img { transform: scale(1.05); }

.service-img-placeholder {
    width: 100%; 
    height: 100%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img-placeholder i { 
    font-size: 3rem; 
    color: white; 
    opacity: 0.5; 
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 0.75rem;
}

.service-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    opacity: 0.6;
}

.service-content { padding: 1.25rem; }

.service-title-arkan { 
    font-size: 1.1rem; 
    font-weight: 700; 
    margin-bottom: 0.5rem; 
    color: white;
}

.service-desc-arkan { 
    color: var(--fg-muted); 
    font-size: 0.875rem; 
    line-height: 1.7; 
    margin-bottom: 0.75rem; 
}

.service-link-arkan {
    color: var(--accent-tertiary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    background: rgba(59, 130, 246, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
}

.service-link-arkan:hover { 
    color: white; 
    background: var(--accent-primary);
}

/* == Stats == */
.stats-section-arkan {
    background: linear-gradient(135deg, var(--accent-light), var(--bg-dark));
    padding: 3rem 0;
    position: relative;
}

.stat-item-arkan { 
    padding: 1rem; 
    text-align: center; 
}

.stat-number-arkan {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label-arkan { 
    color: rgba(255,255,255,0.8); 
    font-size: 0.8rem; 
    font-weight: 500; 
}

/* == Partners == */
.partners-section-arkan { 
    padding: 3rem 0; 
    background: var(--bg-secondary); 
}

.partner-item-arkan {
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item-arkan:hover { box-shadow: var(--shadow-sm); }

.partner-logo-arkan { 
    max-height: 40px; 
    filter: brightness(0) invert(1);
    opacity: 0.6; 
    transition: all 0.3s ease; 
}

.partner-item-arkan:hover .partner-logo-arkan { 
    opacity: 1; 
}

.partner-name-text { 
    color: white; 
    font-weight: 600; 
    font-size: 0.85rem;
    text-align: center;
}

/* == Careers Section == */
.careers-section-arkan { 
    padding: 3rem 0; 
    background: var(--bg-primary); 
}

.job-card-arkan {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.job-card-arkan:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.job-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-tertiary);
    margin: 0;
}

.job-status-badge {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.job-description {
    color: var(--fg-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--fg-muted);
}

.job-meta-item i { color: var(--accent-tertiary); }

/* == News == */
.news-section-arkan { 
    padding: 3rem 0; 
    background: var(--bg-primary); 
}

.news-card-arkan {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.news-card-arkan:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-primary);
}

.news-img-arkan { 
    width: 100%; 
    height: 180px; 
    object-fit: cover; 
    transition: transform 0.4s ease; 
}

.news-card-arkan:hover .news-img-arkan { transform: scale(1.03); }

.news-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    background: var(--accent-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    z-index: 2;
}

.news-body-arkan { padding: 1.25rem; }

.news-title-arkan { 
    font-size: 1rem; 
    font-weight: 700; 
    margin-bottom: 0.5rem; 
    color: white;
}

.news-desc-arkan { 
    color: var(--fg-muted); 
    font-size: 0.85rem; 
    margin-bottom: 0.75rem; 
    line-height: 1.6;
}

.news-link-arkan {
    color: var(--accent-tertiary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.news-link-arkan:hover { color: white; }

/* == Gallery == */
.gallery-section-arkan { 
    padding: 3rem 0; 
    background: var(--bg-secondary); 
}

.gallery-item-arkan { 
    display: block; 
    border-radius: var(--radius-md); 
    overflow: hidden; 
    position: relative; 
}

.gallery-item-arkan::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(15, 23, 42, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-arkan:hover::after { opacity: 1; }

.gallery-img-arkan { 
    width: 100%; 
    height: 180px; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}

.gallery-item-arkan:hover .gallery-img-arkan { transform: scale(1.05); }

/* == CTA == */
.cta-section-arkan {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    padding: 3rem 0;
    position: relative;
}

.cta-title { 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: white; 
    margin-bottom: 0.75rem; 
}

.cta-text { 
    color: rgba(255,255,255,0.9); 
    font-size: 1rem; 
    margin-bottom: 1.5rem; 
    line-height: 1.7;
}

.cta-btn-white {
    background: white;
    color: var(--accent-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    border: none;
    font-size: 0.95rem;
}

.cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--accent-primary);
}

/* == Why Choose Us Page - Cards == */
.why-us-page-section {
    background: var(--bg-secondary);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.page-title-why-us {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.page-title-why-us::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    margin: 8px auto 0;
    border-radius: 2px;
}

.why-us-card-custom {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-us-card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-us-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.why-us-card-custom:hover::before { transform: scaleX(1); }

/* == Why Choose Us - Icons (Fixed) == */
.why-us-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-light), var(--bg-secondary));
    border-radius: 50%;
    display: inline-flex; /* Ensures visibility */
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
}

.why-us-icon-wrapper i {
    font-size: 2rem;
    color: #ffffff; /* Icon color is white */
    transition: all 0.4s ease;
    line-height: 1;
}

.why-us-card-custom:hover .why-us-icon-wrapper {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.3);
}

.why-us-card-custom:hover .why-us-icon-wrapper i {
    color: #ffffff;
    transform: scale(1.1);
}

.why-us-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.why-us-desc {
    font-size: 0.9rem;
    color: var(--fg-muted);
    line-height: 1.6;
}

/* == Footer == */
footer {
    background: var(--bg-dark) !important;
    color: var(--fg-secondary);
}

footer a { color: var(--fg-muted); }
footer a:hover { color: var(--accent-tertiary) !important; }

/* == Forms (Inputs) == */
.form-control, .form-select {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    color: var(--fg-primary);
}
.form-control:focus, .form-select:focus {
    background: var(--bg-primary);
    border-color: var(--accent-primary);
    color: var(--fg-primary);
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

/* == Responsive & Other existing styles == */
/* (Include your existing responsive code here, no changes needed for layout logic, just color inheritance handles it) */

@media (max-width: 991.98px) {
    .hero-section-arkan { padding: 5rem 0 3rem; min-height: auto; }
    .hero-text-column { padding-right: 0; text-align: center; margin-bottom: 2rem; }
    .hero-section-arkan .lead { margin: 0 auto 1.5rem; }
    .hero-buttons { justify-content: center; }
    .navbar-collapse {
        background: var(--bg-secondary);
        padding: 1rem;
        border-radius: var(--radius-md);
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }
    .navbar-nav { gap: 0.25rem; }
    .navbar-nav .nav-link { padding: 0.75rem 1rem !important; border-radius: var(--radius-sm); }
    .navbar-nav .nav-link:hover { background: rgba(59, 130, 246, 0.1); }
    .nav-careers-btn { margin: 0.5rem 0; width: 100%; justify-content: center; }
    .btn-call-header { display: none; }
}

@media (max-width: 767.98px) {
    html { font-size: 14px; }
    .hero-section-arkan { padding: 4rem 0 2rem; }
    .hero-section-arkan h1 { font-size: 1.5rem; line-height: 1.4; }
    .hero-section-arkan .lead { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; gap: 0.5rem; }
    .hero-buttons .btn { width: 100%; text-align: center; justify-content: center; }
    .section-title-arkan { font-size: 1.35rem; }
    .section-subtitle-arkan { font-size: 0.9rem; }
    .about-section-arkan { padding: 2rem 0; }
    .about-text-arkan { font-size: 0.9rem; }
    .service-img-wrapper { height: 150px; }
    .service-content { padding: 1rem; }
    .service-title-arkan { font-size: 1rem; }
    .stats-section-arkan { padding: 2rem 0; }
    .stat-number-arkan { font-size: 1.75rem; }
    .stat-label-arkan { font-size: 0.75rem; }
    .news-img-arkan { height: 150px; }
    .news-body-arkan { padding: 1rem; }
    .gallery-img-arkan { height: 150px; }
    .cta-section-arkan { padding: 2rem 0; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; text-align: center; justify-content: center; }
    .feature-card-arkan { padding: 1.25rem; }
    .why-us-card-custom { padding: 1.25rem; }
    .navbar-brand img { height: 55px !important; }
    .job-card-header { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 575.98px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    .hero-section-arkan h1 { font-size: 1.35rem; }
    .section-title-arkan { font-size: 1.25rem; }
    .stat-number-arkan { font-size: 1.5rem; }
    .why-choose-section-arkan, .services-section-arkan, .partners-section-arkan, .news-section-arkan, .gallery-section-arkan, .about-section-arkan, .stats-section-arkan, .cta-section-arkan, .careers-section-arkan { padding: 2rem 0; }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 767.98px) {
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 15px; left: 15px; }
}

/* == RTL Support == */
[dir="ltr"] .hero-text-column { padding-right: 0; padding-left: 2rem; }
[dir="ltr"] .nav-careers-btn { margin-right: 0; margin-left: 0.5rem; }
[dir="ltr"] .news-category-badge { right: auto; left: 10px; }

@media (max-width: 991.98px) {
    [dir="ltr"] .hero-text-column { padding-left: 0; }
}