/* ============================================
   DESIGN SYSTEM — Wakil & Barada Portal
   Inspired by Syrian heritage: the geometry
   of Damascus, the Barada river, warm gold.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Noto+Naskh+Arabic:wght@400;600&display=swap');

:root {
    /* Core Background */
    --bg-dark:    #060a12;
    --bg-surface: #0b1120;
    --bg-card:    rgba(255, 255, 255, 0.028);

    /* Primary — Emerald (Barada river's lush greenery) */
    --primary:       #10b981;
    --primary-light: #34d399;
    --primary-dark:  #065f46;
    --primary-glow:  rgba(16, 185, 129, 0.35);

    /* Accent — Bright Emerald (secondary green) */
    --gold:       #34d399;
    --gold-light: #6ee7b7;
    --gold-dim:   rgba(52, 211, 153, 0.12);

    /* Text */
    --text-white: #f1f5f9;
    --text-dim:   #8899aa;
    --text-muted: #4a5568;

    /* Glass */
    --glass:        rgba(255, 255, 255, 0.028);
    --glass-hover:  rgba(255, 255, 255, 0.055);
    --glass-border: rgba(255, 255, 255, 0.07);
    --glass-blur:   blur(20px);

    /* Layout */
    --container-max:    1080px;
    --section-pad:      130px;
    --radius-card:      28px;
    --radius-sm:        14px;

    /* Motion */
    --ease:    cubic-bezier(0.16, 1, 0.3, 1);
    --timing:  0.55s;
    --transition: all var(--timing) var(--ease);
}

/* =================== RESET =================== */
*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Syrian-inspired subtle geometric background pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(16,185,129,0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(52,211,153,0.05) 0%, transparent 45%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='rgba(255,255,255,0.018)' stroke-width='0.5'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z'/%3E%3Cpath d='M30 15 L45 30 L30 45 L15 30 Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

section { position: relative; padding: var(--section-pad) 0; }
section > * { position: relative; z-index: 1; }

/* =================== TYPOGRAPHY =================== */
h1 {
    font-size: clamp(3.2rem, 7.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    background: linear-gradient(140deg, #fff 20%, var(--primary-light) 60%, #a7f3d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

p {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.75;
    font-weight: 300;
}

.arabic-script {
    font-family: 'Noto Naskh Arabic', serif;
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0.7;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s var(--ease) both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 0.7; transform: translateY(0); }
}

/* =================== BADGE =================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.18);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.badge-gold {
    background: var(--gold-dim);
    border-color: rgba(201, 151, 58, 0.25);
    color: var(--gold-light);
}

/* =================== BUTTONS =================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: var(--radius-sm);
    font-size: 0.97rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #059669);
    color: #fff;
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(16, 185, 129, 0.45);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-white);
}
.btn-outline:hover {
    background: var(--glass-hover);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.3);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(16, 185, 129, 0.45);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

/* =================== NAVIGATION =================== */
#main-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 28px 0;
    transition: var(--transition);
}

#main-nav.scrolled {
    padding: 14px 0;
    background: rgba(6, 10, 18, 0.75);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo span { color: var(--gold); }

.nav-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(16,185,129,0.3));
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--primary);
    transition: width 0.35s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Nav right group (lang switcher + hamburger) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 3px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 4px;
}

.lang-btn {
    padding: 5px 11px;
    border-radius: 7px;
    border: none;
    background: transparent;
    color: var(--text-dim);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    font-family: 'Outfit', sans-serif;
}

.lang-btn:hover  { color: var(--text-white); }
.lang-btn.active { background: var(--primary); color: #fff; }

/* Hamburger (mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-dim);
    border-radius: 2px;
    transition: var(--transition);
}

/* =================== HERO =================== */
#hero {
    height: 100vh;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(16,185,129,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 90%, rgba(52,211,153,0.06) 0%, transparent 60%);
    transition: transform 0.08s linear;
}

/* Decorative arc lines — Damascus geometry */
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 700' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='600' cy='350' r='300' fill='none' stroke='rgba(16,185,129,0.05)' stroke-width='1'/%3E%3Ccircle cx='600' cy='350' r='220' fill='none' stroke='rgba(52,211,153,0.04)' stroke-width='1'/%3E%3Ccircle cx='600' cy='350' r='450' fill='none' stroke='rgba(16,185,129,0.03)' stroke-width='1'/%3E%3C/svg%3E") center / contain no-repeat;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content h1 { margin-bottom: 1.5rem; }
.hero-content p { font-size: 1.15rem; max-width: 600px; margin: 0 auto 2.5rem; }

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2.5s ease-in-out infinite;
}

.hero-scroll-hint i { font-size: 0.85rem; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50%       { transform: translateY(6px); opacity: 0.8; }
}

/* =================== SECTION TITLES =================== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-header p {
    max-width: 580px;
    margin: 0 auto;
}

/* Divider line */
.section-divider {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* =================== ABOUT SECTION =================== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-card:hover { border-color: rgba(16,185,129,0.25); transform: translateY(-5px); }
.pillar-card:hover::before { opacity: 1; }

.pillar-icon {
    width: 52px; height: 52px;
    border-radius: 15px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.15);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    color: var(--primary);
}

.pillar-card h3 { font-size: 1.1rem; color: var(--text-white); }
.pillar-card p  { font-size: 0.92rem; margin: 0; }

/* Quote block */
.quote-block {
    margin-top: 60px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(16,185,129,0.04), rgba(201,151,58,0.03));
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-card);
    position: relative;
}

.quote-block::before {
    content: '\201C';
    position: absolute;
    top: -10px; left: 40px;
    font-size: 5rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.18;
    font-family: Georgia, serif;
}

.quote-block blockquote {
    font-size: 1.15rem;
    color: var(--text-dim);
    font-style: italic;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.quote-author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

.quote-author-title {
    font-size: 0.82rem;
    color: var(--primary);
    display: block;
    margin-top: 2px;
}

/* =================== PLATFORM SECTIONS =================== */
.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Reverse: image on left, content on right — using order instead of RTL direction */
.platform-grid.reverse .platform-content { order: 2; }
.platform-grid.reverse .platform-visual  { order: 1; }

.section-logo {
    height: 54px; width: auto;
    object-fit: contain;
    margin-bottom: 1.8rem;
    display: block;
    filter: drop-shadow(0 0 12px rgba(16,185,129,0.25));
}

.platform-desc {
    font-size: 1.08rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Feature tiles */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 2rem;
}

.feature-tile {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 18px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.feature-tile:hover {
    border-color: rgba(16,185,129,0.22);
    background: rgba(16,185,129,0.04);
}

.feature-tile h4 { color: var(--primary); font-size: 0.9rem; margin-bottom: 5px; }
.feature-tile p  { font-size: 0.86rem; margin: 0; line-height: 1.55; }

/* Platform visual */
.platform-visual {
    position: relative;
}

.platform-visual img {
    width: 100%;
    border-radius: var(--radius-card);
    box-shadow: 0 50px 100px rgba(0,0,0,0.55), 0 0 40px rgba(16,185,129,0.06);
}

.floating {
    animation: float 9s ease-in-out infinite;
}
.floating-slow {
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-18px) rotate(0.5deg); }
}

/* Highlighted callout inside section */
.callout-box {
    background: linear-gradient(135deg, rgba(16,185,129,0.06), rgba(201,151,58,0.04));
    border: 1px solid rgba(16,185,129,0.18);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 22px 24px;
    margin-bottom: 2rem;
}

.callout-box h4 {
    color: var(--gold-light);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.callout-box p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* =================== CONNECT SECTION =================== */
.connect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.social-card:hover {
    background: var(--glass-hover);
    border-color: rgba(16,185,129,0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.social-card img { object-fit: contain; }

.social-card h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.social-card p { font-size: 0.9rem; margin-bottom: 0; min-height: 54px; }

.social-links-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.social-icon-btn {
    width: 46px; height: 46px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(16,185,129,0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.dev-card .social-icon-btn:hover { background: var(--primary-light); border-color: var(--primary-light); box-shadow: 0 8px 20px rgba(52,211,153,0.3); }

/* =================== CONTACT SECTION =================== */
.contact-wrapper {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.contact-box {
    margin-top: 44px;
    padding: 56px 48px;
    background: linear-gradient(135deg, rgba(16,185,129,0.05), rgba(201,151,58,0.03));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    transition: var(--transition);
}

.contact-box:hover {
    border-color: rgba(16,185,129,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.email-link {
    font-size: 1.6rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    display: inline-block;
    margin: 16px 0;
}

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

.contact-box p { font-size: 0.92rem; margin: 0; margin-top: 16px; }

/* =================== ACCESS / LINKS SECTION =================== */
.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.access-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.access-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16,185,129,0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.access-card h3 { font-size: 1.15rem; color: var(--text-white); }
.access-card p  { font-size: 0.9rem; flex: 1; }
.access-card .btn { margin-top: auto; width: 100%; }

/* =================== FOOTER =================== */
footer {
    padding: 70px 0 36px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-light), transparent);
    opacity: 0.4;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom small {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-arabic {
    font-family: 'Noto Naskh Arabic', serif;
    color: var(--gold);
    opacity: 0.45;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

/* =================== REVEAL ANIMATIONS =================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--timing) var(--ease),
                transform var(--timing) var(--ease);
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }

/* =================== SEPARATOR =================== */
.section-sep {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 0 32px;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1020px) {
    :root { --section-pad: 90px; }

    .platform-grid,
    .platform-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 50px;
    }

    .platform-grid.reverse .platform-content { order: 0; }
    .platform-grid.reverse .platform-visual  { order: 0; }

    .pillars-grid { grid-template-columns: 1fr 1fr; }
    .connect-grid,
    .access-grid   { grid-template-columns: 1fr 1fr; }

    h2 { font-size: 2.2rem; }
}

@media (max-width: 720px) {
    :root { --section-pad: 70px; }

    .container { padding: 0 20px; }

    .nav-links  { display: none; }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px; left: 0; right: 0;
        background: rgba(6,10,18,0.97);
        backdrop-filter: blur(20px);
        padding: 24px 32px;
        border-bottom: 1px solid var(--glass-border);
        gap: 20px;
        z-index: 999;
    }
    .nav-toggle { display: flex; }

    h1 { font-size: 2.8rem; }
    h2 { font-size: 1.9rem; }

    .pillars-grid  { grid-template-columns: 1fr; }
    .feature-grid  { grid-template-columns: 1fr; }
    .connect-grid  { grid-template-columns: 1fr; }
    .access-grid   { grid-template-columns: 1fr; }

    .hero-actions  { flex-direction: column; align-items: center; }

/* =================== RTL SUPPORT (Arabic) =================== */
[dir="rtl"] body                              { font-family: 'Noto Naskh Arabic', 'Outfit', sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] h4, [dir="rtl"] p, [dir="rtl"] .badge { font-family: 'Noto Naskh Arabic', sans-serif; letter-spacing: 0; }
[dir="rtl"] .logo                             { flex-direction: row-reverse; }
[dir="rtl"] .nav-links                        { flex-direction: row-reverse; }
[dir="rtl"] .hero-content                     { direction: rtl; }
[dir="rtl"] .arabic-script                    { opacity: 0; } /* hide redundant Arabic script in AR mode */
[dir="rtl"] .quote-block                      { border-left: none; border-right: 3px solid var(--primary); }
[dir="rtl"] .platform-grid.reverse .platform-content { order: 0; }
[dir="rtl"] .platform-grid.reverse .platform-visual  { order: 0; }
[dir="rtl"] .footer-top                       { flex-direction: row-reverse; }
[dir="rtl"] .footer-bottom                    { flex-direction: row-reverse; }
[dir="rtl"] .feature-tile h4                  { flex-direction: row-reverse; }


    .contact-box { padding: 36px 24px; }
    .email-link  { font-size: 1.25rem; }

    .quote-block { padding: 32px 24px; }

    .footer-top { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
