/* ==========================================================================
   SHAMS-AL-QASWA — WEBSITE STYLES
   Page-specific layouts on top of tokens.css + components.css
   ========================================================================== */

/* ==========================================================================
   1. ANNOUNCEMENT TOPBAR
   ========================================================================== */
.topbar {
  background: var(--color-secondary-800);
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--fs-body-sm);
  padding: var(--space-2) 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--fw-medium);
}
.topbar-meta .pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent-400);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79, 209, 197, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(79, 209, 197, 0); }
}
.topbar-contacts {
  display: inline-flex;
  align-items: center;
  gap: var(--space-5);
}
.topbar-contacts a {
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--fw-medium);
}
.topbar-contacts a:hover { color: var(--color-accent-300); }
@media (max-width: 640px) {
  .topbar { font-size: var(--fs-caption); }
  .topbar-contacts { gap: var(--space-3); }
}

/* ==========================================================================
   2. NAVIGATION
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--duration-base) var(--ease-out);
}
.site-nav.is-scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-3);
}

.nav-logo img { height: 64px; width: auto; display: block; }
@media (max-width: 640px) { .nav-logo img { height: 52px; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-brand);
  background-color: var(--color-primary-50);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  cursor: pointer;
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-cta .btn:not(.menu-toggle) { display: none; }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-4);
    gap: var(--space-1);
    box-shadow: var(--shadow-lg);
    align-items: stretch;
  }
  .nav-links.is-open a {
    text-align: center;
    padding: var(--space-3);
  }
}

/* ==========================================================================
   3. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-block: var(--space-20);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;             /* deepest — only shows if video fails to load */
  background-color: var(--color-secondary-800);
  background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Max-dark × 0.85 (15% lighter than maximum) — cinematic but the video
     starts to peek through on the right side. */
  background:
    linear-gradient(90deg, rgba(5, 25, 40, 0.82) 0%, rgba(8, 35, 52, 0.75) 35%, rgba(15, 61, 86, 0.60) 70%, rgba(15, 61, 86, 0.47) 100%),
    linear-gradient(135deg, rgba(8, 35, 52, 0.64) 0%, rgba(30, 133, 130, 0.42) 100%),
    radial-gradient(circle at 88% 22%, rgba(79, 209, 197, 0.34) 0%, transparent 50%);
}

.hero-content { max-width: 720px; color: var(--color-white); position: relative; z-index: 3; }
.hero > .container { position: relative; z-index: 3; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--fs-caption);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-accent-300);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent-400);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-5);
  font-weight: var(--fw-extrabold);
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--color-accent-300) 0%, var(--color-accent-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 600px;
}
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .hero-stats > :nth-child(3) { grid-column: span 2; }
}
.hero-stat .stat-number {
  font-size: 2.5rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.hero-stat .stat-label {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--fw-medium);
}

/* Decorative water drop */
.hero-drop {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 209, 197, 0.3) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding-block: var(--space-16); }
}

/* ==========================================================================
   4. SECTION HEADERS (reusable)
   ========================================================================== */
.section-header {
  max-width: 720px;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: var(--space-3);
}
.section-header p {
  font-size: var(--fs-body-lg);
  color: var(--text-secondary);
  margin: 0;
}
.section-header.is-left { margin-left: 0; margin-right: auto; text-align: left; }

/* ==========================================================================
   5. ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: var(--space-10); } }

.about-content h2 { margin-bottom: var(--space-4); }
.about-content .lead {
  font-size: var(--fs-body-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}
.about-content .mission {
  padding: var(--space-5) var(--space-6);
  background: var(--color-primary-50);
  border-left: 4px solid var(--color-primary-500);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-6);
  font-style: italic;
  color: var(--text-primary);
}

.trust-list { list-style: none; padding: 0; margin: 0; }
.trust-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-block: var(--space-2);
  font-weight: var(--fw-medium);
}
.trust-list li .check-bullet {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-primary-500);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-image {
  position: relative;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--gradient-water);
  box-shadow: var(--shadow-xl);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image .badge-float {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: var(--color-white);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.about-image .badge-float strong {
  display: block;
  font-size: var(--fs-h5);
  color: var(--text-primary);
  line-height: 1;
}
.about-image .badge-float span {
  font-size: var(--fs-body-sm);
  color: var(--text-muted);
}
.about-image .badge-float .icon-box {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

/* ==========================================================================
   6. SERVICES GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--color-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  transition: var(--transition-base);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card .icon-box {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-accent-50) 100%);
  color: var(--color-primary-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  transition: var(--transition-base);
}
.service-card:hover .icon-box {
  background: var(--gradient-water);
  color: var(--color-white);
}
.service-card h4 {
  font-size: var(--fs-h6);
  margin-bottom: var(--space-2);
}
.service-card p {
  font-size: var(--fs-body-sm);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   7. SERVICE AREAS
   ========================================================================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 900px) { .areas-grid { grid-template-columns: 1fr; } }

.area-card {
  position: relative;
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition-base);
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.area-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 160px; height: 160px;
  background: radial-gradient(circle, var(--color-accent-100) 0%, transparent 70%);
  opacity: 0.7;
}
.area-card > * { position: relative; }
.area-card .area-name {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}
.area-card .area-arabic {
  font-family: var(--font-arabic);
  font-size: var(--fs-h5);
  color: var(--color-primary-600);
  margin-bottom: var(--space-4);
}
.area-card .area-desc {
  color: var(--text-secondary);
  font-size: var(--fs-body-sm);
  margin-bottom: var(--space-5);
}
.area-card .area-zones {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}
.area-card .area-zones span {
  font-size: var(--fs-caption);
  padding: 2px var(--space-3);
  background: var(--color-primary-50);
  color: var(--color-primary-700);
  border-radius: var(--radius-full);
  font-weight: var(--fw-medium);
}

/* ==========================================================================
   8. WHY CHOOSE US
   ========================================================================== */
.section-why {
  background: var(--gradient-hero);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.section-why::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--color-accent-400) 0%, transparent 60%);
  opacity: 0.2;
  filter: blur(60px);
}
.section-why .section-header h2 { color: var(--color-white); }
.section-why .section-header p { color: rgba(255,255,255,0.85); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  position: relative;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  padding: var(--space-6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(10px);
  transition: var(--transition-base);
}
.why-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(79,209,197,0.3);
  transform: translateY(-4px);
}
.why-card .icon-box {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(79, 209, 197, 0.2);
  color: var(--color-accent-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.why-card h4 {
  color: var(--color-white);
  margin-bottom: var(--space-2);
  font-size: var(--fs-h6);
}
.why-card p {
  color: rgba(255,255,255,0.78);
  font-size: var(--fs-body-sm);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   9. FLEET
   ========================================================================== */
.fleet-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-12);
}
@media (max-width: 900px) { .fleet-feature { grid-template-columns: 1fr; } }

.fleet-image {
  border-radius: var(--radius-3xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gradient-water);
  box-shadow: var(--shadow-xl);
}
.fleet-image img { width: 100%; height: 100%; object-fit: cover; }

.fleet-tanks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 900px) { .fleet-tanks { grid-template-columns: 1fr; } }

.tank-card {
  text-align: center;
  padding: var(--space-8) var(--space-5);
  border-radius: var(--radius-2xl);
  background: var(--color-white);
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: var(--transition-base);
}
.tank-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-300);
}
.tank-card.featured {
  background: var(--gradient-brand);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-brand);
}
.tank-card .tank-icon {
  width: 80px; height: 80px;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-xl);
  background: var(--color-primary-50);
  color: var(--color-primary-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tank-card.featured .tank-icon {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
}
.tank-card h4 {
  margin-bottom: var(--space-1);
  font-size: var(--fs-h5);
}
.tank-card.featured h4 { color: var(--color-white); }
.tank-card .capacity {
  font-size: 3rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-primary-500);
  line-height: 1;
  margin-block: var(--space-4) var(--space-2);
  letter-spacing: -0.02em;
}
.tank-card.featured .capacity { color: var(--color-white); }
.tank-card .capacity small { font-size: var(--fs-body); font-weight: var(--fw-semibold); letter-spacing: 0; }
.tank-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--fs-body-sm);
}
.tank-card.featured p { color: rgba(255,255,255,0.85); }

/* ==========================================================================
   10. INDUSTRIES
   ========================================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 900px) { .industries-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .industries-grid { grid-template-columns: 1fr; } }

.industry-card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-base);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-200);
}
.industry-card .icon-box {
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-50);
  color: var(--color-primary-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.industry-card h4 {
  font-size: var(--fs-h6);
  margin-bottom: var(--space-1);
}
.industry-card p {
  margin: 0;
  font-size: var(--fs-body-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   11. TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--color-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  position: relative;
  transition: var(--transition-base);
}
.testimonial:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial .stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: var(--space-4);
  color: #f59e0b;
}
.testimonial blockquote {
  margin: 0 0 var(--space-6);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-secondary);
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-4);
}
.testimonial .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: var(--fs-body-sm);
  flex-shrink: 0;
}
.testimonial .author-name { font-weight: var(--fw-semibold); color: var(--text-primary); display: block; }
.testimonial .author-role { font-size: var(--fs-body-sm); color: var(--text-muted); }

/* ==========================================================================
   12. ORDER NOW (Booking section)
   ========================================================================== */
.section-order {
  background: var(--gradient-brand);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.section-order::before {
  content: "";
  position: absolute;
  top: -300px; left: -300px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--color-accent-400) 0%, transparent 50%);
  opacity: 0.25;
  filter: blur(80px);
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
}
@media (max-width: 900px) { .order-grid { grid-template-columns: 1fr; } }

.order-pitch h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: var(--space-4);
}
.order-pitch p {
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-6);
}
.order-pitch ul { list-style: none; padding: 0; margin: 0 0 var(--space-6); }
.order-pitch ul li {
  display: flex; align-items: center; gap: var(--space-3);
  padding-block: var(--space-2);
  color: var(--color-white);
}
.order-pitch ul li .check-bullet {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-accent-400);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.order-form {
  background: var(--color-white);
  border-radius: var(--radius-3xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-2xl);
  color: var(--text-primary);
}
.order-form h3 {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-2);
}
.order-form .form-meta {
  color: var(--text-muted);
  font-size: var(--fs-body-sm);
  margin-bottom: var(--space-6);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   13. CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-10);
  align-items: stretch;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-cards { display: flex; flex-direction: column; gap: var(--space-4); }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: var(--transition-fast);
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-primary-200); }
.contact-card .icon-box {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary-50);
  color: var(--color-primary-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card.whatsapp .icon-box { background: rgba(37, 211, 102, 0.12); color: var(--color-whatsapp); }
.contact-card .contact-label {
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}
.contact-card .contact-value { font-weight: var(--fw-semibold); color: var(--text-primary); }
.contact-card .contact-value a { color: inherit; }
.contact-card .contact-value a:hover { color: var(--text-brand); }

.map-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  min-height: 460px;
  background: var(--color-neutral-100);
}
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-secondary-800);
  color: rgba(255, 255, 255, 0.78);
  padding-block: var(--space-16) var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-10);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 96px; width: auto; margin-bottom: var(--space-4); }
.footer-brand p { font-size: var(--fs-body-sm); color: rgba(255,255,255,0.7); margin-bottom: var(--space-5); }
.footer-arabic {
  font-family: var(--font-arabic);
  color: var(--color-accent-300);
  font-size: var(--fs-h6);
  margin-bottom: var(--space-2);
}
.footer-socials {
  display: flex;
  gap: var(--space-2);
}
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}
.footer-socials a:hover {
  background: var(--color-primary-500);
  color: var(--color-white);
}

.footer-title {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.005em;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: var(--space-2); }
.footer-list a {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-body-sm);
  transition: var(--transition-fast);
}
.footer-list a:hover { color: var(--color-accent-300); padding-left: 4px; }

.footer-contact-block {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-contact-block .icon-box {
  color: var(--color-accent-300);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-block strong { display: block; color: var(--color-white); font-size: var(--fs-body-sm); margin-bottom: 2px; }
.footer-contact-block span,
.footer-contact-block a {
  font-size: var(--fs-body-sm);
  color: rgba(255,255,255,0.7);
}
.footer-contact-block a:hover { color: var(--color-accent-300); }

.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--fs-body-sm);
  color: rgba(255,255,255,0.55);
}

/* ==========================================================================
   15. SCROLL REVEAL ANIMATION
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   16. UTILITIES
   ========================================================================== */
.bg-subtle-gradient { background: linear-gradient(180deg, var(--color-white) 0%, var(--color-neutral-50) 100%); }
.section-spacer { height: 1px; background: var(--border-subtle); margin-block: var(--space-8); }

/* ==========================================================================
   17. LANGUAGE TOGGLE (v1.1)
   ========================================================================== */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  overflow: hidden;
  font-size: var(--fs-caption);
}
.lang-toggle a {
  padding: 4px var(--space-3);
  color: rgba(255,255,255,0.7);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  transition: var(--transition-fast);
}
.lang-toggle a:hover { color: var(--color-white); }
.lang-toggle a.is-active {
  background: var(--color-accent-400);
  color: var(--color-secondary-800);
}

/* ==========================================================================
   18. HERO VIDEO BACKGROUND (v1.1)
   ========================================================================== */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;             /* above the static bg, below the gradient overlay */
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* Subtle ken-burns animation on the still image fallback while video loads */
.hero-bg.has-anim {
  animation: ken-burns 24s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.10) translate(-1.5%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg.has-anim { animation: none; }
}

/* ==========================================================================
   19. TESTIMONIALS CAROUSEL (v1.1)
   ========================================================================== */
.testimonials-carousel {
  position: relative;
  padding-inline: var(--space-12);
}
@media (max-width: 1024px) { .testimonials-carousel { padding-inline: 0; } }

.carousel-viewport {
  overflow: hidden;
  padding-block: var(--space-2);
}

.carousel-track {
  display: flex;
  gap: var(--space-6);
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}

.carousel-track .testimonial {
  flex: 0 0 calc((100% - var(--space-6) * 2) / 3);
  min-width: 0;
  margin: 0;
}
@media (max-width: 1024px) {
  .carousel-track .testimonial { flex-basis: calc((100% - var(--space-6)) / 2); }
}
@media (max-width: 700px) {
  .carousel-track .testimonial { flex-basis: 100%; }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}
.carousel-btn:hover:not(:disabled) {
  background: var(--color-primary-500);
  color: var(--color-white);
  border-color: var(--color-primary-500);
  box-shadow: var(--shadow-brand);
  transform: translateY(-50%) scale(1.05);
}
.carousel-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
@media (max-width: 1024px) {
  .carousel-btn { position: static; transform: none; }
  .carousel-btn:hover:not(:disabled) { transform: scale(1.05); }
}

.carousel-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (max-width: 1024px) { .carousel-controls { display: flex; } }

.carousel-dots {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-6);
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-neutral-300);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
}
.carousel-dot.is-active {
  background: var(--color-primary-500);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   20. SCROLLING TANKER TIMELINE (v1.1)
   ========================================================================== */
.scroll-tanker-track {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
  z-index: 50;
  background: transparent;
}
/* Road line at the bottom — raised slightly so it's not flush with the
   viewport edge, and given more generous gaps for clearer visibility. */
.scroll-tanker-track::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: repeating-linear-gradient(
    to right,
    var(--color-secondary-700) 0 6px,
    transparent 6px 16px
  );
  opacity: 0.45;
}
.scroll-tanker {
  position: absolute;
  bottom: 8px;            /* sits on top of road line at 7.5px */
  left: 0;
  height: 54px;
  width: auto;
  transform: translateX(0);
  transition: transform 0.1s linear;
  filter: drop-shadow(0 4px 6px rgba(15,61,86,0.18));
}
@media (max-width: 640px) {
  .scroll-tanker-track { height: 44px; }
  .scroll-tanker { height: 40px; bottom: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-tanker { transition: none; }
}
/* Hide scroll tanker behind footer/floating WhatsApp button if they overlap */
.btn-float-whatsapp { z-index: 60; }

/* RTL: tanker moves right-to-left instead */
[dir="rtl"] .scroll-tanker { left: auto; right: 0; transform: translateX(0); }

/* ==========================================================================
   21. MOBILE NAV ICONS (v1.1)
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-links.is-open a {
    display: flex !important;
    align-items: center;
    gap: var(--space-3);
    text-align: left !important;
    justify-content: flex-start !important;
    padding: var(--space-3) var(--space-4) !important;
  }
  .nav-links.is-open a .nav-icon {
    width: 22px; height: 22px;
    color: var(--color-primary-500);
    flex-shrink: 0;
  }
}
.nav-icon { display: none; }
@media (max-width: 1024px) {
  .nav-icon { display: inline-flex; }
}

/* ==========================================================================
   22. FORM STATUS MESSAGES (v1.1)
   ========================================================================== */
.form-status {
  display: none;
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
}
.form-status.success {
  display: block;
  background: var(--color-success-bg);
  color: var(--color-success);
  border: 1px solid rgba(22, 163, 74, 0.2);
}
.form-status.error {
  display: block;
  background: var(--color-error-bg);
  color: var(--color-error);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

/* ==========================================================================
   23. RTL OVERRIDES FOR ARABIC PAGE (v1.1)
   ========================================================================== */
/* Apply Noto Naskh Arabic to ALL text on RTL pages — headings included.
   Without this, h1-h6 inherit the global font-family: var(--font-sans)
   from components.css and render Arabic text in Plus Jakarta Sans. */
[dir="rtl"] body,
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6,
[dir="rtl"] .h1, [dir="rtl"] .h2, [dir="rtl"] .h3,
[dir="rtl"] .h4, [dir="rtl"] .h5, [dir="rtl"] .h6,
[dir="rtl"] .display,
[dir="rtl"] p, [dir="rtl"] a, [dir="rtl"] button,
[dir="rtl"] input, [dir="rtl"] textarea, [dir="rtl"] select,
[dir="rtl"] blockquote, [dir="rtl"] li, [dir="rtl"] span,
[dir="rtl"] label, [dir="rtl"] strong {
  font-family: var(--font-arabic);
}
/* Preserve mono / number-only spans inside RTL */
[dir="rtl"] code,
[dir="rtl"] .stat-number,
[dir="rtl"] .capacity,
[dir="rtl"] bdi { font-family: var(--font-sans); }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .about-grid,
[dir="rtl"] .fleet-feature,
[dir="rtl"] .order-grid,
[dir="rtl"] .contact-grid { direction: rtl; }
[dir="rtl"] .about-image .badge-float { left: auto; right: var(--space-6); }
/* Desktop only: reverse nav order in RTL. On mobile the menu becomes
   a vertical column for both languages — see the @media block below. */
@media (min-width: 1025px) {
  [dir="rtl"] .nav-links { flex-direction: row-reverse; }
}
/* Mobile RTL: vertical column, icons appear after text (right side) */
@media (max-width: 1024px) {
  [dir="rtl"] .nav-links.is-open {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  [dir="rtl"] .nav-links.is-open a {
    flex-direction: row-reverse;
    text-align: right !important;
    justify-content: flex-start !important;
  }
}
[dir="rtl"] .form-row,
[dir="rtl"] .areas-grid,
[dir="rtl"] .services-grid,
[dir="rtl"] .why-grid,
[dir="rtl"] .testimonials-grid,
[dir="rtl"] .industries-grid,
[dir="rtl"] .fleet-tanks { direction: rtl; }
[dir="rtl"] .area-card::before { right: auto; left: 0; }
[dir="rtl"] .mission { border-left: none; border-right: 4px solid var(--color-primary-500); }
[dir="rtl"] .carousel-btn.prev { left: auto; right: 0; }
[dir="rtl"] .carousel-btn.next { right: auto; left: 0; }
[dir="rtl"] .footer-list a:hover { padding-left: 0; padding-right: 4px; }

/* ==========================================================================
   24. AED DIRHAM SYMBOL ICON STYLE (v1.1)
   ========================================================================== */
.aed-symbol {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ==========================================================================
   25. SLIDE-TO-DISPATCH HUMAN VERIFICATION (v1.2)
   A drag-to-confirm control: slide the tanker across to prove you're human.
   ========================================================================== */
.slide-verify {
  margin-bottom: var(--space-5);
}
.slide-track {
  position: relative;
  height: 54px;
  border-radius: var(--radius-full);
  background: var(--color-neutral-100);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;            /* let the page scroll vertically over the track */
  direction: ltr;                 /* slider always reads left-to-right, even on the Arabic page */
}
.slide-fill {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 0;
  background: var(--gradient-water);
  pointer-events: none;
  transition: width var(--duration-base) var(--ease-out);
}
.slide-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;               /* keep text clear of the handle */
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
  letter-spacing: 0.01em;
  text-align: center;
  pointer-events: none;
  z-index: 1;
}
.slide-handle {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-primary-500);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  box-shadow: var(--shadow-md);
  z-index: 2;
  touch-action: none;            /* handle owns the gesture while dragging */
  transition: left var(--duration-base) var(--ease-out),
              background var(--duration-fast) var(--ease-out);
}
.slide-handle:active { cursor: grabbing; }
.slide-handle:focus-visible {
  outline: 3px solid var(--color-accent-400);
  outline-offset: 2px;
}
.slide-icon { display: block; }

/* 1:1 tracking while the finger/mouse is down — no lag from transitions */
.slide-verify.is-dragging .slide-fill,
.slide-verify.is-dragging .slide-handle {
  transition: none;
}

/* Completed */
.slide-verify.is-done .slide-track { border-color: transparent; }
.slide-verify.is-done .slide-fill { width: 100%; }
.slide-verify.is-done .slide-text { color: var(--color-white); }
.slide-verify.is-done .slide-handle { background: var(--color-success); cursor: default; }

@media (prefers-reduced-motion: reduce) {
  .slide-fill, .slide-handle { transition: background var(--duration-fast) var(--ease-out); }
}
