/* ==========================================================================
   DESIGN SYSTEM & CONSTANTS (Rewaa Riyadh)
   ========================================================================== */
:root {
  /* Color Palette */
  --primary: #006DCC;      /* Deep Water Blue */
  --secondary: #32C5FF;    /* Sky Blue */
  --accent: #00BFA6;       /* Turquoise */
  --dark: #06283D;         /* Dark Navy for Text */
  --dark-slate: #0b1a24;   /* For B2B dark sections */
  --bg-light: #F4F9FC;     /* Soft Light Blue-Grey Background */
  --white: #FFFFFF;        /* Pure White */
  --grey: #8096A3;         /* Grey for muted text */
  --border-color: #E2ECF2; /* Soft borders */
  
  /* Shadow Systems */
  --shadow-sm: 0 4px 6px -1px rgba(6, 40, 61, 0.05), 0 2px 4px -1px rgba(6, 40, 61, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(6, 40, 61, 0.08), 0 4px 6px -2px rgba(6, 40, 61, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(6, 40, 61, 0.1), 0 10px 10px -5px rgba(6, 40, 61, 0.04);
  --shadow-glow: 0 10px 30px rgba(0, 109, 204, 0.25);
  --shadow-pulse: 0 0 0 0 rgba(0, 191, 166, 0.4);

  /* Fonts */
  --font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
  
  /* Transition Speeds */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: var(--font-family);
  font-size: 1rem;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
  transition: var(--transition-fast);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-padding {
  padding: 100px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.text-accent {
  color: var(--accent);
}

.text-primary {
  color: var(--primary);
}

.font-bold {
  font-weight: 700;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.no-scroll {
  overflow: hidden;
}

/* ==========================================================================
   HEADER & STICKY NAVIGATION
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(226, 236, 242, 0.6);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--transition-normal);
}

.main-header.scrolled .header-container {
  height: 70px;
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.logo:hover .logo-icon-wrapper {
  transform: rotate(-8deg) scale(1.05);
}

.logo-svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.5px;
}

/* Navigation Links */
.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 12px;
  border-radius: 6px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2.5px;
  background-color: var(--primary);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

.nav-link.active {
  color: var(--primary);
}

/* Header Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-action {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background-color: var(--white);
  border: 1.5px solid var(--border-color);
  box-shadow: 0 2px 5px rgba(6, 40, 61, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.btn-action span {
  display: none !important; /* Hide label text to keep button as a perfect circular icon */
}

.call-btn {
  color: var(--primary);
}

.call-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 109, 204, 0.3);
}

.whatsapp-btn {
  color: #1ebd59;
  border-color: rgba(30, 189, 89, 0.15);
}

.whatsapp-btn:hover {
  background-color: #25D366;
  color: var(--white);
  border-color: #25D366;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.btn-cta {
  background-color: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 191, 166, 0.3);
}

.btn-cta:hover {
  background-color: #00a38e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 191, 166, 0.45);
}

/* Hamburger mobile button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: var(--dark);
  border-radius: 10px;
  transition: all var(--transition-normal);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #FFFFFF 0%, #EAF5FC 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 10;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  background-color: rgba(0, 109, 204, 0.08);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 109, 204, 0.15);
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--dark);
  opacity: 0.85;
  margin-bottom: 30px;
}

.hero-bullets {
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-action {
  background-color: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(0, 109, 204, 0.35);
}

.btn-primary-action:hover {
  background-color: #0056a3;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 109, 204, 0.45);
}

.btn-secondary-action {
  background-color: #25D366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

.btn-secondary-action:hover {
  background-color: #1ebe54;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.btn-tertiary-action {
  color: var(--dark);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
}

.btn-tertiary-action:hover {
  color: var(--primary);
}

/* Pulsing Button Animations */
.btn-pulse-blue {
  animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
  0% { box-shadow: 0 0 0 0 rgba(0, 109, 204, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(0, 109, 204, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 109, 204, 0); }
}

.btn-whatsapp-pulse {
  animation: pulse-green 2.5s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Hero Visual Rendering */
.hero-visual-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

/* Tanker Truck Entering Animation */
.hero-tanker-img {
  width: 100%;
  filter: drop-shadow(0 15px 30px rgba(6, 40, 61, 0.15));
  animation: truckEntry 1.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  opacity: 0;
  transform: translateX(100px);
}

@keyframes truckEntry {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Floating Status Cards Layout */
.status-card {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 20;
  animation: floatingCard 6s ease-in-out infinite alternate;
}

.delivery-time-card {
  right: -20px;
  top: 15%;
  animation-delay: 0.5s;
}

.confirmed-card {
  left: -20px;
  bottom: 12%;
  animation-delay: 1.5s;
}

@keyframes floatingCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(0, 191, 166, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.delivery-time-card .card-icon {
  background-color: rgba(50, 197, 255, 0.1);
  color: var(--secondary);
}

.card-info {
  display: flex;
  flex-direction: column;
}

.card-label {
  font-size: 0.75rem;
  color: var(--grey);
  font-weight: 600;
}

.card-val {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 800;
}

/* Map Pin Marker Pulse */
.map-pin-container {
  position: absolute;
  top: 40%;
  left: 35%;
  z-index: 15;
}

.pulse-pin {
  font-size: 2.2rem;
  color: var(--primary);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
  animation: bouncePin 2s infinite alternate;
}

.pulse-pin::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 5px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  z-index: -1;
}

@keyframes bouncePin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* Background Waves styling */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  min-height: 40px;
  max-height: 80px;
  z-index: 5;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
  0% { transform: translate3d(-90px,0,0); }
  100% { transform: translate3d(85px,0,0); }
}

/* ==========================================================================
   QUICK BOOKING FORM SECTION
   ========================================================================== */
.booking-section-wrapper {
  margin-top: -40px;
  position: relative;
  z-index: 30;
  padding-bottom: 80px;
  background-color: var(--bg-light);
}

.booking-card {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg), 0 30px 60px rgba(6, 40, 61, 0.08);
  border: 1px solid var(--border-color);
  padding: 35px;
}

.booking-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1.5px solid var(--border-color);
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.card-header-icon {
  font-size: 2.2rem;
  color: var(--primary);
}

.card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
}

.card-subtitle {
  font-size: 0.95rem;
  color: var(--grey);
  font-weight: 600;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width-group {
  grid-column: span 3;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border-color);
  background-color: #FAFCFE;
  color: var(--dark);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3.5px rgba(0, 109, 204, 0.15);
}

/* Styled select indicator */
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23006DCC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 16px;
  padding-left: 40px;
}

/* Location Fetch Picker Row */
.location-picker-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
}

.btn-location-fetch {
  background-color: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.btn-location-fetch:hover {
  background-color: #00a38e;
  transform: translateY(-1px);
}

.input-tip {
  font-size: 0.78rem;
  color: var(--grey);
  font-weight: 600;
}

/* Submit row */
.form-submit-container {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.btn-form-submit {
  width: 100%;
  max-width: 480px;
  background-color: #25D366;
  color: var(--white);
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-form-submit:hover {
  background-color: #1ebe54;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   HOW TO ORDER (Steps Section)
   ========================================================================== */
.section-header {
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-tag {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: rgba(0, 109, 204, 0.08);
  padding: 5px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 15px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--grey);
  font-weight: 600;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.step-num {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(50, 197, 255, 0.1);
  color: var(--secondary);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 15px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-svg-icon {
  width: 100%;
  height: 100%;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 600;
  line-height: 1.6;
}

/* ==========================================================================
   CORE SERVICES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Glassmorphism card styles */
.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(6, 40, 61, 0.04);
  overflow: hidden;
  transition: all var(--transition-normal);
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 15px 30px rgba(0, 109, 204, 0.08);
  border-color: rgba(0, 109, 204, 0.2);
}

.service-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 109, 204, 0.2);
  transition: transform var(--transition-normal);
}

.service-card:hover .service-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 10;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--dark);
  opacity: 0.8;
  line-height: 1.6;
  font-weight: 600;
  position: relative;
  z-index: 10;
}

/* Water wave interactive bg effect */
.wave-bg {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(50, 197, 255, 0.06) 0%, rgba(255,255,255,0) 100%);
  transition: bottom 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.service-card:hover .wave-bg {
  bottom: 0;
}

/* ==========================================================================
   TRACKING & PAYMENTS
   ========================================================================== */
.tracking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 50px;
}

.tracking-info-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.payment-methods-wrapper {
  margin-top: 35px;
  border-top: 1.5px solid var(--border-color);
  padding-top: 30px;
  width: 100%;
}

.payment-methods-wrapper h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.payment-methods-wrapper p {
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 600;
  margin-bottom: 20px;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-badge {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.payment-badge i {
  font-size: 1.1rem;
}

/* Dashboard Mock Interface styling */
.dashboard-mockup {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg), 0 25px 50px rgba(6, 40, 61, 0.06);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.db-header {
  background-color: #FAFCFE;
  padding: 16px 20px;
  border-bottom: 1.5px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.db-title-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.db-status-dot {
  width: 10px;
  height: 10px;
  background-color: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.4; }
}

.db-title-bar h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
}

.db-order-number {
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 700;
}

/* Mock Map Canvas */
.db-map-container {
  height: 220px;
  position: relative;
  background-color: #E6F3FC;
  overflow: hidden;
}

.mock-map-bg {
  width: 100%;
  height: 100%;
  position: relative;
  background-image: radial-gradient(circle, #D5EDFF 10%, transparent 11%),
                    radial-gradient(circle, #D5EDFF 10%, transparent 11%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

.map-path-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.pulsing-path {
  stroke-dasharray: 8;
  animation: dash 30s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}

.map-point {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transform: translate(-50%, -50%);
}

.start-point {
  background-color: var(--primary);
  font-size: 0.9rem;
}

.end-point {
  background-color: var(--accent);
  font-size: 0.9rem;
}

/* Animated Truck on the route path */
.moving-truck-marker {
  position: absolute;
  z-index: 15;
  background-color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-out; /* JavaScript updates style top/left */
}

.moving-truck-marker i {
  font-size: 0.95rem;
}

/* Info Panel below map */
.db-info-panel {
  padding: 20px;
}

.db-info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.db-info-item {
  display: flex;
  flex-direction: column;
}

.db-info-label {
  font-size: 0.78rem;
  color: var(--grey);
  font-weight: 600;
}

.db-info-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-top: 4px;
}

.db-progress-container {
  margin-bottom: 20px;
}

.db-progress-bar {
  height: 6px;
  width: 100%;
  background-color: var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}

.db-progress-fill {
  height: 100%;
  width: 60%; /* Updates via JS */
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 10px;
  transition: width 0.5s ease-out;
}

.db-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--grey);
}

.db-action-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1.5px solid var(--border-color);
  padding-top: 18px;
}

.btn-db-call {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-db-call:hover {
  background-color: #0056a3;
}

.btn-db-chat {
  background-color: #25D366;
  color: var(--white);
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-db-chat:hover {
  background-color: #20ba5a;
}

/* ==========================================================================
   WATER SUBSCRIPTIONS
   ========================================================================== */
.subscriptions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.sub-card {
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  background: var(--white);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.sub-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.sub-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--white);
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 109, 204, 0.2);
}

.sub-card:nth-child(2) .sub-badge {
  background-color: var(--accent);
  box-shadow: 0 4px 10px rgba(0, 191, 166, 0.2);
}

.sub-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-top: 10px;
  margin-bottom: 20px;
}

.sub-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(50, 197, 255, 0.08);
  color: var(--primary);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.sub-desc {
  font-size: 0.95rem;
  color: var(--grey);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 25px;
}

.sub-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
  margin-bottom: 35px;
  padding: 0 10px;
}

.sub-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.92rem;
}

.btn-sub-choose {
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
  box-shadow: var(--shadow-sm);
}

.btn-sub-choose:hover {
  background-color: #0056a3;
  transform: translateY(-2px);
}

.sub-card:nth-child(2) .btn-sub-choose {
  background-color: var(--accent);
}

.sub-card:nth-child(2) .btn-sub-choose:hover {
  background-color: #00a38e;
}

/* ==========================================================================
   CORPORATE & CONSTRUCTION (B2B)
   ========================================================================== */
.bg-dark {
  background-color: var(--dark-slate);
  color: var(--white);
}

.corporate-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
}

.corporate-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.corporate-desc {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 30px;
}

.corporate-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}

.corporate-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.5;
}

.corporate-list li i {
  margin-top: 5px;
  font-size: 1.1rem;
}

.bg-white {
  background-color: var(--white);
}

.btn-corporate-cta {
  background-color: var(--accent);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 191, 166, 0.3);
}

.btn-corporate-cta:hover {
  background-color: #00a38e;
  transform: translateY(-2px);
}

.corporate-visual {
  display: flex;
  justify-content: center;
}

.corporate-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   TANKER SIZES SECTION
   ========================================================================== */
.sizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.size-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.size-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.size-image-wrapper {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.size-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.size-card:hover .size-img {
  transform: scale(1.08);
}

.size-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(6, 40, 61, 0.85);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.size-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.size-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.size-description {
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 65px;
}

.price-info {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border: 1px dashed rgba(0, 109, 204, 0.2);
}

.price-label {
  font-size: 0.75rem;
  color: var(--grey);
  font-weight: 600;
}

.price-val {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 800;
  margin-top: 3px;
}

.btn-size-order {
  background-color: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-size-order:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* ==========================================================================
   WHY CHOOSE US (Features & Counters)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.feature-item {
  background-color: var(--white);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 191, 166, 0.1);
  color: var(--accent);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--grey);
  font-weight: 600;
  line-height: 1.6;
}

/* Trust Counters Container */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: linear-gradient(135deg, var(--dark-slate) 0%, var(--primary) 100%);
  border-radius: 24px;
  padding: 50px 40px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.stats-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.stat-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.stat-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.stat-box:hover::before {
  opacity: 1;
}

.stat-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box:hover .stat-icon-wrapper {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  direction: ltr;
  gap: 2px;
  margin-bottom: 8px;
}

.stat-numberCounter {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.5px;
}

.stat-suffix {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.stat-box:hover .stat-numberCounter {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0.9;
  margin-top: 5px;
  line-height: 1.4;
}

/* ==========================================================================
   SERVICE AREAS SECTION
   ========================================================================== */
.areas-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.map-interactive-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.interactive-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.riyadh-svg-map {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 109, 204, 0.1));
}

.map-pulse-circle {
  transform-origin: center;
  animation: mapPulse 2s infinite ease-out;
}

@keyframes mapPulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

.map-core-pin {
  animation: bounceCore 2.5s infinite alternate;
}

@keyframes bounceCore {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

/* District Labels over SVG Map */
.map-pin-label {
  position: absolute;
  background-color: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 1px solid var(--border-color);
  white-space: nowrap;
}

.pin-center {
  background-color: var(--accent);
  color: var(--white);
}

/* Neighborhood lists columns */
.neighborhoods-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.region-box {
  background-color: var(--white);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.region-box:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.region-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.region-title i {
  font-size: 1rem;
}

.region-neighborhoods {
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 600;
  line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.testi-rating {
  color: #FFC107;
  font-size: 0.88rem;
  margin-bottom: 15px;
}

.testi-text {
  font-size: 0.88rem;
  color: var(--dark);
  opacity: 0.85;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 109, 204, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.testimonial-card:nth-child(even) .user-avatar {
  background-color: rgba(0, 191, 166, 0.08);
  color: var(--accent);
}

.user-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark);
}

.user-role {
  font-size: 0.72rem;
  color: var(--grey);
  font-weight: 700;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-desc {
  font-size: 1rem;
  color: var(--grey);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
  width: 100%;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 16px 20px;
  border-right: 4px solid var(--primary);
}

.value-item i {
  font-size: 1.3rem;
  margin-top: 3px;
}

.value-item h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 600;
  line-height: 1.5;
}

/* ==========================================================================
   FINAL CALL TO ACTION
   ========================================================================== */
.final-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #00529c 100%);
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-container .badge {
  margin-bottom: 25px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-desc {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-cta-large {
  background-color: var(--white);
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-large:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-cta-whatsapp {
  background-color: #25D366;
  color: var(--white);
}

.btn-cta-whatsapp:hover {
  background-color: #20ba5a;
}

.btn-cta-call {
  background-color: var(--accent);
  color: var(--white);
}

.btn-cta-call:hover {
  background-color: #00a38e;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
  background-color: #071721;
  color: #B4C4CE;
  padding-top: 80px;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Footer Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-svg {
  width: 40px;
  height: 40px;
}

.footer-about-text {
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 600;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--white);
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

/* Quick links Columns */
.footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2.5px;
  background-color: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--white);
  padding-right: 5px;
}

/* Contact columns */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-list li i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 4px;
}

.footer-contact-list li div {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-contact-list li div span:first-child {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-bottom: 2px;
}

.footer-contact-list li div a {
  color: var(--white);
}

/* Footer Bottom copyright */
.footer-bottom {
  padding: 25px 0;
  background-color: #051118;
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.7;
}

/* ==========================================================================
   FLOATING & CONVERSION UTILITIES
   ========================================================================== */
.floating-conversion-buttons {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 990;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  animation: floatBounce 4s infinite alternate;
}

.float-call {
  background-color: var(--primary);
  animation-delay: 0.5s;
}

.float-call:hover {
  background-color: #0056a3;
  transform: scale(1.08);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-whatsapp:hover {
  background-color: #20ba5a;
  transform: scale(1.08);
}

@keyframes floatBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* Mobile Sticky Bottom Bar (Hides by default on desktop) */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
  grid-template-columns: 1fr 1fr 1.2fr;
  z-index: 999;
}

.mobile-bar-btn {
  padding: 14px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bar-whatsapp {
  background-color: #25D366;
  color: var(--white);
}

.bar-call {
  background-color: var(--primary);
  color: var(--white);
}

.bar-order {
  background-color: var(--accent);
  color: var(--white);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS & ZERO OVERFLOW)
   ========================================================================== */

/* Laptop Screens */
@media screen and (max-width: 1200px) {
  .container { max-width: 960px; }
  .hero-title { font-size: 2.5rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Optimize header links and spacing on laptop screens to prevent overlaps */
  .nav-menu ul {
    gap: 10px;
  }
  .nav-link {
    font-size: 0.85rem;
    padding: 6px 8px;
  }
  .header-actions {
    gap: 8px;
  }
  .btn-cta {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Tablet Screens & Drawer Menu Activation */
@media screen and (max-width: 992px) {
  /* Show Hamburger, Hide desktop Navigation */
  .hamburger {
    display: flex;
    z-index: 1010;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    box-shadow: 10px 0 20px rgba(0,0,0,0.1);
    z-index: 1005;
    padding: 100px 30px 40px;
    transition: left var(--transition-normal);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    display: block;
  }
  
  /* Hamburger Active Animation */
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .header-actions .desktop-only {
    display: none;
  }
  
  .header-actions .btn-cta {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-text-content {
    align-items: center;
  }
  
  .hero-bullets {
    align-self: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-visual-content {
    order: -1;
    margin-bottom: 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .form-group.full-width-group {
    grid-column: span 2;
  }

  .tracking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .subscriptions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 480px;
  }

  .corporate-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sizes-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 400px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* Mobile Screens */
@media screen and (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width-group {
    grid-column: span 1;
  }
  
  .location-picker-wrapper {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Show Sticky Bottom Bar, Hide Floating buttons */
  .mobile-sticky-bar {
    display: grid;
  }
  
  .floating-conversion-buttons {
    display: none; /* Hide floating buttons on mobile to prevent clutter */
  }
  
  body {
    padding-bottom: 60px; /* Space for the mobile sticky bar */
  }
}

/* Extra Small Devices */
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }

  .booking-card {
    padding: 20px;
  }

  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 10px;
  }
  
  .cta-buttons a {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   PHASE 2 - INNER PAGES COMPONENT STYLES
   ========================================================================== */

/* Breadcrumbs navigation */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--grey);
  margin-bottom: 25px;
}

.breadcrumbs a {
  color: var(--primary);
}

.breadcrumbs a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.breadcrumbs .separator {
  font-size: 0.75rem;
}

/* Inner Page Hero Grid */
.inner-hero-section {
  background: linear-gradient(135deg, #EAF5FC 0%, #FFFFFF 100%);
  padding-top: 140px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--border-color);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

.inner-hero-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 15px;
}

.inner-hero-desc {
  font-size: 1.05rem;
  color: var(--dark);
  opacity: 0.85;
  margin-bottom: 25px;
}

.inner-hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.inner-hero-visual {
  display: flex;
  justify-content: center;
}

.inner-hero-img {
  max-height: 320px;
  filter: drop-shadow(0 15px 30px rgba(6, 40, 61, 0.12));
}

@media screen and (max-width: 992px) {
  .inner-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .inner-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .inner-hero-buttons {
    justify-content: center;
  }
  .inner-hero-visual {
    order: -1;
  }
}

/* Steps Timeline Layout */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
  margin-top: 20px;
}

.timeline-step {
  background-color: var(--white);
  border-radius: 16px;
  padding: 30px 20px;
  position: relative;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.timeline-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.step-badge-num {
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.timeline-step h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.timeline-step p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
  font-weight: 600;
}

@media screen and (max-width: 992px) {
  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .steps-timeline {
    grid-template-columns: 1fr;
  }
}

/* Domains of Use Grid */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.domain-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.domain-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.domain-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.domain-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.domain-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
  font-weight: 600;
}

@media screen and (max-width: 992px) {
  .domain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .domain-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Accordion Styling */
.faq-accordion-container {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  padding: 20px 25px;
  font-weight: 800;
  color: var(--dark);
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question:hover {
  color: var(--primary);
  background-color: rgba(50, 197, 255, 0.03);
}

.faq-arrow {
  transition: transform var(--transition-normal);
  color: var(--primary);
  font-size: 0.9rem;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 25px;
  border-top: 0px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--grey);
  font-weight: 600;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   PHASE 4 - LOCAL SEO & NAVIGATION ENHANCEMENTS
   ========================================================================== */

/* Mega Menu Desktop */
@media screen and (min-width: 993px) {
  .nav-menu ul li {
    position: relative;
  }
  
  .nav-menu ul li.has-megamenu {
    position: static;
  }
  
  .header-container {
    position: relative;
  }

  .megamenu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 25px 35px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition-normal);
    z-index: 1000;
    border-top: 4px solid var(--primary);
    margin-top: 5px;
  }

  .nav-menu ul li.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .megamenu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .megamenu-col h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(0, 109, 204, 0.1);
  }

  .megamenu-col ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
    margin: 0;
  }

  .megamenu-col ul li {
    width: 100%;
  }

  .megamenu-col ul li a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    transition: color var(--transition-fast);
  }

  .megamenu-col ul li a:hover {
    color: var(--primary);
    padding-right: 5px;
  }
}

/* Mobile Dropdown Collapsible Menus */
@media screen and (max-width: 992px) {
  .nav-menu ul li {
    width: 100%;
  }
  
  .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .menu-toggle-btn {
    font-size: 0.9rem;
    padding: 5px;
    color: var(--primary);
    cursor: pointer;
  }

  .mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
  }
  
  .mobile-dropdown.active {
    max-height: 500px;
  }
  
  .mobile-dropdown a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--grey);
    padding: 4px 0;
    display: block;
  }
  
  .mobile-dropdown a:hover {
    color: var(--primary);
  }
}

/* Local Neighborhood Search Container */
.local-search-wrapper {
  max-width: 500px;
  margin: 0 auto 30px;
  position: relative;
}

.local-search-input {
  width: 100%;
  padding: 15px 45px 15px 20px;
  border-radius: 30px;
  border: 1.5px solid var(--border-color);
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  background-color: var(--white);
}

.local-search-input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 10px rgba(50, 197, 255, 0.2);
}

.local-search-wrapper i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--grey);
  font-size: 1.1rem;
}

/* Most Demanded Links List (الروابط الأكثر طلباً) */
.demanded-links-container {
  background-color: rgba(50, 197, 255, 0.05);
  border-radius: 12px;
  padding: 15px 20px;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  border: 1px dashed rgba(0, 109, 204, 0.2);
}

.demanded-label {
  font-weight: 800;
  color: var(--primary);
  font-size: 0.9rem;
}

.demanded-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.demanded-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Blog Filtering System */
.blog-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.blog-filter-btn {
  padding: 8px 20px;
  border-radius: 25px;
  background-color: var(--white);
  border: 1.5px solid var(--border-color);
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(0, 109, 204, 0.15);
}

.blog-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.blog-card.hidden {
  display: none !important;
}

/* Sitemap Style */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.sitemap-card {
  background: var(--white);
  border-radius: 16px;
  padding: 25px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.sitemap-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.sitemap-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(0, 109, 204, 0.1);
  padding-bottom: 8px;
}

.sitemap-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sitemap-card ul li a {
  font-size: 0.88rem;
  color: var(--dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sitemap-card ul li a:hover {
  color: var(--primary);
}

@media screen and (max-width: 992px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}

/* Hide mobile menu toggle icons on desktop */
.menu-toggle-btn {
  display: none;
}
@media screen and (max-width: 992px) {
  .menu-toggle-btn {
    display: inline-block;
  }
}

/* Conversion Pop-up Modal Styling */
.conversion-popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.conversion-popup-modal.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background-color: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  padding: 35px 25px;
  position: relative;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border-top: 5px solid var(--primary);
  transform: translateY(-50px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.conversion-popup-modal.active .popup-content {
  transform: translateY(0);
}

.popup-close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--grey);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.popup-close-btn:hover {
  color: var(--primary);
}

.popup-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(50, 197, 255, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
}

.popup-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.popup-content p {
  font-size: 0.95rem;
  color: var(--grey);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 25px;
}

.popup-buttons {
  display: flex;
  gap: 15px;
}

.popup-btn {
  flex: 1;
  padding: 12px;
  border-radius: 30px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.popup-btn-whatsapp {
  background-color: var(--accent);
  color: var(--white);
}

.popup-btn-whatsapp:hover {
  background-color: #00a892;
  box-shadow: 0 4px 10px rgba(0, 191, 166, 0.25);
}

.popup-btn-call {
  background-color: var(--primary);
  color: var(--white);
}

.popup-btn-call:hover {
  background-color: #005bb5;
  box-shadow: 0 4px 10px rgba(0, 109, 204, 0.25);
}

@media screen and (max-width: 576px) {
  .popup-content {
    padding: 30px 20px;
    margin: 15px;
  }
  .popup-buttons {
    flex-direction: column;
    gap: 10px;
  }
}
