/* ════════════════════════════════════════════════
   ARSM GLOBAL TRADING LLC — MAIN STYLESHEET
   Brand Colors: Red #C8102E | Black #1a1a1a | Green #006B3F
   ════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
    --red:       #C8102E;
    --red-dark:  #a00e25;
    --green:     #006B3F;
    --green-dark:#005230;
    --black:     #1a1a1a;
    --charcoal:  #2c2c2c;
    --off-white: #f8f5f0;
    --white:     #ffffff;
    --gold:      #b8975a;
    --text:      #2c2c2c;
    --text-muted:#666;
    --border:    rgba(0,0,0,0.1);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Outfit', sans-serif;

    --ease: cubic-bezier(0.165, 0.84, 0.44, 1);
    --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
    --transition: all 0.45s var(--ease);

    --nav-h: 80px;
    --container: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    cursor: none;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: none; }
input, textarea, select { font-family: inherit; }

/* ── Custom Cursor ── */
.cursor {
    width: 10px; height: 10px;
    background: var(--red);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s, width 0.25s, height 0.25s, background 0.25s;
    mix-blend-mode: multiply;
}
.cursor-follower {
    width: 36px; height: 36px;
    border: 1.5px solid var(--red);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: transform 0.3s var(--ease), opacity 0.3s;
    opacity: 0.5;
}
body:hover .cursor { opacity: 1; }

/* ── Loader ── */
.loader {
    position: fixed; inset: 0;
    background: var(--black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo svg { width: 80px; height: 70px; margin: 0 auto 1.5rem; animation: pulse 1.5s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.7;transform:scale(0.96)} }
.loader-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 6px;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 300;
}
.loader-bar {
    width: 200px; height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}
.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--green));
    width: 0%;
    transition: width 0.3s var(--ease);
}

/* ── Layout ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 110px 0; }

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(255,255,255,0.0);
    backdrop-filter: blur(0px);
    transition: background 0.4s var(--ease), backdrop-filter 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}
.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav-logo {
    display: flex; align-items: center; gap: 0.75rem;
    flex-shrink: 0;
}
.logo-svg { height: 36px; width: auto; }
.logo-text { display: flex; flex-direction: column; gap: 0; }
.logo-main {
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
    color: var(--black);
}
.logo-sub {
    font-size: 0.6rem; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--text-muted);
    font-weight: 500;
    line-height: 1;
    margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link {
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--white); position: relative;
    transition: color 0.3s;
    padding-bottom: 2px;
}
.navbar.scrolled .nav-link { color: var(--black); }
.nav-link::after {
    content: '';
    position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1.5px;
    background: var(--red);
    transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--red); }
.nav-link:hover::after { width: 100%; }
.navbar.scrolled .nav-link:hover { color: var(--red); }
.nav-cta {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    background: var(--red); color: var(--white);
    padding: 0.65rem 1.4rem;
    border-radius: 3px;
    transition: background 0.3s, transform 0.2s;
    flex-shrink: 0;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.hamburger {
    display: none; flex-direction: column;
    gap: 5px; background: none; border: none;
    padding: 4px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white);
    transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--black); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); z-index: 999;
    padding: 2rem;
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    display: none;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-link {
    display: block; padding: 0.9rem 0;
    font-size: 1.1rem; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--black);
    border-bottom: 1px solid var(--border);
    transition: color 0.3s;
}
.mobile-link:hover { color: var(--red); }

/* ── Hero ── */
.hero {
    height: 100vh; min-height: 700px;
    position: relative;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    overflow: hidden;
    padding: 0 2rem;
}
.hero-bg {
    position: absolute; inset: 0;
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    z-index: 0;
}
.hero-stripe { height: 100%; }
.hero-stripe.red   { background: #C8102E; }
.hero-stripe.black { background: #1a1a1a; }
.hero-stripe.green { background: #006B3F; }
.hero-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.62);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; color: var(--white);
    max-width: 820px;
}
.hero-tag {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    display: block;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    font-weight: 400; line-height: 1.08;
    margin-bottom: 1.5rem;
}
.hero-title span { display: block; }
.hero-title em {
    display: block; font-style: italic;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
}
.hero-sub {
    font-size: 1rem; font-weight: 300;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--red); color: var(--white);
    padding: 0.9rem 2.2rem;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 3px; border: 2px solid var(--red);
    transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
}
.btn-primary:hover {
    background: var(--red-dark); border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,16,46,0.35);
}
.btn-primary.full-width { width: 100%; justify-content: center; }
.btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--white);
    padding: 0.9rem 2.2rem;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 3px; border: 2px solid rgba(255,255,255,0.4);
    transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-map {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--black);
    padding: 0.8rem 1.6rem;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 3px; border: 1.5px solid var(--border);
    margin-top: 1.5rem;
    transition: var(--transition);
}
.btn-map:hover { border-color: var(--red); color: var(--red); }

/* ── Hero Stats (bottom bar) ── */
.hero-stats {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 3;
    display: flex; align-items: center; justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat {
    flex: 1; text-align: center;
    padding: 1.5rem 2rem; color: var(--white);
}
.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem; font-weight: 600; line-height: 1;
    margin-bottom: 0.3rem;
}
.hero-stat span { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.6; }
.hero-stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* ── Scroll Indicator ── */
.scroll-indicator {
    position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column;
    align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
    animation: fadeInDown 2s ease 1.5s both;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
    animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0.3;transform:scaleY(0.5)} 50%{opacity:1;transform:scaleY(1)} }
@keyframes fadeInDown { from{opacity:0;transform:translateX(-50%) translateY(-10px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }

/* ── Ticker ── */
.ticker-wrap {
    background: var(--black); overflow: hidden;
    padding: 0.85rem 0; border-top: 3px solid var(--red);
    border-bottom: 3px solid var(--green);
    position: relative; z-index: 10;
}
.ticker {
    display: inline-flex; align-items: center; gap: 2.5rem;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.ticker-dot { color: var(--red); font-size: 0.5rem; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Section Shared ── */
.section-tag {
    display: inline-block;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--red); margin-bottom: 1rem;
}
.section-tag.light { color: rgba(255,255,255,0.5); }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400; line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--black);
}
.section-title.light { color: var(--white); }
.section-body { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1rem; }
.section-subtitle { font-size: 1rem; color: rgba(255,255,255,0.5); max-width: 600px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }

/* ── Reveal Animations ── */
.reveal-up {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s var(--ease) var(--delay, 0s),
                transform 0.7s var(--ease) var(--delay, 0s);
}
.reveal-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.revealed { opacity: 1 !important; transform: none !important; }

/* ── About ── */
.about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-card-main {
    background: var(--white); border-radius: 8px;
    padding: 3.5rem; text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative; z-index: 1;
}
.about-logo-large svg { width: 120px; height: auto; margin: 0 auto 1.5rem; }
.about-card-text {
    font-family: var(--font-display);
    font-size: 1.8rem; letter-spacing: 8px;
    font-weight: 600; color: var(--black);
}
.about-accent-card {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: var(--red); color: var(--white);
    border-radius: 8px; padding: 1.5rem 2rem;
    text-align: center; z-index: 2;
    box-shadow: 0 10px 30px rgba(200,16,46,0.3);
}
.accent-number {
    display: block; font-family: var(--font-display);
    font-size: 2.8rem; font-weight: 700; line-height: 1;
}
.accent-label { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.85; }
.about-pillars { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.pillar { display: flex; align-items: flex-start; gap: 1rem; }
.pillar-icon { color: var(--red); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.pillar strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.pillar p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ── Presence ── */
.presence { background: var(--black); position: relative; overflow: hidden; }
.presence-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200,16,46,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(0,107,63,0.12) 0%, transparent 60%);
}
.countries-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem; margin-bottom: 4rem;
}
.country-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 1.5rem 1rem;
    text-align: center; color: var(--white);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.country-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(200,16,46,0.4);
    transform: translateY(-4px);
}
.country-flag { font-size: 2.2rem; margin-bottom: 0.5rem; }
.country-card span { font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; opacity: 0.7; }
.stats-bar {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 1px; background: rgba(255,255,255,0.08);
    border-radius: 8px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}
.stat-block {
    background: rgba(255,255,255,0.04);
    padding: 2.5rem 2rem; text-align: center; color: var(--white);
}
.stat-block strong {
    display: block; font-family: var(--font-display);
    font-size: 3.5rem; font-weight: 600; line-height: 1;
    margin-bottom: 0.5rem; color: var(--white);
}
.stat-block span { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.5; }

/* ── Services ── */
.services { background: var(--white); }
.services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.service-card {
    border: 1.5px solid var(--border);
    border-radius: 8px; padding: 2.5rem 2rem;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--red), var(--green));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.service-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 600;
    margin-bottom: 0.8rem;
}
.service-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); }

/* ── Contact ── */
.contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-details { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
    width: 42px; height: 42px;
    border-radius: 6px; display: flex;
    align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.contact-icon.red { background: rgba(200,16,46,0.1); }
.contact-icon.green { background: rgba(0,107,63,0.1); }
.contact-item strong { display: block; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.25rem; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }
.contact-item a:hover { color: var(--red); }

/* ── Form ── */
.contact-form-wrap {
    background: var(--white); border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.07);
    position: relative;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
.form-group label { font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.form-group input,
.form-group textarea,
.form-group select {
    border: 1.5px solid var(--border);
    border-radius: 5px; padding: 0.85rem 1rem;
    font-size: 0.95rem; color: var(--text);
    background: var(--off-white);
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.btn-arrow { font-size: 1.1rem; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 1rem; }
.form-success {
    display: none; text-align: center;
    padding: 2rem; animation: fadeIn 0.5s ease;
}
.form-success.visible { display: block; }
@keyframes fadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }
.success-icon {
    width: 60px; height: 60px;
    background: var(--green); color: var(--white);
    border-radius: 50%; font-size: 1.8rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}
.form-success h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--text-muted); }

/* ── Footer ── */
.footer { background: var(--black); color: var(--white); }
.footer-top { padding: 5rem 0 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 4rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.4); margin-top: 1.5rem; max-width: 320px; }
.footer-logo { display: flex; align-items: center; gap: 1rem; margin-bottom: 0; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 3px; font-weight: 700; line-height: 1; }
.footer-logo-sub { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 2px; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.5rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a, .footer-col li { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color 0.3s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 0;
}
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-stripes { display: flex; gap: 4px; }
.footer-stripes span { width: 24px; height: 4px; border-radius: 2px; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { max-width: 400px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .footer-brand { grid-column: 1 / -1; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    :root { --nav-h: 70px; }
    .section { padding: 80px 0; }
    .container { padding: 0 1.5rem; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; }
    .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
    .hero-stats { position: relative; flex-direction: column; gap: 0; }
    .hero-stat-divider { width: 80px; height: 1px; }
    .hero-stat { padding: 1rem 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .countries-grid { grid-template-columns: repeat(3, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { grid-column: auto; }
    .footer-bottom .container { flex-direction: column; gap: 1rem; text-align: center; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .about-accent-card { right: 0; bottom: -1rem; }
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .countries-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-bar { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════
   ARABIC / RTL SUPPORT
   ════════════════════════════════════════════════ */

/* Arabic font override */
html[lang="ar"] body {
    font-family: 'Tajawal', 'Outfit', sans-serif;
    direction: rtl;
}
html[lang="ar"] .hero-title,
html[lang="ar"] .section-title,
html[lang="ar"] .about-card-text,
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 {
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

/* RTL layout flips */
html[lang="ar"] .nav-container    { flex-direction: row-reverse; }
html[lang="ar"] .nav-links        { flex-direction: row-reverse; }
html[lang="ar"] .nav-right        { flex-direction: row-reverse; }
html[lang="ar"] .hero-content     { direction: rtl; }
html[lang="ar"] .about-grid       { direction: rtl; }
html[lang="ar"] .about-pillars    { direction: rtl; }
html[lang="ar"] .pillar           { flex-direction: row-reverse; text-align: right; }
html[lang="ar"] .contact-grid     { direction: rtl; }
html[lang="ar"] .contact-item     { flex-direction: row-reverse; text-align: right; }
html[lang="ar"] .footer-grid      { direction: rtl; }
html[lang="ar"] .footer-logo      { flex-direction: row-reverse; }
html[lang="ar"] .footer-bottom .container { flex-direction: row-reverse; }
html[lang="ar"] .form-row         { direction: rtl; }
html[lang="ar"] .form-group       { direction: rtl; text-align: right; }
html[lang="ar"] .mobile-menu ul   { direction: rtl; }

/* RTL text alignment */
html[lang="ar"] .section-tag,
html[lang="ar"] .section-title,
html[lang="ar"] .section-body,
html[lang="ar"] .about-text,
html[lang="ar"] .contact-info     { text-align: right; }

html[lang="ar"] .section-header   { text-align: center; }

/* Nav link underline flip for RTL */
html[lang="ar"] .nav-link::after  { left: auto; right: 0; }

/* About accent card flip */
html[lang="ar"] .about-accent-card { right: auto; left: -1.5rem; }
@media (max-width: 768px) {
    html[lang="ar"] .about-accent-card { left: 0; right: auto; }
}

/* Hero actions RTL */
html[lang="ar"] .hero-actions     { flex-direction: row-reverse; }

/* Scroll arrow RTL */
html[lang="ar"] .btn-arrow        { transform: scaleX(-1); }

/* Lang toggle button */
.lang-toggle {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--white);
    font-family: 'Tajawal', 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.lang-toggle:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
}
.navbar.scrolled .lang-toggle {
    border-color: var(--border);
    color: var(--black);
}
.navbar.scrolled .lang-toggle:hover {
    border-color: var(--red);
    color: var(--red);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

/* RTL ticker direction */
html[lang="ar"] .ticker {
    animation-direction: reverse;
}

/* Arabic hero title style - no italic */
html[lang="ar"] .hero-title em {
    font-style: normal;
    font-weight: 500;
}

/* ════════════════════════════════════════════════
   PRODUCTS SECTION
   ════════════════════════════════════════════════ */
.products { background: var(--white); }
.section-subtitle.dark { color: var(--text-muted); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
.product-card {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
    position: relative; overflow: hidden;
}
.product-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--red), var(--green));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.09);
    border-color: transparent;
    background: var(--white);
}
.product-card--highlight {
    background: linear-gradient(135deg, rgba(200,16,46,0.04), rgba(0,107,63,0.04));
    border-color: rgba(200,16,46,0.15);
}
.product-emoji { font-size: 2.4rem; margin-bottom: 1rem; }
.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 600;
    margin-bottom: 0.6rem; color: var(--black);
}
.product-card p { font-size: 0.88rem; line-height: 1.65; color: var(--text-muted); }

/* ── About Info Card ── */
.about-info-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    margin-top: 1.2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
}
.info-row:last-child { border-bottom: none; }
.info-label {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-muted);
}
.info-val {
    font-size: 0.88rem; font-weight: 600;
    color: var(--black); text-align: right;
}

/* ── Footer Legal ── */
.footer-legal {
    display: flex; gap: 1.2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.footer-legal span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.5px;
}

/* ── Responsive Products ── */
@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .product-card  { padding: 1.2rem 1rem; }
    .product-emoji { font-size: 1.8rem; }
}

/* ── RTL Info Card ── */
html[lang="ar"] .info-row  { flex-direction: row-reverse; }
html[lang="ar"] .info-val  { text-align: left; }
html[lang="ar"] .footer-legal { flex-direction: row-reverse; }
html[lang="ar"] .product-card { text-align: right; }

/* ══════════════════════════════════════════
   BRANDS / AGENCIES SECTION
   ══════════════════════════════════════════ */
.brands-section {
  background: #fafafa;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.brand-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,0.04), rgba(0,107,63,0.04));
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 12px;
}

.brand-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-4px);
  border-color: var(--red);
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 0.5rem;
}

.brand-logo-wrap img {
  max-width: 140px;
  max-height: 80px;
  object-fit: contain;
  display: block;
}

.brand-name-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
  letter-spacing: 0.03em;
  line-height: 1.3;
  padding: 0.5rem;
}

.brand-name-fallback small {
  font-size: 0.7rem;
  font-weight: 400;
  color: #888;
  display: block;
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Brand card added by user */
.brand-card.user-added {
  border-color: var(--green);
  animation: brandPop 0.4s cubic-bezier(.34,1.56,.64,1);
}

@keyframes brandPop {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Upload Panel ── */
.brands-upload-panel {
  margin-top: 3.5rem;
  background: #fff;
  border: 1.5px dashed #d0d0d0;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  transition: border-color 0.3s;
}

.brands-upload-panel:hover {
  border-color: var(--red);
}

.upload-panel-header {
  margin-bottom: 1.5rem;
}

.upload-panel-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.upload-panel-header p {
  font-size: 0.9rem;
  color: #777;
}

.upload-form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.upload-input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: #fafafa;
  transition: border-color 0.2s;
  outline: none;
}

.upload-input:focus {
  border-color: var(--red);
}

.upload-file-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  background: #f4f4f4;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #555;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.upload-file-label:hover {
  background: #eee;
  border-color: #aaa;
}

.upload-btn {
  white-space: nowrap;
}

.upload-preview {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #f8f8f8;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}

.upload-preview img {
  max-height: 60px;
  max-width: 120px;
  object-fit: contain;
}

.upload-preview span {
  font-size: 0.9rem;
  color: #444;
  font-weight: 500;
}

@media (max-width: 640px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .upload-form-row {
    flex-direction: column;
  }
  .upload-input,
  .upload-file-label,
  .upload-btn {
    width: 100%;
  }
  .brands-upload-panel {
    padding: 1.5rem 1.2rem;
  }
}

/* ══════════════════════════════════════════
   AGENTS / DISTRIBUTORS SECTION
   ══════════════════════════════════════════ */
.agents-section {
  background: linear-gradient(160deg, #1a1a1a 0%, #111 100%);
  position: relative;
  overflow: hidden;
}

.agents-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,16,46,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.agents-section::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,107,63,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.agents-section .section-tag {
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.15);
}

.agents-section .section-title {
  color: #fff;
}

.agents-section .section-subtitle {
  color: rgba(255,255,255,0.55) !important;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.agent-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.agent-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--red), var(--green));
  opacity: 0;
  transition: opacity 0.3s;
}

.agent-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,16,46,0.35);
  transform: translateX(4px);
}

[dir="rtl"] .agent-card:hover {
  transform: translateX(-4px);
}

.agent-card:hover::before {
  opacity: 1;
}

.agent-flag {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.agent-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.agent-country {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  font-family: 'Outfit', sans-serif;
}

.agent-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .agents-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .agent-card {
    padding: 1.1rem 1.3rem;
  }
}
