/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&family=Cairo:wght@300;400;600;700;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #C9963A;
  --gold-light: #E8B96A;
  --gold-dark: #9A6E20;
  --navy: #0B1C3A;
  --navy-mid: #142856;
  --navy-light: #1E3A6E;
  --white: #FFFFFF;
  --off-white: #F8F5EF;
  --gray-100: #F2EDE4;
  --gray-200: #E0D9CC;
  --gray-500: #9A8E7A;
  --gray-700: #4A3F30;
  --text-dark: #1A1208;
  --font-en: 'DM Sans', sans-serif;
  --font-en-display: 'Playfair Display', serif;
  --font-ar: 'Cairo', sans-serif;
  --shadow-sm: 0 2px 12px rgba(11,28,58,0.08);
  --shadow-md: 0 8px 32px rgba(11,28,58,0.14);
  --shadow-lg: 0 20px 60px rgba(11,28,58,0.2);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-en); color: var(--text-dark); background: var(--white); overflow-x: hidden; line-height: 1.7; }

/* ===== RTL ===== */
body.rtl { font-family: var(--font-ar); direction: rtl; text-align: right; }
body.rtl .nav-links { flex-direction: row-reverse; }
body.rtl .nav-brand { flex-direction: row-reverse; }
body.rtl .hero-content {  text-align: right; }
body.rtl .service-card .arrow { transform: scaleX(-1); }
body.rtl .contact-grid { direction: rtl; }
body.rtl .footer-grid { direction: rtl; }
body.rtl .section-header { direction: rtl; }
body.rtl .about-grid { direction: rtl; }
body.rtl .stat-item { direction: rtl; }
body.rtl .fleet-card { direction: rtl; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-en-display); line-height: 1.2; font-weight: 700; color: var(--navy); }
body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4 { font-family: var(--font-ar); font-weight: 700; }
p { color: var(--gray-700); line-height: 1.8; }
a { text-decoration: none; color: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.gold { color: var(--gold); }

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 60px; }
.section-header .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-header .eyebrow::before, .section-header .eyebrow::after {
  content: ''; display: block; height: 1px; width: 32px; background: var(--gold);
}
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--navy); }
.section-header p { font-size: 1rem; color: var(--gray-500); max-width: 540px; margin-top: 10px; }

/* =====================================================
   NAVBAR — Fully responsive, no overlap at any size
   ===================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}
.navbar.scrolled { background: var(--navy); box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex; align-items: center;
  height: 72px; padding: 0 32px;
  gap: 12px;
}

/* Logo / brand */
.nav-brand {
  display: flex; align-items: center;
  gap: 10px; flex-shrink: 0;
  text-decoration: none; min-width: 0;
}
.nav-brand img {
  height: 42px; width: 42px; flex-shrink: 0;
  object-fit: contain; border-radius: 4px;
  /* Gold-tinted filter to harmonize with navy/gold theme */
  filter: drop-shadow(0 0 8px rgba(201,150,58,0.35)) brightness(1.08);
}
.nav-brand-text {
  display: flex; flex-direction: column;
  overflow: hidden; min-width: 0;
}
.nav-brand-text .brand-en {
  font-family: var(--font-en-display); font-size: 0.88rem; font-weight: 700;
  color: #fff; line-height: 1.2; white-space: nowrap;
}
.nav-brand-text .brand-ar {
  font-family: var(--font-ar); font-size: 0.7rem;
  color: var(--gold-light); font-weight: 500; line-height: 1.2; white-space: nowrap;
}

/* Center links */
.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none; flex: 1; justify-content: center;
  padding: 0; margin: 0;
}
.nav-links a {
  padding: 7px 12px; border-radius: var(--radius);
  font-size: 0.84rem; font-weight: 500; color: rgba(255,255,255,0.85);
  transition: var(--transition); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }

/* Right controls */
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.1); border-radius: 20px;
  padding: 3px; border: 1px solid rgba(255,255,255,0.15);
}
.lang-btn {
  padding: 4px 9px; border-radius: 16px; border: none;
  font-size: 0.72rem; font-weight: 700; cursor: pointer;
  background: transparent; color: rgba(255,255,255,0.65); transition: var(--transition);
}
.lang-btn.active { background: var(--gold); color: var(--navy); }

.btn-quote {
  padding: 7px 16px; border-radius: 20px;
  background: var(--gold); color: var(--navy);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn-quote:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px; background: none; border: none; flex-shrink: 0;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.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); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--navy); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%); }
.hero-bg::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='none' fill-rule='evenodd'%3E%3Cg fill='%23C9963A' 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");
}
.hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(201,150,58,0.12) 0%, transparent 60%); }

.hero-image-side {
  position: absolute; right: 0; top: 0; bottom: 0; width: 52%; z-index: 1;
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%); overflow: hidden;
}
body.rtl .hero-image-side { right: auto; left: 0; clip-path: polygon(0% 0%, 88% 0%, 100% 100%, 0% 100%); }
.hero-image-side img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45) saturate(0.8); }
.hero-image-side::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--navy) 0%, transparent 45%); }
body.rtl .hero-image-side::after { background: linear-gradient(to left, var(--navy) 0%, transparent 45%); }

.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; max-width: 580px; padding-top: 72px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hero-eyebrow .line { width: 36px; height: 1px; background: var(--gold); }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.8rem); color: white; line-height: 1.1; margin-bottom: 18px; font-family: var(--font-en-display); }
body.rtl .hero h1 { font-family: var(--font-ar); font-size: clamp(1.8rem, 4vw, 3.2rem); }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 0.98rem; color: rgba(255,255,255,0.7); max-width: 480px; margin-bottom: 32px; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 26px; border-radius: 4px;
  background: var(--gold); color: var(--navy);
  font-size: 0.84rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,150,58,0.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 22px; border-radius: 4px;
  background: transparent; color: white; font-size: 0.84rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.3); transition: var(--transition); cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats { display: flex; gap: 32px; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-en-display); font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
body.rtl .hero-stat .num { font-family: var(--font-ar); }
.hero-stat .label { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }

.scroll-indicator { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 7px; animation: float 2.5s ease-in-out infinite; }
.scroll-indicator span { font-size: 0.62rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); text-transform: uppercase; }
.scroll-mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,0.25); border-radius: 12px; display: flex; justify-content: center; padding-top: 5px; }
.scroll-mouse::after { content: ''; width: 3px; height: 6px; border-radius: 2px; background: var(--gold); animation: scrollDown 1.8s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }
@keyframes scrollDown { 0%,100%{opacity:0;transform:translateY(0)} 50%{opacity:1;transform:translateY(8px)} }

/* ===== MARQUEE ===== */
.marquee-strip { background: var(--gold); padding: 13px 0; overflow: hidden; border-top: 3px solid var(--gold-dark); border-bottom: 3px solid var(--gold-dark); }
.marquee-inner { display: flex; gap: 48px; animation: marquee 22s linear infinite; white-space: nowrap; }
.marquee-item { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== SERVICES ===== */
.services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px 26px; border: 1px solid var(--gray-200); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: var(--transition); transform-origin: left; }
body.rtl .service-card::before { transform-origin: right; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 54px; height: 54px; border-radius: var(--radius); background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.4rem; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 9px; color: var(--navy); }
body.rtl .service-card h3 { font-family: var(--font-ar); }
.service-card p { font-size: 0.86rem; color: var(--gray-500); line-height: 1.7; }
.service-card .arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.76rem; font-weight: 600; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; transition: var(--transition); cursor: pointer; }
.service-card:hover .arrow { gap: 10px; }

/* ===== FLEET ===== */
.fleet { background: var(--white); }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fleet-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); transition: var(--transition); }
.fleet-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.fleet-card-img { height: 200px; overflow: hidden; position: relative; background: var(--gray-100); }
.fleet-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.9) contrast(1.06); }
.fleet-card:hover .fleet-card-img img { transform: scale(1.06); }
.fleet-card-img .badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy); font-size: 0.63rem; font-weight: 700; padding: 4px 9px; border-radius: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
body.rtl .fleet-card-img .badge { left: auto; right: 12px; }
.fleet-card-body { padding: 20px; }
.fleet-card h3 { font-size: 0.93rem; color: var(--navy); margin-bottom: 5px; }
body.rtl .fleet-card h3 { font-family: var(--font-ar); }
.fleet-card p { font-size: 0.81rem; color: var(--gray-500); }
.fleet-specs { display: flex; gap: 7px; margin-top: 11px; flex-wrap: wrap; }
.spec-tag { font-size: 0.66rem; padding: 3px 8px; border-radius: 12px; background: var(--gray-100); color: var(--gray-700); font-weight: 500; border: 1px solid var(--gray-200); }

/* ===== ABOUT ===== */
.about { background: var(--navy); position: relative; overflow: hidden; }
.about::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(201,150,58,0.08) 0%, transparent 70%); }
body.rtl .about::before { right: auto; left: -100px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.about-visual { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; height: 440px; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) contrast(1.1) saturate(0.9); }
.about-img-accent { position: absolute; bottom: -22px; right: -22px; width: 180px; height: 144px; border-radius: var(--radius-lg); overflow: hidden; border: 4px solid var(--navy); box-shadow: var(--shadow-md); }
body.rtl .about-img-accent { right: auto; left: -22px; }
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge { position: absolute; top: 22px; left: -18px; background: var(--gold); padding: 13px 17px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
body.rtl .about-badge { left: auto; right: -18px; }
.about-badge .num { font-family: var(--font-en-display); font-size: 1.8rem; font-weight: 900; color: var(--navy); line-height: 1; }
.about-badge .lbl { font-size: 0.63rem; font-weight: 700; color: var(--navy-mid); text-transform: uppercase; letter-spacing: 0.1em; }
.about-text .eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.about-text .eyebrow::before { content: ''; display: block; height: 1px; width: 32px; background: var(--gold); }
.about-text h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); color: white; margin-bottom: 16px; }
body.rtl .about-text h2 { font-family: var(--font-ar); }
.about-text p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.9; margin-bottom: 14px; }
.about-features { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.about-feature { display: flex; align-items: center; gap: 12px; }
body.rtl .about-feature { flex-direction: row-reverse; }
.about-feature-icon { width: 34px; height: 34px; border-radius: var(--radius); background: rgba(201,150,58,0.15); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }
.about-feature-text { font-size: 0.87rem; color: rgba(255,255,255,0.8); font-weight: 500; }
body.rtl .about-feature-text { font-family: var(--font-ar); }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--gold); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 0 16px; border-right: 1px solid rgba(11,28,58,0.15); }
.stat-item:last-child { border-right: none; }
body.rtl .stat-item { border-right: none; border-left: 1px solid rgba(11,28,58,0.15); }
body.rtl .stat-item:last-child { border-left: none; }
.stat-item .number { font-family: var(--font-en-display); font-size: 2.7rem; font-weight: 900; color: var(--navy); line-height: 1; }
body.rtl .stat-item .number { font-family: var(--font-ar); }
.stat-item .label { font-size: 0.76rem; font-weight: 600; color: var(--navy-mid); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 7px; }
body.rtl .stat-item .label { font-family: var(--font-ar); letter-spacing: 0; }

/* ===== CONTACT ===== */
.contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 52px; align-items: start; }
.contact-info h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 12px; color: var(--navy); }
body.rtl .contact-info h2 { font-family: var(--font-ar); }
.contact-info p { color: var(--gray-500); margin-bottom: 32px; }
.contact-item { display: flex; gap: 13px; margin-bottom: 22px; align-items: flex-start; }
body.rtl .contact-item { flex-direction: row; text-align: right; }
.contact-icon { width: 44px; height: 44px; border-radius: var(--radius); background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 3px; }
body.rtl .contact-detail strong { font-family: var(--font-ar); letter-spacing: 0; font-size: 0.8rem; }
.contact-detail span { font-size: 0.9rem; color: var(--navy); font-weight: 500; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); }
body.rtl .form-group label { font-family: var(--font-ar); letter-spacing: 0; font-size: 0.8rem; }
.form-group input, .form-group select, .form-group textarea { padding: 10px 13px; border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: 0.88rem; font-family: inherit; color: var(--text-dark); background: var(--off-white); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: white; box-shadow: 0 0 0 3px rgba(201,150,58,0.12); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 12px; border-radius: var(--radius); background: var(--navy); color: white; font-size: 0.84rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: var(--transition); font-family: inherit; }
.form-submit:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.success-msg { display: none; padding: 11px 14px; background: #d4edda; color: #155724; border-radius: var(--radius); margin-top: 10px; font-size: 0.86rem; }

/* ===== FOOTER ===== */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 68px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 36px; margin-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .nav-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; text-decoration: none; }
.footer-brand .nav-brand img { height: 44px; width: 44px; object-fit: contain; border-radius: 4px; filter: drop-shadow(0 0 6px rgba(201,150,58,0.3)) brightness(1.06); }
.footer-brand .nav-brand-text .brand-en { font-family: var(--font-en-display); font-size: 0.86rem; font-weight: 700; color: #fff; line-height: 1.2; }
.footer-brand .nav-brand-text .brand-ar { font-family: var(--font-ar); font-size: 0.7rem; color: var(--gold-light); font-weight: 500; }
.footer-brand p { font-size: 0.84rem; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 240px; }
body.rtl .footer-brand p { font-family: var(--font-ar); }
.footer-col h4 { font-family: var(--font-en-display); font-size: 0.84rem; color: var(--gold); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
body.rtl .footer-col h4 { font-family: var(--font-ar); letter-spacing: 0; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 0.84rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-light); }
body.rtl .footer-col ul a { font-family: var(--font-ar); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 0.81rem; }
body.rtl .footer-contact-item { flex-direction: row-reverse; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.32); }
body.rtl .footer-bottom p { font-family: var(--font-ar); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 0.74rem; color: rgba(255,255,255,0.32); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--navy); min-height: 270px; display: flex; align-items: center; padding-top: 72px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy) 60%, var(--navy-light)); }
.page-hero::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 40%; background: linear-gradient(to left, rgba(201,150,58,0.06), transparent); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero .eyebrow { display: flex; align-items: center; gap: 10px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.page-hero .eyebrow::before { content: ''; display: block; height: 1px; width: 32px; background: var(--gold); }
.page-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.9rem); color: white; }
body.rtl .page-hero h1 { font-family: var(--font-ar); }
.breadcrumb { display: flex; align-items: center; gap: 7px; margin-top: 10px; }
.breadcrumb a, .breadcrumb span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.22); }

/* ===== WHY US ===== */
.why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.why-card { text-align: center; padding: 34px 18px; border-radius: var(--radius-lg); background: var(--off-white); border: 1px solid var(--gray-200); transition: var(--transition); }
.why-card:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-5px); }
.why-card:hover h3, .why-card:hover p { color: white; }
.why-icon { width: 64px; height: 64px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.6rem; box-shadow: var(--shadow-sm); transition: var(--transition); }
.why-card:hover .why-icon { background: var(--gold); box-shadow: 0 8px 24px rgba(201,150,58,0.3); }
.why-card h3 { font-size: 0.98rem; margin-bottom: 8px; color: var(--navy); transition: color 0.35s; }
body.rtl .why-card h3 { font-family: var(--font-ar); }
.why-card p { font-size: 0.82rem; color: var(--gray-500); transition: color 0.35s; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.nav-links a.active { color: var(--gold-light) !important; }

.powered-by {
  text-align: center;
  margin-top: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.powered-by a {
  color: rgba(201,150,58,0.9);
  text-decoration: none;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* 1100px — compress nav text slightly */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .nav-links a { padding: 6px 9px; font-size: 0.8rem; }
}

/* 860px — switch to hamburger menu */
@media (max-width: 860px) {
  .nav-inner { padding: 0 18px; height: 64px; }
  .btn-quote { display: none; }
  .nav-brand-text .brand-ar { display: none; }

  /* Hide desktop links, show as dropdown */
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column !important;
    align-items: flex-start;
    padding: 16px 20px 20px;
    gap: 2px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; font-size: 0.95rem; padding: 10px 14px; width: 100%; border-radius: 8px; }
  body.rtl .nav-links { align-items: flex-end; }
  .hamburger { display: flex; }
}

/* 640px — mobile */
@media (max-width: 640px) {
  .nav-inner { padding: 0 14px; height: 60px; }
  .nav-brand img { height: 36px; width: 36px; }
  .nav-brand-text .brand-en { font-size: 0.8rem; }
  .nav-links { top: 60px; }

  .hero { min-height: 100dvh; }
  .hero-image-side { display: none; }
  .hero h1 { font-size: 1.9rem; }
  .hero-content { padding-top: 60px; }
  .hero p { font-size: 0.92rem; }
  .hero-stats { gap: 18px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-primary, .hero-cta .btn-outline { justify-content: center; }

  .services-grid, .fleet-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-badge { left: 12px; top: 12px; }
  body.rtl .about-badge { left: auto; right: 12px; }
  .about-img-main { height: 280px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .stat-item { border: none !important; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(11,28,58,0.12) !important; padding-bottom: 20px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .section-pad { padding: 56px 0; }
  .page-hero { min-height: 200px; }
  .page-hero h1 { font-size: 1.6rem; }
}

/* 380px — very small phones */
@media (max-width: 380px) {
  .nav-brand-text { display: none; }
  .nav-brand img { height: 38px; width: 38px; }
  .why-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.65rem; }
  .hero-stats .hero-stat .num { font-size: 1.6rem; }
}
/* ===== RTL FOOTER FIXES ===== */

/* Reverse column order back so brand stays first (left in RTL = right side) */
body.rtl .footer-grid {
  direction: ltr; /* Reset grid direction so columns stay in source order */
}

/* But make the content inside each column RTL */
body.rtl .footer-col {
  direction: rtl;
  text-align: right;
}

/* Fix footer brand alignment in RTL */
body.rtl .footer-brand .nav-brand {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* Fix footer contact items in RTL */
body.rtl .footer-contact-item {
  flex-direction: row;
  text-align: right;
}

/* Fix footer bottom bar in RTL */
body.rtl .footer-bottom {
  flex-direction: row-reverse;
}

body.rtl .footer-bottom-links {
  flex-direction: row-reverse;
}

/* Fix footer column link lists in RTL */
body.rtl .footer-col ul {
  text-align: right;
}

body.rtl .footer-col ul li {
  text-align: right;
}
