/* ══════════════════════════════════════════════════════════════
   RST LOGISTICS & TRANSPORT — MASTER STYLESHEET
   assets/style/style.css
   Theme updated to match RST Logo (deep navy + royal blue)
══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --navy:          #0a1628;
  --navy-mid:      #0f2040;
  --navy-light:    #1a3a6b;
  --blue:          #1a4b8c;
  --blue-bright:   #2e6fd4;
  --blue-glow:     #3d7fe0;
  --silver:        #8fa3b8;
  --silver-light:  #edf2f7;
  --white:         #ffffff;
  --text-body:     #3d4f63;
  --text-muted:    #7a90a6;

  /* Keep orange as a very subtle accent only for CTAs */
  --orange:        #2e6fd4;
  --orange-dark:   #1a4b8c;

  --gradient-hero:   linear-gradient(135deg, #0a1628 0%, #1a3a6b 50%, #0d2444 100%);
  --gradient-blue:   linear-gradient(135deg, #2e6fd4, #1a4b8c);
  --gradient-orange: linear-gradient(135deg, #2e6fd4, #1a4b8c);

  --shadow-card:  0 4px 24px rgba(10,22,40,.18);
  --shadow-lg:    0 12px 48px rgba(10,22,40,.30);
  --shadow-blue:  0 4px 20px rgba(46,111,212,.40);
  --radius:       12px;
  --radius-lg:    20px;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: 'Outfit', sans-serif; color: var(--text-body); background: var(--white); overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── UTILITIES ─────────────────────────────────────────────── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label  { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .85rem; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 12px; }
.section-title  { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2rem,4vw,3rem); color: var(--navy); line-height: 1.1; margin-bottom: 20px; }
.section-title span { color: var(--blue-bright); }
.section-sub    { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

.btn            { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 6px; font-weight: 600; font-size: .95rem; transition: all .25s ease; }
.btn-primary    { background: var(--gradient-blue); color: var(--white); box-shadow: var(--shadow-blue); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,111,212,.55); }
.btn-outline    { border: 2px solid rgba(255,255,255,.55); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-navy       { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ─── FADE-IN ANIMATION ─────────────────────────────────────── */
.fade-in         { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════════════════════════════
   HEADER / NAVIGATION
══════════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .3s ease;
}
nav.scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}
nav.nav-solid {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 40px;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

/* Logo — white background box so dark logo shows on dark nav */
.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 4px 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}
.logo-wrap img {
  height: 59px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav links */
.nav-links a {
  color: rgba(255,255,255,.82); font-size: .88rem; font-weight: 500;
  letter-spacing: .02em; transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--blue-bright); transition: width .25s;
}
.nav-links a:hover               { color: var(--white); }
.nav-links a:hover::after        { width: 100%; }
.nav-links a.active              { color: var(--blue-bright); }
.nav-links a.active::after       { width: 100%; }

.nav-cta {
  background: var(--gradient-blue) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  letter-spacing: .02em;
  box-shadow: 0 4px 16px rgba(46,111,212,.35);
  transition: all .25s ease !important;
}
.nav-cta::after   { display: none !important; }
.nav-cta:hover    { box-shadow: 0 6px 22px rgba(46,111,212,.55) !important; transform: translateY(-1px) !important; }

/* Language Toggle Button */
.lang-btn {
  background: rgba(46,111,212,.15);
  border: 1.5px solid rgba(46,111,212,.5);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 6px;
  font-family: 'Tajawal', 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
  letter-spacing: .03em;
  flex-shrink: 0;
}
.lang-btn:hover {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  transform: translateY(-1px);
}
.lang-btn-mobile {
  margin-top: 10px;
  width: 100%;
  padding: 13px 20px;
  text-align: center;
  border-radius: 6px;
  display: block;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy-mid); padding: 20px 24px 28px; gap: 4px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.85); font-size: .95rem; font-weight: 500;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-menu .nav-cta {
  border: none; padding: 13px 20px !important;
  text-align: center; border-radius: 6px; margin-top: 8px;
  background: var(--gradient-blue); display: block;
}


/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh; background: var(--gradient-hero);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: 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 fill='%232e6fd4' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.road-lines {
  position: absolute; bottom: 40px; left: 0; right: 0;
  display: flex; justify-content: center; overflow: hidden; height: 6px;
}
.road-line {
  width: 80px; height: 3px; background: rgba(46,111,212,.25);
  margin: 0 40px; border-radius: 2px; animation: roadMove 2.5s linear infinite;
}
.road-line:nth-child(2) { animation-delay: -.8s; }
.road-line:nth-child(3) { animation-delay: -1.6s; }
.road-line:nth-child(4) { animation-delay: -2.4s; }
.road-line:nth-child(5) { animation-delay: -3.2s; }
@keyframes roadMove { from { transform: translateX(200px); } to { transform: translateX(-200px); } }

.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,111,212,.15); border: 1px solid rgba(46,111,212,.4);
  color: var(--blue-bright); padding: 6px 16px; border-radius: 999px;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-bright); animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.4); }
}

.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(2.8rem,6vw,5.2rem); color: var(--white);
  line-height: 1; letter-spacing: -.01em; margin-bottom: 24px;
}
.hero-h1 .accent { color: var(--blue-bright); display: block; }
.hero-sub {
  font-size: clamp(1rem,2vw,1.15rem); color: rgba(255,255,255,.7);
  line-height: 1.75; max-width: 520px; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats  { display: flex; gap: 40px; margin-top: 64px; flex-wrap: wrap; }
.hero-stat   { text-align: left; }
.hero-stat .num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat .num span { color: var(--blue-bright); }
.hero-stat .lbl { font-size: .78rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }


/* ══════════════════════════════════════════════════════════════
   STATS TICKER
══════════════════════════════════════════════════════════════ */
#stats-bar { background: var(--gradient-blue); padding: 18px 0; overflow: hidden; }
.stats-inner { display: flex; gap: 0; animation: ticker 18s linear infinite; }
.stat-item  {
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap; padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item svg  { flex-shrink: 0; width: 20px; height: 20px; fill: rgba(255,255,255,.75); }
.stat-item span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--white); letter-spacing: .05em; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
#about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-img-main {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius-lg); background: var(--gradient-hero);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.about-img-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gradient-blue); color: var(--white);
  padding: 22px 28px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-lg);
}
.about-img-badge .big { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 900; line-height: 1; }
.about-img-badge .sm  { font-size: .75rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }

.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.pillar { background: var(--silver-light); border-radius: var(--radius); padding: 20px; border-left: 4px solid var(--blue-bright); }
.pillar h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pillar p  { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }


/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
#services { padding: 100px 0; background: var(--silver-light); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-sub { margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; box-shadow: var(--shadow-card);
  transition: all .3s ease; position: relative; overflow: hidden;
  border-bottom: 4px solid transparent;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-blue); transform: scaleX(0); transition: .3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-bottom-color: var(--blue-bright); }
.service-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg,rgba(46,111,212,.12),rgba(46,111,212,.06));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: .3s;
}
.service-card:hover .svc-icon { background: var(--gradient-blue); }
.svc-icon svg { width: 28px; height: 28px; fill: var(--blue-bright); transition: .3s; }
.service-card:hover .svc-icon svg { fill: var(--white); }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: .85rem; font-weight: 600; color: var(--blue-bright); }


/* ══════════════════════════════════════════════════════════════
   FLEET
══════════════════════════════════════════════════════════════ */
#fleet { padding: 100px 0; background: var(--navy); }
.fleet-header { text-align: center; margin-bottom: 60px; }
.fleet-header .section-title { color: var(--white); }
.fleet-header .section-sub   { color: var(--silver); margin: 0 auto; }

.fleet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.fleet-card {
  background: var(--navy-mid); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid rgba(255,255,255,.07); transition: .3s;
}
.fleet-card:hover { transform: translateY(-6px); border-color: rgba(46,111,212,.5); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.fleet-thumb {
  height: 200px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,var(--navy-light),var(--navy-mid));
  position: relative; overflow: hidden;
}
.fleet-thumb-svg { width: 70%; opacity: .85; }
.fleet-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--blue-bright); color: var(--white);
  font-size: .7rem; font-weight: 700; padding: 4px 10px;
  border-radius: 999px; letter-spacing: .06em;
}
.fleet-info { padding: 22px; }
.fleet-info h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.fleet-info p  { font-size: .85rem; color: var(--silver); line-height: 1.6; }
.fleet-specs { display: flex; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.fleet-spec  { font-size: .75rem; color: var(--blue-bright); font-weight: 600; display: flex; align-items: center; gap: 4px; }


/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
#testimonials { padding: 100px 0; background: var(--white); }
.testi-header { text-align: center; margin-bottom: 60px; }
.testi-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testi-card {
  background: var(--silver-light); border-radius: var(--radius-lg);
  padding: 36px; position: relative; overflow: hidden; transition: .3s;
}
.testi-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.testi-quote {
  font-size: 5rem; line-height: .6; font-family: Georgia,serif;
  color: var(--blue-bright); opacity: .2; position: absolute; top: 20px; left: 24px;
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; fill: var(--blue-bright); }
.testi-card p { font-size: .95rem; color: var(--text-body); line-height: 1.75; font-style: italic; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,.07); }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gradient-hero); display: flex; align-items: center;
  justify-content: center; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; color: var(--white); font-size: 1.1rem; flex-shrink: 0;
}
.author-name  { font-weight: 600; color: var(--navy); font-size: .9rem; }
.author-title { font-size: .78rem; color: var(--text-muted); }


/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
#faq { padding: 100px 0; background: var(--silver-light); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px; cursor: pointer; font-weight: 600; color: var(--navy);
  font-size: .95rem; transition: .2s;
}
.faq-q:hover { color: var(--blue-bright); }
.faq-chevron { width: 20px; height: 20px; fill: var(--blue-bright); transition: .3s; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: .35s ease; }
.faq-a-inner { padding: 0 24px 20px; font-size: .88rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-a      { max-height: 200px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }


/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
#contact { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg,rgba(46,111,212,.12),rgba(46,111,212,.06));
  border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; fill: var(--blue-bright); }
.contact-detail h4 { font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-detail p  { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

.map-placeholder {
  background: var(--silver-light); border-radius: var(--radius-lg);
  height: 200px; display: flex; align-items: center; justify-content: center;
  margin-top: 8px; border: 2px dashed var(--silver); position: relative; overflow: hidden;
}
.map-placeholder svg { width: 40px; height: 40px; fill: var(--silver); opacity: .6; }
.map-text { text-align: center; }
.map-text p { font-size: .8rem; color: var(--text-muted); margin-top: 8px; }

/* Form */
.contact-form { background: var(--silver-light); border-radius: var(--radius-lg); padding: 40px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group   { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--navy); letter-spacing: .03em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px; border-radius: 8px; border: 2px solid var(--silver);
  background: var(--white); font-family: inherit; font-size: .9rem;
  color: var(--text-body); outline: none; transition: .25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-bright); }
.form-group textarea { resize: vertical; min-height: 120px; }


/* ══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--gradient-hero);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 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='%232e6fd4' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(2.5rem,5vw,4rem); color: var(--white); line-height: 1.05;
}
.page-hero h1 span { color: var(--blue-bright); }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-top: 14px; max-width: 540px; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a   { font-size: .82rem; color: rgba(255,255,255,.55); transition: color .2s; }
.breadcrumb a:hover { color: var(--blue-bright); }
.breadcrumb span { font-size: .82rem; color: rgba(255,255,255,.3); }
.breadcrumb strong { font-size: .82rem; color: var(--blue-bright); }

/* ══════════════════════════════════════════════════════════════
   QUOTE PAGE FORM
══════════════════════════════════════════════════════════════ */
.quote-form-section { padding: 80px 0; background: var(--silver-light); }
.quote-form-wrap { max-width: 860px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 52px; box-shadow: var(--shadow-lg); }
.quote-form-wrap h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.quote-form-wrap > p { font-size: .9rem; color: var(--text-muted); margin-bottom: 36px; }
.form-section-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); border-left: 4px solid var(--blue-bright); padding-left: 12px; margin: 28px 0 18px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }


/* ══════════════════════════════════════════════════════════════
   INNER PAGE SECTIONS
══════════════════════════════════════════════════════════════ */
.section-pad     { padding: 100px 0; }
.bg-white        { background: var(--white); }
.bg-light        { background: var(--silver-light); }
.bg-navy         { background: var(--navy); }
.text-center     { text-align: center; }


/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
footer { background: var(--navy); color: rgba(255,255,255,.75); }

.footer-top {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Footer logo — white box so dark logo is visible */
.footer-logo {
  margin-bottom: 18px;
}
.footer-logo a {
  display: inline-block;
  background: #ffffff;
  border-radius: 8px;
  padding: 6px 12px;
}
.footer-logo img { height: 59px; width: auto; object-fit: contain; display: block; }
.footer-brand p { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.5); max-width: 260px; }

.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.soc-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.07); display: flex; align-items: center;
  justify-content: center; transition: .25s;
}
.soc-btn:hover { background: var(--blue-bright); }
.soc-btn svg   { width: 16px; height: 16px; fill: rgba(255,255,255,.75); }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: .95rem; font-weight: 700;
  color: var(--white); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-col a   { font-size: .87rem; color: rgba(255,255,255,.5); transition: .2s; display: flex; align-items: center; gap: 6px; }
.footer-col a:hover { color: var(--blue-bright); padding-left: 4px; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 80px;
  row-gap: 18px;
  text-align: center;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-bottom p span  { color: var(--blue-bright); }
.footer-bottom p a     { color: var(--blue-bright); transition: opacity .2s; }
.footer-bottom p a:hover { opacity: .75; }
.footer-bottom .powered { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer-bottom .certifications { font-size: .75rem; color: rgba(255,255,255,.22); letter-spacing: .04em; }


/* ─── FLOATING WHATSAPP ─────────────────────────────────────── */
.whatsapp-float{
  position: fixed;
  right: 28px;
  bottom: 84px;

  width: 46px;
  height: 46px;
  border-radius: 10px;

  background: #25D366;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 20px rgba(37,211,102,.35);

  transition: .3s;
  z-index: 999;
}

.whatsapp-float:hover{
  transform: translateY(-2px);
}

.whatsapp-float svg{
  width: 20px;
  height: 20px;
  color: #ffffff;
}

/* ─── BACK TO TOP ────────────────────────────────────────────── */
#btt {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px; background: var(--gradient-blue);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 6px 20px rgba(46,111,212,.45);
  cursor: pointer; opacity: 0; pointer-events: none; transition: .3s; z-index: 999;
}
#btt.show          { opacity: 1; pointer-events: all; }
#btt svg           { width: 20px; height: 20px; fill: var(--white); }


/* ══════════════════════════════════════════════════════════════
   RTL / ARABIC GLOBAL OVERRIDES
══════════════════════════════════════════════════════════════ */
[dir="rtl"] { font-family: 'Tajawal', sans-serif; }
[dir="rtl"] body { font-family: 'Tajawal', sans-serif; }

/* Navigation */
/*[dir="rtl"] .nav-inner       { flex-direction: row-reverse; }*/
[dir="rtl"] .nav-inner { direction: rtl; }
[dir="rtl"] .nav-links       { flex-direction: row-reverse; margin-left: 0; margin-right: auto; }
[dir="rtl"] .mobile-menu     { text-align: right; }
[dir="rtl"] .mobile-menu a   { border-bottom: 1px solid rgba(255,255,255,.07); }

/* Typography */
[dir="rtl"] .section-title,
[dir="rtl"] .section-sub,
[dir="rtl"] .section-label   { text-align: right; }
[dir="rtl"] .services-header,
[dir="rtl"] .fleet-header,
[dir="rtl"] .testi-header    { text-align: right; }
[dir="rtl"] .services-header .section-sub,
[dir="rtl"] .fleet-header .section-sub { margin: 0; }

/* Layouts */
[dir="rtl"] .about-grid      { direction: rtl; }
[dir="rtl"] .contact-grid    { direction: rtl; }
[dir="rtl"] .faq-layout      { direction: rtl; }
[dir="rtl"] .footer-top      { direction: rtl; }
[dir="rtl"] .hero-content    { direction: rtl; }
[dir="rtl"] .hero-btns       { flex-direction: row-reverse; }
[dir="rtl"] .hero-stats      { flex-direction: row-reverse; }

/* Borders flip */
[dir="rtl"] .pillar               { border-left: none; border-right: 4px solid var(--blue-bright); padding-left: 0; padding-right: 16px; }
[dir="rtl"] .form-section-title   { border-left: none; border-right: 4px solid var(--blue-bright); padding-left: 0; padding-right: 12px; }
[dir="rtl"] .contact-detail       { flex-direction: row; text-align: right; }

/* Links and icons */
[dir="rtl"] .svc-link             { flex-direction: row-reverse; }
[dir="rtl"] .footer-col a:hover   { padding-left: 0; padding-right: 4px; }
[dir="rtl"] .footer-col ul        { text-align: right; }
[dir="rtl"] .footer-brand p       { text-align: right; }
[dir="rtl"] .footer-social        { flex-direction: row-reverse; }

/* Breadcrumb */
[dir="rtl"] .breadcrumb           { flex-direction: row-reverse; }

/* Forms */
[dir="rtl"] .form-group label     { text-align: right; }
[dir="rtl"] .form-group input,
[dir="rtl"] .form-group select,
[dir="rtl"] .form-group textarea  { text-align: right; direction: rtl; }

/* Cards */
[dir="rtl"] .service-card         { text-align: right; }
[dir="rtl"] .testi-card           { text-align: right; direction: rtl; }
[dir="rtl"] .testi-author         { flex-direction: row-reverse; }
[dir="rtl"] .fleet-info           { text-align: right; }
[dir="rtl"] .fleet-specs          { flex-direction: row-reverse; }

/* FAQ */
[dir="rtl"] .faq-q                { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .faq-a-inner          { text-align: right; }

/* About badge */
[dir="rtl"] .about-img-badge      { right: auto; left: -24px; }

/* Page hero */
[dir="rtl"] .page-hero .container { text-align: right; }
[dir="rtl"] .page-hero p          { text-align: right; }
[dir="rtl"] .hero-stat            { text-align: right; }

/* Font override for headings in Arabic */
[dir="rtl"] .section-title,
[dir="rtl"] .hero-h1,
[dir="rtl"] .page-hero h1,
[dir="rtl"] h1, [dir="rtl"] h2,
[dir="rtl"] h3, [dir="rtl"] h4   { font-family: 'Tajawal', sans-serif; font-weight: 800; letter-spacing: 0; }

/* ══════════════════════════════════════════════════════════════
   CLIENTS MARQUEE
══════════════════════════════════════════════════════════════ */
#clients {
  padding: 100px 0;
/* DEFAULT BRAND COLOR */
  background: linear-gradient(
    135deg,
    rgba(26,75,140,.10),
    rgba(46,111,212,.16)
  );
  overflow: hidden;
  position: relative;
}

.clients-header {
  text-align: center;
  margin-bottom: 60px;
}

.clients-header .section-sub {
  margin: 0 auto;
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.clients-marquee::before,
.clients-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: clientScroll 40s linear infinite;
}

.client-logo {
  flex-shrink: 0;
  height: 90px;
  min-width: 240px;
  margin: 0 14px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(10,22,40,.08);
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy);

  box-shadow: 0 4px 18px rgba(10,22,40,.06);

  transition: all .3s ease;
}

.client-logo:hover {
  transform: translateY(-6px);
  background: var(--gradient-blue);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes clientScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RTL */
[dir="rtl"] .clients-header {
  text-align: right;
}

[dir="rtl"] .clients-header .section-sub {
  margin: 0;
}
/* ── CLIENTS MARQUEE — RTL fixes ── */

/* 1. Flip the fade gradients: left fade on the right side, right fade on the left */
[dir="rtl"] .clients-marquee::before {
  left: auto;
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
[dir="rtl"] .clients-marquee::after {
  right: auto;
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

/* 2. Reverse the scroll direction so it moves right-to-left naturally in RTL */
[dir="rtl"] .clients-track {
  animation: clientScrollRTL 40s linear infinite;
}
[dir="rtl"] .clients-track:hover {
  animation-play-state: paused;
}
/* ── STATS TICKER — RTL fixes ── */

/* 1. Reverse scroll direction for RTL */
[dir="rtl"] .stats-inner {
  animation: tickerRTL 18s linear infinite;
}

@keyframes tickerRTL {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}

/* 2. Flip icon + text order inside each item */
[dir="rtl"] .stat-item {
  flex-direction: row-reverse;
}

/* 3. Flip the divider border to the other side */
[dir="rtl"] .stat-item {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@keyframes clientScrollRTL {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}

/* Responsive */
@media (max-width: 768px) {

  .client-logo {
    min-width: 180px;
    height: 75px;
    font-size: 1rem;
  }

  .clients-marquee::before,
  .clients-marquee::after {
    width: 60px;
  }

}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
/*@media (max-width: 992px) {*/
/*  .services-grid  { grid-template-columns: repeat(2,1fr); }*/
/*  .fleet-grid     { grid-template-columns: repeat(2,1fr); }*/
/*  .about-grid, .faq-layout, .contact-grid { grid-template-columns: 1fr; }*/
/*  .footer-top     { grid-template-columns: 1fr 1fr; }*/
/*  .testi-grid     { grid-template-columns: 1fr; }*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .nav-links      { display: none; }*/
/*  .hamburger      { display: flex; }*/
/*  .mobile-menu.active { display: flex; }*/
/*  .services-grid  { grid-template-columns: 1fr; }*/
/*  .fleet-grid     { grid-template-columns: 1fr; }*/
/*  .footer-top     { grid-template-columns: 1fr; }*/
/*  .form-row, .form-row-3 { grid-template-columns: 1fr; }*/
/*  .hero-stats     { gap: 24px; }*/
/*  .quote-form-wrap { padding: 32px 20px; }*/
/*  .nav-inner      { padding: 10px 20px; }*/
/*}*/

/* ══════════════════════════════════════════════════════════════
   RST LOGISTICS — RESPONSIVE ADDITIONS
   Replace the existing @media blocks at the bottom of style.css
   with this entire block (or append after the existing ones to
   override them — both work).
══════════════════════════════════════════════════════════════ */

/* ─── FLEET IMAGE FIX (all sizes) ───────────────────────────── */
.fleet-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.45) 0%, transparent 60%);
  pointer-events: none;
}
.about-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   TABLET  ≤ 1024px
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* Nav */
  .nav-inner       { padding: 10px 24px; gap: 20px; }
  .nav-links       { gap: 18px; }
  .nav-links a     { font-size: .82rem; }

  /* Hero */
  .hero-h1         { font-size: clamp(2.4rem, 5vw, 4rem); }
  .hero-stats      { gap: 28px; }

  /* About */
  .about-grid      { gap: 40px; }
  .about-img-badge { right: -12px; bottom: -12px; padding: 16px 20px; }
  .about-img-badge .big { font-size: 2.4rem; }

  /* Services / Fleet 2-col */
  .services-grid   { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .fleet-grid      { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Testimonials 2-col */
  .testi-grid      { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-top      { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
  .footer-top .footer-brand { grid-column: 1 / -1; }

  /* Quote form */
  .quote-form-wrap { padding: 40px 36px; }
  .form-row-3      { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   TABLET (MEDIUM)  ≤ 992px
══════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {

  /* Layout collapses */
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .faq-layout,
  .contact-grid    { grid-template-columns: 1fr; }
  .footer-top      { grid-template-columns: 1fr 1fr; }
  .testi-grid      { grid-template-columns: 1fr; }

  /* About visual full width */
  .about-visual    { max-width: 560px; margin: 0 auto; }
  .about-img-main  { height: 360px; }

  /* FAQ */
  .faq-layout      { gap: 40px; }

  /* Contact */
  .contact-grid    { gap: 40px; }

  /* Page hero */
  .page-hero       { padding: 120px 0 60px; }

  /* Stats bar wrapping items */
  .stat-item       { padding: 0 32px; }

  /* Section padding */
  #about, #services, #clients, #testimonials, #faq, #contact,
  .section-pad     { padding: 72px 0; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE  ≤ 768px
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Nav ── */
  .nav-links       { display: none; }
  .hamburger       { display: flex; }
  .nav-inner       { padding: 10px 16px; gap: 12px; }
  .logo-wrap img   { height: 38px; }

  /* ── Hero ── */
  #hero            { min-height: 100svh; }
  .hero-content    { padding: 100px 0 60px; }
  .hero-h1         { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 16px; }
  .hero-sub        { font-size: .95rem; margin-bottom: 28px; }
  .hero-btns       { flex-direction: column; gap: 12px; }
  .hero-btns .btn  { width: 100%; justify-content: center; }
  .hero-stats      { gap: 20px; margin-top: 40px; }
  .hero-stat .num  { font-size: 1.8rem; }
  .hero-badge      { font-size: .72rem; padding: 5px 12px; }

  /* ── Stats ticker ── */
  #stats-bar       { padding: 14px 0; }
  .stat-item       { padding: 0 24px; }
  .stat-item span  { font-size: .95rem; }
  .stat-item svg   { width: 16px; height: 16px; }

  /* ── About ── */
  #about           { padding: 60px 0; }
  .about-grid      { grid-template-columns: 1fr; gap: 48px; }
  .about-visual    { max-width: 100%; }
  .about-img-main  { height: 280px; }
  .about-img-badge { right: 12px; bottom: -16px; padding: 14px 18px; }
  .about-img-badge .big { font-size: 2rem; }
  .about-img-badge .sm  { font-size: .68rem; }
  .about-pillars   { grid-template-columns: 1fr; gap: 12px; }

  /* ── Services ── */
  #services        { padding: 60px 0; }
  .services-grid   { grid-template-columns: 1fr; gap: 16px; }
  .services-header { margin-bottom: 40px; }
  .service-card    { padding: 28px 22px; }

  /* ── Fleet ── */
  #fleet           { padding: 60px 0; }
  .fleet-grid      { grid-template-columns: 1fr; gap: 16px; }
  .fleet-header    { margin-bottom: 40px; }
  .fleet-thumb     { height: 200px; }

  /* ── Clients ── */
  #clients         { padding: 60px 0; }
  .clients-header  { margin-bottom: 36px; }
  .client-logo     { min-width: 160px; height: 70px; font-size: .9rem; margin: 0 8px; }
  .clients-marquee::before,
  .clients-marquee::after { width: 48px; }

  /* ── Testimonials ── */
  #testimonials    { padding: 60px 0; }
  .testi-grid      { grid-template-columns: 1fr; gap: 16px; }
  .testi-header    { margin-bottom: 36px; }
  .testi-card      { padding: 28px 22px; }

  /* ── FAQ ── */
  #faq             { padding: 60px 0; }
  .faq-layout      { grid-template-columns: 1fr; gap: 32px; }
  .faq-q           { padding: 18px 20px; font-size: .9rem; }
  .faq-a-inner     { padding: 0 20px 16px; }

  /* ── Contact ── */
  #contact         { padding: 60px 0; }
  .contact-grid    { grid-template-columns: 1fr; gap: 36px; }
  .contact-form    { padding: 28px 20px; }

  /* ── CTA banner ── */
  section[style*="padding:80px"] { padding: 60px 0 !important; }

  /* ── Page hero ── */
  .page-hero       { padding: 110px 0 48px; }
  .page-hero h1    { font-size: clamp(2rem, 7vw, 3rem); }
  .page-hero p     { font-size: .95rem; margin-top: 10px; }
  .breadcrumb      { gap: 6px; margin-bottom: 14px; }

  /* ── Footer ── */
  .footer-top      { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 32px; }
  .footer-brand p  { max-width: 100%; }
  .footer-bottom   { flex-direction: column; gap: 10px; column-gap: 0; padding: 20px 0; }

  /* ── Quote form ── */
  .quote-form-wrap { padding: 28px 16px; }
  .quote-form-wrap h2 { font-size: 1.5rem; }
  .form-row        { grid-template-columns: 1fr; }
  .form-row-3      { grid-template-columns: 1fr; }

  /* ── Sections general ── */
  .section-title   { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .section-sub     { font-size: .95rem; }
  .container       { padding: 0 16px; }

.whatsapp-float{
  right: 16px;
  bottom: 64px;

  width: 40px;
  height: 40px;
}

.whatsapp-float svg{
  width: 18px;
  height: 18px;
}

  /* ── About page stats strip ── */
  section[style*="grid-template-columns:repeat(4,1fr)"] > div {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ── Services page why-choose grid ── */
  section[style*="grid-template-columns:repeat(3,1fr)"] > div:not(.services-grid):not(.fleet-grid) {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ── Fleet promise grid ── */
  div[style*="grid-template-columns:repeat(3,1fr)"][style*="max-width:800px"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Back-to-top ── */
  #btt { bottom: 16px; right: 16px; width: 40px; height: 40px; }

  /* ── RTL mobile ── */
  [dir="rtl"] .hero-btns       { flex-direction: column; }
  [dir="rtl"] .about-img-badge { left: 12px; right: auto; bottom: -16px; }
  
}

/* ══════════════════════════════════════════════════════════════
   SMALL MOBILE  ≤ 480px
══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* Hero */
  .hero-h1         { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .hero-stats      { grid-template-columns: 1fr 1fr; display: grid; gap: 16px; }
  .hero-stat       { text-align: center; }

  /* About stats strip — stack to 1 col on very small screens */
  section[style*="grid-template-columns:repeat(4,1fr)"] > div {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Services / why grid → 1-col */
  section[style*="grid-template-columns:repeat(3,1fr)"] > div:not(.services-grid):not(.fleet-grid) {
    grid-template-columns: 1fr !important;
  }

  /* Clients logos smaller */
  .client-logo     { min-width: 130px; height: 62px; font-size: .82rem; }

  /* Nav logo */
  .logo-wrap img   { height: 34px; }

  /* Ticker compact */
  .stat-item       { padding: 0 18px; gap: 7px; }
  .stat-item span  { font-size: .85rem; }

  /* Testi quote mark */
  .testi-quote     { font-size: 3.5rem; }

  /* Footer social */
  .footer-social   { flex-wrap: wrap; }

  /* Buttons full-width in CTA section */
  section[style*="background:var(--gradient-hero)"] .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Quote form */
  .quote-form-wrap { padding: 20px 12px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: .85rem; padding: 11px 13px; }

  /* Page hero */
  .page-hero       { padding: 100px 0 40px; }
  .page-hero h1    { font-size: clamp(1.8rem, 8vw, 2.6rem); }

  /* RTL 1-col hero stats */
  [dir="rtl"] .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: flex-end; }
}

/* ══════════════════════════════════════════════════════════════
   PRINT / REDUCED MOTION
══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .fade-in         { opacity: 1 !important; transform: none !important; transition: none !important; }
  .road-line,
  .stats-inner,
  .clients-track,
  .hero-badge::before { animation: none !important; }
}


/* ══════════════════════════════════════════════════════════════
   HEADER / NAV — RESPONSIVE
══════════════════════════════════════════════════════════════ */

/* ── Hamburger open state (animated to X) ── */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu slide/fade ── */
.mobile-menu {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .25s ease, padding .3s ease;
  padding: 0 24px;
  background: var(--navy-mid);
  gap: 0;
}
.mobile-menu.active {
  max-height: 480px;
  opacity: 1;
  padding: 16px 24px 24px;
}

.mobile-menu a {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s, padding-left .2s;
}
.mobile-menu a:hover        { color: var(--blue-bright); padding-left: 6px; }
.mobile-menu a:last-of-type { border-bottom: none; }

.mobile-menu .nav-cta {
  margin-top: 12px;
  padding: 13px 20px !important;
  text-align: center;
  border-radius: 6px;
  background: var(--gradient-blue);
  color: var(--white) !important;
  display: block;
  border-bottom: none !important;
}
.mobile-menu .nav-cta:hover { padding-left: 0 !important; opacity: .9; }

/* ── Tablet: shrink desktop nav before hiding it ── */
@media (max-width: 1024px) {
  .nav-inner      { padding: 10px 24px; gap: 16px; }
  .nav-links      { gap: 16px; }
  .nav-links a    { font-size: .82rem; }
  .nav-cta        { padding: 8px 16px !important; font-size: .82rem !important; }
  .lang-btn       { padding: 7px 14px; font-size: .82rem; }
  .logo-wrap img  { height: 40px; }
}

/* ── Switch to hamburger ── */
@media (max-width: 768px) {
  .nav-links      { display: none; }
  .hamburger      { display: flex; }
  .nav-inner      { padding: 10px 16px; }
  .logo-wrap img  { height: 36px; }
  .logo-wrap      { padding: 4px 8px; }
}

/* ── RTL mobile menu ── */
[dir="rtl"] .mobile-menu          { text-align: right; }
[dir="rtl"] .mobile-menu a:hover  { padding-left: 0; padding-right: 6px; }
[dir="rtl"] .mobile-menu .nav-cta { padding-right: 20px !important; }
[dir="rtl"] .hamburger            { flex-direction: column; align-items: flex-end; }

/* ── About stats strip ── */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

/* ── Services "Why RST" grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-grid         { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 480px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-grid         { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   OPERATIONS GALLERY
   Append this block to the bottom of assets/style/style.css
══════════════════════════════════════════════════════════════ */

/* ─── Section ─────────────────────────────────────────────── */
#operations { padding: 100px 0; background: var(--navy); }

.gallery-header .section-sub {
  margin: 0 auto;
}

/* ─── Grid ────────────────────────────────────────────────── */
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

/* Wide items span 2 columns */
.ops-item.ops-wide {
  grid-column: span 2;
}

/* ─── Individual card ──────────────────────────────────────── */
.ops-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-mid);
}

.ops-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.ops-item:hover img {
  transform: scale(1.06);
}

/* ─── Overlay ─────────────────────────────────────────────── */
.ops-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,22,40,.85) 0%,
    rgba(10,22,40,.2)  50%,
    transparent        100%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}

.ops-item:hover .ops-overlay {
  opacity: 1;
}

.ops-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ops-caption svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--blue-bright);
}

/* ─── Stats strip ─────────────────────────────────────────── */
.ops-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.ops-stat {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  transition: background .25s;
}

.ops-stat:last-child {
  border-right: none;
}

.ops-stat:hover {
  background: rgba(46,111,212,.1);
}

.ops-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 6px;
}

.ops-stat-lbl {
  font-size: .78rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
}

/* ─── Lightbox ────────────────────────────────────────────── */
#ops-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 24, .96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

#ops-lightbox.active {
  display: flex;
}

#lb-img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  object-fit: contain;
}

#lb-cap {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}


.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  font-size: 2.2rem;
  color: rgba(255,255,255,.7);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
  font-family: sans-serif;
}
.lb-close:hover { color: var(--white); }

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  font-size: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  line-height: 1;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover,
.lb-next:hover { background: var(--blue-bright); border-color: var(--blue-bright); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 992px) {
  .ops-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .ops-item.ops-wide {
    grid-column: span 2;
  }
  .ops-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .ops-stat {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .ops-stat:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  #operations { padding: 60px 0; }

  .ops-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 10px;
  }
  .ops-item.ops-wide {
    grid-column: span 2;
  }
  .ops-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
  }
  .ops-stat-num { font-size: 1.6rem; }

  /* Always show caption on mobile (no hover) */
  .ops-overlay { opacity: 1; }
  .ops-caption  { font-size: .82rem; }

  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  #lb-img  { max-width: 96vw; }
}

@media (max-width: 480px) {
  .ops-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .ops-item.ops-wide {
    grid-column: span 1;
  }
  .ops-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── RTL ─────────────────────────────────────────────────── */
[dir="rtl"] #operations .gallery-header { text-align: right; }
[dir="rtl"] #operations .gallery-header .section-sub { margin: 0; }
[dir="rtl"] .ops-caption { flex-direction: row-reverse; }
[dir="rtl"] .ops-stat:last-child { border-right: 1px solid rgba(255,255,255,.08); }
[dir="rtl"] .ops-stat:first-child { border-right: none; }
[dir="rtl"] .lb-prev { left: auto; right: 20px; }
[dir="rtl"] .lb-next { right: auto; left: 20px; }
[dir="rtl"] .lb-close { right: auto; left: 24px; }

