/*
Theme Name: Jeddah Scrap Metal
Theme URI: http://example.com/jeddah-scrap-metal
Author: Antigravity AI
Author URI: http://example.com
Description: Premium industrial scrap metal recycling corporate theme for Jeddah Scrap Metal.
Version: 1.0.0
Text Domain: jeddah-scrap-metal
*/

/* ==========================================================================
   JEDDAH SCRAP METAL - CORPORATE STYLE SHEET
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@600;700;800;900&display=swap');

/* Design Variables */
:root {
  /* Color Palette */
  --primary-blue: #0B5EA8;
  --dark-navy: #071827;
  --secondary-blue: #2F80ED;
  --premium-orange: #FF8C2A;
  --metal-silver: #C7CED8;
  --dark-gray: #4B5563;
  --light-bg: #F8FAFC;
  --white: #FFFFFF;
  
  /* Legacy Variable Bridges for Subpages */
  --primary: var(--primary-blue);
  --accent: var(--premium-orange);
  --metallic: var(--metal-silver);
  --text-gray: var(--dark-gray);
  --border-color: rgba(199, 206, 216, 0.2);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --primary-light: rgba(11, 94, 168, 0.1);
  --shadow-premium: var(--shadow-md);
  
  /* Semi-transparent Glass Colors */
  --glass-navy: rgba(7, 24, 39, 0.65);
  --glass-light: rgba(255, 255, 255, 0.7);
  --glass-card: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(199, 206, 216, 0.15);
  --glass-border-blue: rgba(47, 128, 237, 0.25);
  --glass-border-orange: rgba(255, 140, 42, 0.3);
  
  /* Gradients */
  --steel-gradient: linear-gradient(135deg, #E2E8F0 0%, #C7CED8 50%, #94A3B8 100%);
  --dark-steel-gradient: linear-gradient(135deg, #071827 0%, #0F2A4A 50%, #071827 100%);
  --brand-gradient: linear-gradient(135deg, #0B5EA8 0%, #2F80ED 50%, #FF8C2A 100%);
  --button-gradient: linear-gradient(135deg, #0B5EA8 0%, #2F80ED 60%, #FF8C2A 100%);
  --orange-gradient: linear-gradient(135deg, #FF8C2A 0%, #FFA351 100%);
  --blue-glow-gradient: linear-gradient(180deg, rgba(47, 128, 237, 0.15), rgba(7, 24, 39, 0));
  
  /* Shadow & Glow */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow-blue: 0 0 20px rgba(47, 128, 237, 0.45);
  --shadow-glow-orange: 0 0 20px rgba(255, 140, 42, 0.5);
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --max-width: 1400px;
  --nav-height: 90px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--dark-navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  position: relative;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

p {
  color: var(--dark-gray);
  font-size: 1.05rem;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

li {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark-navy);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border: 2px solid var(--dark-navy);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--premium-orange);
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

.text-center {
  text-align: center;
}

.max-w-2xl {
  max-width: 45rem;
  margin: 0 auto;
}

/* Background Gradients & Textures */
.bg-navy-texture {
  background-color: var(--dark-navy);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(11, 94, 168, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 140, 42, 0.08) 0%, transparent 50%),
    var(--dark-steel-gradient);
  color: var(--white);
}

.bg-navy-texture h2,
.bg-navy-texture h3,
.bg-navy-texture p {
  color: var(--white);
}

.bg-navy-texture p {
  color: var(--metal-silver);
}

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

.bg-soft-blue-gradient {
  background: linear-gradient(180deg, var(--light-bg) 0%, rgba(47, 128, 237, 0.06) 50%, var(--light-bg) 100%);
}

/* Industrial Blueprint Grid Overlay */
.blueprint-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(47, 128, 237, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(47, 128, 237, 0.04) 1px, transparent 1px);
  pointer-events: none;
  z-index: 1;
}

.blueprint-grid-dark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 60px 60px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  pointer-events: none;
  z-index: 1;
}

/* Hexagonal Texture Overlay using CSS */
.hexagon-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-image: radial-gradient(rgba(11, 94, 168, 0.25) 2px, transparent 2px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

/* Steel Mesh pattern using CSS */
.steel-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, rgba(7, 24, 39, 0.05) 25%, transparent 25%), 
    linear-gradient(-45deg, rgba(7, 24, 39, 0.05) 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, rgba(7, 24, 39, 0.05) 75%), 
    linear-gradient(-45deg, transparent 75%, rgba(7, 24, 39, 0.05) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

/* Decorative Gear Outline (Rotating behind) */
.decor-gear {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 4px dashed rgba(47, 128, 237, 0.05);
  pointer-events: none;
  z-index: 0;
  animation: spinGear 120s linear infinite;
}

.decor-gear::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  bottom: 50px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 140, 42, 0.03);
}

.gear-right {
  right: -250px;
  top: 10%;
}

.gear-left {
  left: -250px;
  bottom: 10%;
  animation-direction: reverse;
}

/* Floating Particles Container */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 140, 42, 0.7) 0%, rgba(255, 140, 42, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: floatUp 8s ease-in-out infinite;
}

.particle-blue {
  background: radial-gradient(circle, rgba(47, 128, 237, 0.7) 0%, rgba(47, 128, 237, 0) 70%);
}

/* ==========================================================================
   BUTTON DESIGN SYSTEM
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.2rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-headings);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  outline: none;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.btn-primary {
  background: var(--button-gradient);
  background-size: 200% auto;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(11, 94, 168, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-orange), 0 12px 35px rgba(255, 140, 42, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--secondary-blue);
  border: 2px solid var(--secondary-blue);
  box-shadow: 0 4px 15px rgba(47, 128, 237, 0.05);
}

.btn-secondary:hover {
  color: var(--white);
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-blue), 0 10px 25px rgba(11, 94, 168, 0.3);
}

.btn-secondary-orange {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-orange:hover {
  background: var(--orange-gradient);
  border-color: var(--premium-orange);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-orange);
}

/* Call to Action Small Nav Buttons */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-headings);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  gap: 0.5rem;
  white-space: nowrap;
}

.nav-cta-whatsapp {
  background-color: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.nav-cta-whatsapp:hover {
  background-color: #25D366;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.nav-cta-call {
  background-color: rgba(47, 128, 237, 0.15);
  border: 1px solid rgba(47, 128, 237, 0.3);
  color: var(--secondary-blue);
}

.nav-cta-call:hover {
  background-color: var(--secondary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue);
}

.nav-cta-quote {
  background: var(--orange-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 140, 42, 0.25);
}

.nav-cta-quote:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-orange);
}

/* Ripple effect wrapper */
.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnimation 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnimation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-transparent {
  background-color: rgba(7, 24, 39, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-scrolled {
  background-color: rgba(7, 24, 39, 0.95);
  height: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(11, 94, 168, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Premium Shield Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  transform: translateY(3px); /* Nudges logo down to align wording baseline with nav menu links */
}

.logo-icon {
  width: 24px;
  height: 24px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  margin-top: 1px; /* Perfect horizontal visual alignment with the smaller shield */
}

.logo-title {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-title span {
  color: var(--premium-orange);
}

.logo-subtitle {
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--metal-silver);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  margin-top: 2px; /* spacing between title and subtitle */
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 1;
}

.nav-link {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--metal-silver);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-gradient);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
  width: 100%;
}

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

.nav-link.active::after {
  width: 100%;
  background: var(--orange-gradient);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 24px;
  z-index: 1100;
}

.mobile-nav-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.mobile-nav-toggle span:nth-child(1) { top: 0px; }
.mobile-nav-toggle span:nth-child(2) { top: 10px; }
.mobile-nav-toggle span:nth-child(3) { top: 20px; }

.mobile-nav-toggle.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.mobile-nav-toggle.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

/* Mobile Menu Overlay & Responsive Header Adjustments */

/* Squeeze spacing on medium-large desktops to prevent wrapping/overflow */
@media (min-width: 1201px) and (max-width: 1366px) {
  .nav-menu {
    gap: 1rem;
  }
  .nav-actions {
    gap: 0.5rem;
  }
}

/* Squeeze more and hide secondary buttons on medium/smaller desktops */
@media (min-width: 1025px) and (max-width: 1200px) {
  .nav-container {
    padding: 0 1.25rem;
  }
  .logo-icon {
    width: 20px;
    height: 20px;
  }
  .logo-title {
    font-size: 0.78rem;
  }
  .logo-subtitle {
    font-size: 0.4rem;
    letter-spacing: 0.8px;
  }
  .nav-menu {
    gap: 0.8rem;
  }
  .nav-link {
    font-size: 0.85rem;
  }
  /* Hide secondary actions to save substantial space */
  .nav-actions .nav-cta-whatsapp,
  .nav-actions .nav-cta-call {
    display: none !important;
  }
  .lang-selector {
    margin-right: 0.5rem;
  }
  body.rtl .lang-selector {
    margin-right: 0;
    margin-left: 0.5rem;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(7, 24, 39, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(11, 94, 168, 0.3);
    padding: 3rem;
  }

  .nav-menu.open {
    right: 0;
  }

  .mobile-nav-toggle {
    display: block;
  }

  /* Hide desktop action CTA buttons since they are inside the mobile menu drawer */
  .nav-actions .nav-cta {
    display: none !important;
  }
  
  .lang-selector {
    margin-right: 0;
  }
  body.rtl .lang-selector {
    margin-right: 0;
    margin-left: 0;
  }

  .nav-actions {
    margin-right: 1.5rem;
  }
  body.rtl .nav-actions {
    margin-right: 0;
    margin-left: 1.5rem;
  }
}

@media (max-width: 640px) {
  .nav-actions {
    display: none !important; /* Hide action CTA buttons and lang selector in header on mobile, only show in hamburger */
  }
  .nav-menu .nav-actions-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-top: 1.5rem;
  }
}

.nav-actions-mobile {
  display: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 85vh;
  padding: 150px 0 200px 0;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--dark-navy);
  color: var(--white);
  z-index: 5;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 1.0;
}

.rtl .hero-background img {
  object-position: left center;
}

/* Bidirectional gradient overlay on the background */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(7, 24, 39, 0.95) 0%, rgba(7, 24, 39, 0.8) 45%, rgba(7, 24, 39, 0.3) 80%, rgba(7, 24, 39, 0.5) 100%);
  z-index: 1;
}

.rtl .hero-overlay {
  background: linear-gradient(-90deg, rgba(7, 24, 39, 0.95) 0%, rgba(7, 24, 39, 0.8) 45%, rgba(7, 24, 39, 0.3) 80%, rgba(7, 24, 39, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title-main {
  font-family: var(--font-headings);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
}

.hero-title-sub {
  font-family: var(--font-headings);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  color: var(--premium-orange);
  text-transform: uppercase;
  margin-top: -5px;
}

.hero-divider-tagline {
  font-family: var(--font-headings);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.hero-divider-tagline .pipe {
  color: var(--premium-orange);
  font-weight: 800;
  margin: 0 5px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--metal-silver) !important;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Horizontal Features Bar */
.hero-features-bar-wrap {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  z-index: 15;
}

.hero-features-bar {
  background: var(--glass-navy);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: var(--shadow-lg);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 15px;
}

.hero-feature-item:last-child {
  border-right: none;
  padding-right: 0;
}

.rtl .hero-feature-item {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 0;
  padding-left: 15px;
}

.rtl .hero-feature-item:last-child {
  border-left: none;
  padding-left: 0;
}

.hero-feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 140, 42, 0.1);
  border: 1px solid rgba(255, 140, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-orange);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero-feature-text {
  display: flex;
  flex-direction: column;
}

.hero-feature-title {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.hero-feature-sub {
  font-size: 0.72rem;
  color: var(--metal-silver);
  line-height: 1.3;
}

/* Bottom Wave SVG */
.hero-bottom-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 12;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.hero-bottom-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .hero {
    padding: 130px 0 80px 0;
    min-height: auto;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-title {
    align-items: center;
  }
  .hero-divider-tagline {
    justify-content: center;
  }
  .hero-description {
    margin: 0 auto 2.5rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-features-bar-wrap {
    position: relative;
    bottom: auto;
    margin-top: 40px;
  }
  .hero-features-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-feature-item {
    border-right: none;
    border-left: none;
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .hero-features-bar {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .hero-feature-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
  }
  .hero-feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* Floating Glass Quote Form */
.hero-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.18);
  border-left-color: rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}

.glass-form::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(11,94,168,0.1) 50%, rgba(255,140,42,0.1));
  z-index: -1;
}

.glass-form:hover {
  border-color: rgba(47, 128, 237, 0.3);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), var(--shadow-glow-blue);
  transform: translateY(-5px);
}

.form-title {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--metal-silver);
  margin-bottom: 1.8rem;
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--metal-silver);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary-blue);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(47, 128, 237, 0.25);
}

select.form-input option {
  background: var(--dark-navy);
  color: var(--white);
}

/* Statistics row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--white) 30%, var(--secondary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--metal-silver);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Trust Badges */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.trust-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--metal-silver);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.trust-logo {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.trust-logo:hover {
  color: var(--white);
  border-color: var(--secondary-blue);
  background: rgba(47, 128, 237, 0.1);
}

/* Floating animated graphics in Hero background */
.animated-arrow-path {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 300px;
  height: 300px;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
  animation: floatArrow 6s ease-in-out infinite;
}

@keyframes floatArrow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

/* ==========================================================================
   INTERACTIVE CALCULATOR SECTION
   ========================================================================== */
.calculator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .calculator-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.calc-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg), 0 30px 60px rgba(7, 24, 39, 0.05);
  border: 1px solid rgba(199, 206, 216, 0.5);
  position: relative;
  overflow: hidden;
}

.calc-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--brand-gradient);
}

.calc-title {
  margin-bottom: 2rem;
  color: var(--dark-navy);
  font-weight: 700;
}

.calc-group {
  margin-bottom: 2rem;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.calc-label {
  font-weight: 700;
  color: var(--dark-navy);
  font-family: var(--font-headings);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-value-display {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-blue);
  background: rgba(11, 94, 168, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
}

/* Styled Range Input */
.calc-range {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #E2E8F0;
  outline: none;
  transition: background 0.3s;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--premium-orange);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 140, 42, 0.5);
  border: 3px solid var(--white);
  transition: all 0.2s ease;
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: var(--shadow-glow-orange);
}

/* Styled Select */
.calc-select {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 2px solid #E2E8F0;
  background-color: var(--light-bg);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-navy);
  font-weight: 500;
  outline: none;
  transition: border-color 0.3s;
  cursor: pointer;
}

.calc-select:focus {
  border-color: var(--primary-blue);
}

/* Calculator Result Panel */
.calc-result-panel {
  background: var(--dark-navy);
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-image: var(--dark-steel-gradient);
}

.calc-result-panel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.result-label {
  font-size: 0.85rem;
  color: var(--metal-silver);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.result-price {
  font-family: var(--font-headings);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--white) 40%, var(--secondary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.result-details {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.result-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--metal-silver);
}

.result-row span:last-child {
  font-weight: 600;
  color: var(--white);
}

.calc-disclaimer {
  font-size: 0.75rem;
  color: var(--metal-silver);
  opacity: 0.7;
}

/* ==========================================================================
   SERVICES SECTION (CARDS)
   ========================================================================== */
.section-header {
  margin-bottom: 5rem;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.section-badge-light {
  color: var(--premium-orange);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium Card Design */
.service-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm), 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(199, 206, 216, 0.4);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue-glow-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-blue);
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
}

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

/* Metallic icon circle */
.card-icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--steel-gradient);
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.8), 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-icon-container::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.card-icon-container i {
  font-size: 1.8rem;
  color: var(--primary-blue);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-icon-container {
  transform: rotate(10deg);
  background: var(--brand-gradient);
  box-shadow: var(--shadow-glow-orange);
}

.service-card:hover .card-icon-container i {
  color: var(--white);
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--dark-navy);
}

.card-description {
  color: var(--dark-gray);
  margin-bottom: 2rem;
  flex-grow: 1;
  font-size: 0.98rem;
  font-weight: 400;
}

.card-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.card-cta i {
  transition: transform 0.3s ease;
}

.service-card:hover .card-cta {
  color: var(--premium-orange);
}

.service-card:hover .card-cta i {
  transform: translateX(6px);
}

/* Glassmorphic variations for Dark Sections */
.bg-navy-texture .service-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bg-navy-texture .service-card h3 {
  color: var(--white);
}

.bg-navy-texture .service-card p {
  color: var(--metal-silver);
}

.bg-navy-texture .service-card:hover {
  border-color: rgba(255, 140, 42, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow-orange);
}

.bg-navy-texture .service-card .card-cta {
  color: var(--secondary-blue);
}

.bg-navy-texture .service-card:hover .card-cta {
  color: var(--premium-orange);
}

/* ==========================================================================
   WHY CHOOSE US / FEATURES
   ========================================================================== */
.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .why-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
}

.feature-num-container {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(11, 94, 168, 0.08);
  border: 1px solid rgba(11, 94, 168, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.why-features .feature-item:hover .feature-num-container {
  background: var(--brand-gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-glow-blue);
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.95rem;
}

.why-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.why-image-wrapper:hover img {
  transform: scale(1.05);
}

.why-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 24, 39, 0.6) 0%, transparent 60%);
}

/* ==========================================================================
   SERVICE AREA MAP SECTION
   ========================================================================== */
.map-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .map-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Map Graphic Area */
.map-graphic-container {
  background: rgba(7, 24, 39, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
}

.saudi-svg-map {
  width: 100%;
  height: auto;
  max-height: 450px;
}

/* Pulse Animation for active locations */
.map-pin {
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-pin:hover {
  filter: drop-shadow(0 0 10px var(--secondary-blue));
}

.pulse-ring {
  transform-origin: center;
  animation: pulsePin 2s infinite;
}

@keyframes pulsePin {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Floating Information Card beside map */
.map-info-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.map-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-gradient);
  border-radius: 20px 20px 0 0;
}

.info-location-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.25rem;
}

.info-location-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 140, 42, 0.15);
  border: 1px solid rgba(255, 140, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-location-icon i {
  color: var(--premium-orange);
  font-size: 1.4rem;
}

.info-location-title h3 {
  font-size: 1.4rem;
  color: var(--white);
}

.info-location-title span {
  font-size: 0.8rem;
  color: var(--metal-silver);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-detail-row i {
  color: var(--secondary-blue);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.info-detail-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.info-detail-text p {
  font-size: 0.95rem;
  color: var(--metal-silver);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2rem 0;
}

.testimonials-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: scrollCarousel 40s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1.25rem)); }
}

/* Testimonial Glass Card */
.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  width: 450px;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(199, 206, 216, 0.4);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
  border-color: var(--glass-border-blue);
}

.quote-icon-box {
  position: absolute;
  top: 3rem;
  right: 2.5rem;
  font-size: 2.5rem;
  color: rgba(11, 94, 168, 0.1);
  line-height: 1;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.rating-stars i {
  color: var(--premium-orange);
  font-size: 1rem;
}

.testimonial-text {
  color: var(--dark-gray);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.client-avatar-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--steel-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-blue);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.client-info h4 {
  font-size: 1.1rem;
  color: var(--dark-navy);
  margin-bottom: 0.2rem;
}

.client-info span {
  font-size: 0.85rem;
  color: var(--dark-gray);
  font-weight: 500;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 128, 237, 0.3);
  box-shadow: var(--shadow-md), var(--shadow-glow-blue);
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(47, 128, 237, 0.15);
  border: 1px solid rgba(47, 128, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--secondary-blue);
  font-size: 1.3rem;
}

.contact-info-card:hover .contact-icon-box {
  background: var(--orange-gradient);
  border-color: var(--premium-orange);
  color: var(--white);
  box-shadow: var(--shadow-glow-orange);
}

.contact-card-title {
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-card-details {
  font-size: 0.95rem;
  color: var(--metal-silver);
}

/* Map Placeholder / Beautiful Mock Map */
.contact-map-placeholder {
  border-radius: 20px;
  height: 250px;
  background-color: rgba(7, 24, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.map-mock-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 30px 30px;
  background-image: 
    linear-gradient(to right, rgba(11, 94, 168, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 94, 168, 0.05) 1px, transparent 1px);
}

.map-mock-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(47, 128, 237, 0.05);
  border: 2px dashed rgba(47, 128, 237, 0.3);
  animation: spinGear 30s linear infinite;
}

.map-mock-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--premium-orange);
  box-shadow: 0 0 20px 10px rgba(255, 140, 42, 0.5);
}

.map-mock-label {
  position: absolute;
  top: calc(50% + 30px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  white-space: nowrap;
  background: rgba(7, 24, 39, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  pointer-events: none;
}

/* Glass Contact Form */
.contact-form-panel {
  display: flex;
  flex-direction: column;
}

.contact-glass-form {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top-color: rgba(255, 255, 255, 0.15);
  border-left-color: rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  height: 100%;
}

.contact-glass-form:hover {
  border-color: rgba(47, 128, 237, 0.25);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), var(--shadow-glow-blue);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #040d16;
  background-image: var(--dark-steel-gradient);
  border-top: 1px solid rgba(199, 206, 216, 0.1);
  padding: 6rem 0 2rem;
  color: var(--white);
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 30px;
  height: 2px;
  background: var(--brand-gradient);
}

.footer-about p {
  color: var(--metal-silver);
  font-size: 0.95rem;
  margin: 1.5rem 0 2rem;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--metal-silver);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--brand-gradient);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-blue);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  color: var(--metal-silver);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.footer-link:hover {
  color: var(--white);
}

.footer-link:hover i {
  color: var(--premium-orange);
  transform: translateX(4px);
}

.newsletter-text {
  color: var(--metal-silver);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--secondary-blue);
  box-shadow: 0 0 10px rgba(47, 128, 237, 0.25);
}

.btn-newsletter {
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--metal-silver);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.metallic-line {
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, #071827 0%, var(--primary-blue) 30%, var(--premium-orange) 50%, var(--primary-blue) 70%, #071827 100%);
  margin-top: 3rem;
  border-radius: 50%;
  opacity: 0.5;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Spin gear animation keyframes */
@keyframes spinGear {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes floatUp {
  0% {
    transform: translateY(100px) scale(0.3);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-200px) scale(1.2);
    opacity: 0;
  }
}

/* Loading/Logo Shield Keyframe */
@keyframes pulseShield {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px var(--secondary-blue)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 15px var(--premium-orange)); }
}

.pulse-shield-anim {
  animation: pulseShield 4s ease-in-out infinite;
}

/* ==========================================================================
   FACILITY GALLERY SECTION
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.gallery-item {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm), 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(199, 206, 216, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
  border-color: var(--glass-border-blue);
}

.gallery-image-wrapper {
  position: relative;
  height: 320px;
  width: 100%;
  overflow: hidden;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-image-wrapper img {
  transform: scale(1.08);
}

.gallery-overlay-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 24, 39, 0.9) 0%, rgba(7, 24, 39, 0.4) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.2rem;
  z-index: 5;
}

.gallery-item:hover .gallery-overlay-hover {
  opacity: 1;
}

.gallery-icon-box {
  align-self: flex-end;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: var(--shadow-glow-orange);
  transform: translateY(-10px) scale(0.85);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-icon-box {
  transform: translateY(0) scale(1);
}

.gallery-meta {
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-meta {
  transform: translateY(0);
}

.gallery-category {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--premium-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.3rem;
}

.gallery-item-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

/* Lightbox Modal Styles */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 24, 39, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow-blue);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--premium-orange);
}

.lightbox-caption {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--white);
}

.lightbox-caption h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.lightbox-caption p {
  color: var(--metal-silver);
  font-size: 0.95rem;
}

/* ==========================================================================
   LANGUAGE SELECTOR
   ========================================================================== */
.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.3rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--metal-silver);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.3rem 0.6rem;
  border-radius: 7px;
  line-height: 1;
}

.lang-btn:hover {
  color: var(--white);
}

.lang-btn.active {
  color: var(--white);
  background: var(--brand-gradient);
  box-shadow: 0 0 10px rgba(47, 128, 237, 0.3);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  user-select: none;
}

/* RTL Layout Enhancements */
body.rtl {
  font-family: 'Cairo', sans-serif;
  text-align: right;
}

body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl h4,
body.rtl h5,
body.rtl h6 {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
}

body.rtl p,
body.rtl span,
body.rtl a,
body.rtl input,
body.rtl select,
body.rtl textarea,
body.rtl button {
  font-family: 'Cairo', sans-serif;
}

body.rtl .lang-selector {
  margin-right: 0;
  margin-left: 1.5rem;
}

body.rtl .logo-subtitle {
  letter-spacing: 1px; /* reduce letter spacing slightly for arabic subtitle */
}

body.rtl .stat-item {
  text-align: right;
}

body.rtl .calc-result-panel::before {
  left: auto;
  right: 0;
}

body.rtl .service-card:hover .card-cta i {
  transform: translateX(-6px);
}

body.rtl .footer-link:hover i {
  transform: translateX(-4px);
}

body.rtl .why-features .feature-item {
  text-align: right;
}

/* Adjust map sidebar text for RTL */
body.rtl .map-info-card {
  text-align: right;
}

body.rtl .info-location-header {
  flex-direction: row-reverse;
}

body.rtl .info-detail-row {
  flex-direction: row-reverse;
  text-align: right;
}

body.rtl .info-detail-row i {
  margin-top: 0.4rem;
}

/* Adjust quote icon position for RTL */
body.rtl .quote-icon-box {
  right: auto;
  left: 2.5rem;
}

body.rtl .client-profile {
  flex-direction: row-reverse;
  text-align: right;
}


/* ==========================================================================
   NEW HOME PAGE SECTIONS & ENHANCEMENTS
   ========================================================================== */
.mission-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .mission-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.mission-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.mission-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.8rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.mission-stat-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(47, 128, 237, 0.2);
  transform: translateY(-3px);
}

.mission-stat-card h3 {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--white) 30%, var(--secondary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
}

.mission-stat-card p {
  font-size: 0.85rem;
  color: var(--metal-silver);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vision-glass-container {
  background: rgba(11, 94, 168, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(47, 128, 237, 0.25);
  border-top-color: rgba(255, 255, 255, 0.15);
  border-left-color: rgba(255, 255, 255, 0.15);
  padding: 3rem;
  border-radius: 28px;
  box-shadow: var(--shadow-glow-blue), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  text-align: left;
}

.vision-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-glow-orange);
}

.vision-glass-container h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.vision-glass-container p {
  color: var(--metal-silver);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
}

.vision-outline-badge {
  border: 1px dashed var(--premium-orange);
  color: var(--premium-orange);
  padding: 0.45rem 1rem;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Materials showcase cards */
.materials-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  margin-top: 3.5rem;
}

.material-showcase-card {
  background: var(--white);
  border: 1px solid rgba(199, 206, 216, 0.4);
  padding: 2.5rem;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.material-showcase-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-blue);
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
}

.mat-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mat-card-header i {
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(11, 94, 168, 0.05);
}

.mat-icon-copper { color: #FF6F61; background: rgba(255,111,97,0.06) !important; }
.mat-icon-steel { color: #8E8E93; background: rgba(142,142,147,0.06) !important; }
.mat-icon-aluminum { color: #A4B0BE; background: rgba(164,176,190,0.06) !important; }
.mat-icon-brass { color: #E5A93B; background: rgba(229,169,59,0.06) !important; }
.mat-icon-battery { color: #FF4757; background: rgba(255,71,87,0.06) !important; }
.mat-icon-chip { color: #2ED573; background: rgba(46,213,115,0.06) !important; }

.material-showcase-card h3 {
  font-size: 1.25rem;
  color: var(--dark-navy);
}

.material-showcase-card p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  flex-grow: 1;
  line-height: 1.6;
}

.mat-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(11, 94, 168, 0.05);
  color: var(--primary-blue);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Timeline Flow Process */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 26px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(47, 128, 237, 0.3) 0%, rgba(255, 140, 42, 0.1) 100%);
}

.timeline-node-item {
  display: flex;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.timeline-node-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--dark-navy);
  border: 2px solid var(--secondary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--font-headings);
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(47, 128, 237, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-node-item:hover .timeline-node-dot {
  background: var(--brand-gradient);
  border-color: var(--premium-orange);
  box-shadow: var(--shadow-glow-orange), 0 0 20px rgba(255, 140, 42, 0.4);
  transform: scale(1.1);
}

.timeline-node-content {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 2.5rem;
  border-radius: 24px;
  flex-grow: 1;
  transition: all 0.3s ease;
}

.timeline-node-content:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 140, 42, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-node-content h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.timeline-node-content p {
  color: var(--metal-silver);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* RTL for new sections */
body.rtl .mission-layout {
  text-align: right;
}
body.rtl .mission-stat-card {
  text-align: right;
}
body.rtl .vision-glass-container {
  text-align: right;
}
body.rtl .vision-icon-box {
  margin-left: auto;
  margin-right: 0;
}
body.rtl .material-showcase-card {
  text-align: right;
}
body.rtl .mat-card-header {
  flex-direction: row-reverse;
}
body.rtl .timeline-line {
  left: auto;
  right: 26px;
}
body.rtl .timeline-node-item {
  flex-direction: row-reverse;
}
body.rtl .timeline-node-content {
  text-align: right;
}

/* ==========================================================================
   REDESIGNED HOMEPAGE - ADDITIONAL STYLES
   ========================================================================== */

/* 1. Live Market Price Ticker */
.live-ticker-wrap {
  width: 100%;
  background: var(--dark-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid var(--primary-blue);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 50px;
  position: relative;
  z-index: 10;
}

.ticker-header {
  background: var(--primary-blue);
  color: var(--white);
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
  z-index: 12;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

body.rtl .ticker-header {
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.ticker-content-container {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: scrollTicker 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
  color: var(--metal-silver);
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

body.rtl .ticker-item {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-item i {
  font-size: 1rem;
}

.text-success {
  color: #27AE60;
}

.text-danger {
  color: #EB5757;
}

@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 2. Core Services Quick-Grid */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.service-premium-card {
  background: var(--white);
  border: 1px solid rgba(199, 206, 216, 0.5);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

body.rtl .service-premium-card::before {
  transform-origin: right;
}

.service-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 20px 40px rgba(11, 94, 168, 0.08);
  border-color: rgba(11, 94, 168, 0.2);
}

.service-premium-card:hover::before {
  transform: scaleX(1);
}

.service-icon-box-premium {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(11, 94, 168, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--primary-blue);
  font-size: 1.5rem;
  transition: all 0.4s ease;
}

.service-premium-card:hover .service-icon-box-premium {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 0 15px rgba(11, 94, 168, 0.3);
}

.service-premium-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

.service-premium-card p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--primary-blue);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-premium-card:hover .service-card-link {
  background: var(--premium-orange);
  color: var(--white);
  box-shadow: var(--shadow-glow-orange);
  transform: translateX(3px);
}

body.rtl .service-premium-card:hover .service-card-link {
  transform: translateX(-3px);
}

/* 3. Compliance & Certifications Grid */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.cert-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.cert-card:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-glow-blue);
  border-color: rgba(47, 128, 237, 0.3);
}

.cert-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.1) 0%, rgba(47, 128, 237, 0.1) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  color: var(--primary-blue);
  font-size: 1.8rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(47, 128, 237, 0.2);
}

.cert-card:hover .cert-icon-wrapper {
  background: var(--brand-gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(11, 94, 168, 0.25);
}

.cert-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.8rem;
}

.cert-card p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

/* 4. Interactive FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(199, 206, 216, 0.5);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--secondary-blue);
  box-shadow: var(--shadow-md), 0 10px 20px rgba(47, 128, 237, 0.05);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  gap: 1.5rem;
}

body.rtl .faq-trigger {
  text-align: right;
}

.faq-question {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-navy);
  transition: color 0.3s ease;
}

.faq-item.active .faq-question {
  color: var(--primary-blue);
}

.faq-icon-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon-arrow {
  background: var(--primary-blue);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding: 0 2rem 1.8rem;
  font-size: 0.98rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* 5. Premium Call-To-Action (CTA) */
#home-cta-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.cta-title-text {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
}

.cta-desc-text {
  color: var(--metal-silver);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Responsive/Grid Styles */
@media (max-width: 1024px) {
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .faq-trigger {
    padding: 1.25rem 1.5rem;
  }
  .faq-answer p {
    padding: 0 1.5rem 1.5rem;
  }
}

/* Additional RTL overrides */
body.rtl .services-cards-grid {
  direction: rtl;
}
body.rtl .certifications-grid {
  direction: rtl;
}
body.rtl .faq-accordion {
  direction: rtl;
}
body.rtl .service-premium-card h3,
body.rtl .service-premium-card p {
  text-align: right;
}
body.rtl .cert-card h3,
body.rtl .cert-card p {
  text-align: right;
}
body.rtl .faq-question {
  text-align: right;
}
body.rtl .faq-answer p {
  text-align: right;
}
body.rtl .cta-buttons {
  flex-direction: row-reverse;
}

/* ==========================================================================
   MOCKUP DESIGN REDESIGN - ADDITIONAL CLASSES
   ========================================================================== */

/* 1. Services Grid (Mockup Style) */
.services-cards-grid-mockup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.service-mockup-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(199, 206, 216, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-mockup-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 25px 50px rgba(7, 24, 39, 0.08);
  border-color: rgba(11, 94, 168, 0.25);
}

.service-mockup-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-mockup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-mockup-card:hover .service-mockup-image img {
  transform: scale(1.08);
}

.service-mockup-content {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-mockup-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.service-mockup-content p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
  flex-grow: 1;
}

/* 2. Core Pillars Metal Collage */
.pillars-collage-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 280px 280px;
  gap: 2rem;
  margin-top: 4rem;
}

.collage-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-item:hover img {
  transform: scale(1.05);
}

.collage-glass-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 24, 39, 0.9) 0%, rgba(7, 24, 39, 0.4) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

.collage-item:hover .collage-glass-overlay {
  background: linear-gradient(to top, rgba(7, 24, 39, 0.95) 0%, rgba(7, 24, 39, 0.6) 100%);
  border-top-color: rgba(255, 140, 42, 0.3);
}

.collage-glass-overlay h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.collage-spec {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.collage-spec span {
  font-weight: 700;
  color: var(--premium-orange);
  text-transform: uppercase;
}

.collage-spec p {
  color: var(--metal-silver);
  font-size: 0.9rem;
}

.copper-pillar {
  grid-column: 1;
  grid-row: 1;
}

.brass-pillar {
  grid-column: 1;
  grid-row: 2;
}

.steel-pillar {
  grid-column: 2;
  grid-row: 1 / span 2;
}

/* 3. Verified & Accredited (ISO Seals & Steps) */
.accreditation-seals-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 5rem;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 24px;
  border: 1px solid rgba(199, 206, 216, 0.4);
}

.seal-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.seal-item img {
  height: 85px;
  object-fit: contain;
  filter: contrast(95%) brightness(95%);
  transition: all 0.4s ease;
}

.seal-item:hover img {
  transform: scale(1.1);
  filter: contrast(110%) brightness(105%);
}

.accreditation-step-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-card-mockup {
  background: var(--white);
  border: 1px solid rgba(199, 206, 216, 0.5);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.step-icon-mockup {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(11, 94, 168, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.step-card-mockup:hover .step-icon-mockup {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 0 15px rgba(11, 94, 168, 0.25);
}

.step-card-mockup h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--dark-navy);
}

.step-card-mockup p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

/* 4. Testimonials (Mockup Style) */
.testimonials-cards-grid-mockup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card-mockup {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(199, 206, 216, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card-mockup:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47, 128, 237, 0.25);
}

.client-meta-mockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.client-avatar-mockup {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-navy);
  font-size: 1.2rem;
  border: 1px solid rgba(199, 206, 216, 0.6);
}

.client-info-mockup h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.client-info-mockup span {
  font-size: 0.75rem;
  color: var(--dark-gray);
}

.client-rating-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--premium-orange);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.testimonial-card-mockup p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
  font-style: italic;
}

/* 5. Live Work Gallery (Photo Grid Collage) */
.live-gallery-grid-mockup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.gallery-mockup-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(199, 206, 216, 0.4);
  height: 250px;
  position: relative;
}

.gallery-mockup-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-mockup-item:hover img {
  transform: scale(1.08);
}

/* 6. Book Your Service Split Form & Map */
.book-service-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}

.book-service-form-wrap {
  display: flex;
  flex-direction: column;
}

.booking-split-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.book-service-map-wrap {
  height: 100%;
}

.map-container-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.mock-interactive-map {
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .services-cards-grid-mockup {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-collage-container {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 240px 320px;
  }
  .copper-pillar {
    grid-column: 1;
    grid-row: 1;
  }
  .brass-pillar {
    grid-column: 1;
    grid-row: 2;
  }
  .steel-pillar {
    grid-column: 1;
    grid-row: 3;
  }
  .accreditation-step-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-cards-grid-mockup {
    grid-template-columns: repeat(2, 1fr);
  }
  .live-gallery-grid-mockup {
    grid-template-columns: repeat(2, 1fr);
  }
  .book-service-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .services-cards-grid-mockup {
    grid-template-columns: 1fr;
  }
  .accreditation-seals-row {
    gap: 1.5rem;
    padding: 1rem;
  }
  .seal-item img {
    height: 60px;
  }
  .accreditation-step-cards {
    grid-template-columns: 1fr;
  }
  .testimonials-cards-grid-mockup {
    grid-template-columns: 1fr;
  }
  .live-gallery-grid-mockup {
    grid-template-columns: 1fr;
  }
  .form-row-double {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .mock-interactive-map {
    height: 320px;
  }
}

/* RTL overrides for Mockup Sections */
body.rtl .services-cards-grid-mockup {
  direction: rtl;
}
body.rtl .pillars-collage-container {
  direction: rtl;
}
body.rtl .collage-spec {
  flex-direction: row-reverse;
}
body.rtl .accreditation-step-cards {
  direction: rtl;
}
body.rtl .testimonials-cards-grid-mockup {
  direction: rtl;
}
body.rtl .live-gallery-grid-mockup {
  direction: rtl;
}
body.rtl .book-service-split {
  direction: rtl;
}
body.rtl .booking-split-form {
  text-align: right;
}
body.rtl .faq-accordion {
  direction: rtl;
}
body.rtl .faq-question {
  text-align: right;
}
body.rtl .faq-answer p {
  text-align: right;
}

/* ==========================================================================
   NEW HERO LAYOUT STYLES (MATCHING TARGET MOCKUP IMAGE)
   ========================================================================== */

/* Hero Badge Styling Override */
.hero-badge {
  background: transparent !important;
  color: #C08A3E !important; /* Brownish gold advice text color */
  font-family: var(--font-headings);
  font-size: 0.95rem !important;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0 !important;
  margin-bottom: 1.5rem;
  border: none !important;
  box-shadow: none !important;
  text-transform: uppercase;
}

/* Hero Custom Actions/Buttons */
.btn-hero-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  border: none !important;
}

.btn-hero-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-hero-call {
  background: var(--premium-orange) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 30px rgba(255, 140, 42, 0.25);
  border: none !important;
}

.btn-hero-call:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-orange), 0 12px 35px rgba(255, 140, 42, 0.45);
}

/* Floating Glass Form Customization */
.hero-form-container .glass-form {
  background: rgba(18, 38, 58, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2.8rem !important;
  border-radius: 24px !important;
  width: 100%;
  max-width: 450px;
}

.hero-form-container .form-title {
  font-family: var(--font-headings);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-form-container .form-subtitle {
  font-size: 0.92rem;
  color: var(--metal-silver);
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Input Group with Icon */
.form-group-with-icon {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-group-with-icon .form-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  pointer-events: none;
  transition: color 0.3s ease;
  z-index: 5;
}

body.rtl .form-group-with-icon .form-icon {
  left: auto;
  right: 1.25rem;
}

.form-input-with-icon {
  width: 100%;
  background: rgba(7, 24, 39, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.95rem 1.2rem 0.95rem 2.8rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

body.rtl .form-input-with-icon {
  padding: 0.95rem 2.8rem 0.95rem 1.2rem;
}

.form-input-with-icon::placeholder {
  color: rgba(199, 206, 216, 0.65);
}

.form-input-with-icon:focus {
  outline: none;
  background: rgba(7, 24, 39, 0.75);
  border-color: var(--premium-orange);
  box-shadow: 0 0 10px rgba(255, 140, 42, 0.2);
}

.form-input-with-icon:focus ~ .form-icon,
.form-input-with-icon:focus ~ .select-arrow-icon {
  color: var(--premium-orange);
}

/* Dropdown specific styles */
.select-wrapper-icon {
  position: relative;
  width: 100%;
}

.select-wrapper-icon .select-arrow-icon {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 5;
}

body.rtl .select-wrapper-icon .select-arrow-icon {
  right: auto;
  left: 1.25rem;
}

.form-input-with-icon.select-custom {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.form-input-with-icon.select-custom option {
  background: var(--dark-navy);
  color: var(--white);
}

/* RTL Specific Adjustments */
body.rtl .hero-text-block {
  text-align: right;
}
body.rtl .hero-actions {
  justify-content: flex-start;
}
body.rtl .hero-badge {
  text-align: right;
}
body.rtl .hero-overlay {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0) 85%) !important;
}

/* ==========================================================================
   REDESIGNED CLIENT REVIEWS PAGE STYLES (MOCKUP STYLE)
   ========================================================================== */
.reviews-page-container {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  background-image: url('../assets/scrap_trucks_jeddah.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  overflow: hidden;
}

.reviews-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: -1;
}

.reviews-main-card {
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  width: 92%;
  max-width: 1200px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  margin-bottom: 2.5rem;
  color: var(--white);
  position: relative;
  z-index: 5;
}

.reviews-card-header h1 {
  font-family: var(--font-headings);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--white) !important;
  margin-bottom: 2.5rem;
  line-height: 1.3;
}

.reviews-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

.spotlight-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white) !important;
  margin-bottom: 1.5rem;
  font-family: var(--font-headings);
}

.spotlight-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.spotlight-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 140, 42, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.spotlight-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.spotlight-avatar {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  object-fit: cover;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.spotlight-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white) !important;
  margin-bottom: 0.15rem;
  font-family: var(--font-headings);
}

.spotlight-info span {
  font-size: 0.82rem;
  color: rgba(199, 206, 216, 0.75);
}

.spotlight-company-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: rgba(199, 206, 216, 0.75);
}

.spotlight-logo-badge {
  background: var(--white);
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.spotlight-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}

.spotlight-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.spotlight-stars {
  color: var(--premium-orange);
  font-size: 0.82rem;
  display: flex;
  gap: 0.2rem;
}

.spotlight-verified {
  font-size: 0.82rem;
  color: rgba(199, 206, 216, 0.75);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.spotlight-verified i {
  color: #4285F4;
}

/* Right Side: Google Review Panel */
.google-panel {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.google-panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.google-icon-wrapper {
  background: var(--white);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.google-panel-titles h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white) !important;
  line-height: 1.3;
}

.google-panel-titles span {
  font-size: 0.75rem;
  color: rgba(199, 206, 216, 0.65);
  display: block;
  margin-top: 0.1rem;
}

.google-stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.google-stats-g {
  flex-shrink: 0;
}

.google-stats-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.google-rating-num {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white) !important;
  line-height: 1;
}

.google-rating-stars-wrap span {
  display: block;
  font-size: 0.78rem;
  color: rgba(199, 206, 216, 0.65);
  margin-top: 0.15rem;
}

.google-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.google-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.google-card-g-badge {
  background: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.google-mini-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.google-mini-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Custom compact styles for the mini grid cards */
.google-grid-card {
  padding: 0.85rem !important;
}

.google-grid-card .google-mini-profile {
  margin-bottom: 0.5rem !important;
}

.google-grid-card .google-mini-avatar {
  width: 30px !important;
  height: 30px !important;
}

.google-grid-card .google-mini-info h5 {
  font-size: 0.78rem !important;
}

.google-grid-card .google-mini-info span {
  font-size: 0.62rem !important;
}

.google-grid-card .google-mini-text {
  font-size: 0.76rem !important;
  line-height: 1.4 !important;
  margin-bottom: 0.5rem !important;
}

.google-grid-card .google-mini-footer {
  font-size: 0.68rem !important;
  padding-top: 0.4rem !important;
}

.google-mini-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.google-mini-avatar-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.google-mini-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.google-mini-info h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white) !important;
}

.google-mini-info span {
  font-size: 0.72rem;
  color: rgba(199, 206, 216, 0.65);
}

.google-mini-dots {
  color: rgba(199, 206, 216, 0.65);
  font-size: 0.85rem;
  cursor: pointer;
}

.google-mini-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}

.google-mini-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 0.5rem;
}

/* Floating Actions Bar */
.floating-action-review-bar {
  background: rgba(18, 38, 58, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.5rem 2.5rem;
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 2.5rem;
  z-index: 5;
}

.floating-action-review-bar h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white) !important;
  font-family: var(--font-headings);
}

.floating-action-review-bar-buttons {
  display: flex;
  gap: 1.5rem;
}

.btn-google-review {
  background: var(--white) !important;
  color: var(--dark-navy) !important;
  border: none !important;
  box-shadow: var(--shadow-sm);
}

.btn-google-review:hover {
  transform: translateY(-3px);
  background: #f1f5f9 !important;
  box-shadow: var(--shadow-md);
}

.crafted-by-humans {
  font-size: 0.75rem;
  color: var(--metal-silver);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  opacity: 0.6;
  z-index: 5;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .reviews-grid-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .spotlight-cols {
    grid-template-columns: 1fr;
  }
  .floating-action-review-bar {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem;
  }
  .floating-action-review-bar-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .floating-action-review-bar-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .google-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* RTL Specific overrides */
body.rtl .reviews-page-container {
  direction: rtl;
}

body.rtl .reviews-card-header h1,
body.rtl .spotlight-title,
body.rtl .google-panel-header,
body.rtl .spotlight-info,
body.rtl .spotlight-company-bar,
body.rtl .spotlight-text,
body.rtl .google-stats,
body.rtl .google-mini-info,
body.rtl .google-mini-text,
body.rtl .floating-action-review-bar h4 {
  text-align: right;
}

body.rtl .spotlight-profile,
body.rtl .google-panel-header,
body.rtl .google-mini-avatar-wrap,
body.rtl .spotlight-verified,
body.rtl .google-stats {
  flex-direction: row;
}

body.rtl .spotlight-verified i {
  margin-left: 0.4rem;
  margin-right: 0;
}

/* Homepage Google Review Cards */
.google-review-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 24px !important;
  padding: 2rem !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2) !important;
  display: flex;
  flex-direction: column;
  color: var(--white) !important;
}

.google-review-card:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 140, 42, 0.25) !important;
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35) !important;
}

.google-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.google-review-avatar-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.google-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.google-review-info h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white) !important;
  margin-bottom: 0.15rem;
}

.google-review-info span {
  font-size: 0.75rem;
  color: rgba(199, 206, 216, 0.65);
  display: block;
}

.google-review-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}

.google-review-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.85rem;
}

body.rtl .google-review-info h4,
body.rtl .google-review-info span,
body.rtl .google-review-text {
  text-align: right;
}

body.rtl .google-review-footer {
  justify-content: flex-start;
}




/* ==========================================================================
   REVIEWS INFINITE SLIDING MARQUEE
   ========================================================================== */
.reviews-marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 3rem 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent, white 8%, white 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, white 8%, white 92%, transparent);
}

.reviews-marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: reviewsMarquee 55s linear infinite;
}

.reviews-marquee-track:hover {
  animation-play-state: paused;
}

.reviews-marquee-track .google-review-card {
  width: 380px !important;
  flex-shrink: 0 !important;
}

@keyframes reviewsMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RTL Support - Direction-agnostic loop using standard shift */
body.rtl .reviews-marquee-track {
  animation: reviewsMarquee 55s linear infinite;
}

/* ==========================================================================
   NAVIGATION HEADER DROPDOWN MENU
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--dark-navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 8px 0;
  z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: left;
}

.dropdown-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--premium-orange);
  padding-left: 24px;
}

/* RTL Support for Dropdown Links */
body.rtl .dropdown-link {
  text-align: right;
}
body.rtl .dropdown-link:hover {
  padding-left: 20px;
  padding-right: 24px;
}

/* Mobile responsive adjustments for dropdown */
@media (max-width: 1024px) {
  .nav-item-dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    border: none;
    box-shadow: none;
    padding-left: 20px;
  }
  
  body.rtl .nav-item-dropdown .dropdown-menu {
    padding-left: 0;
    padding-right: 20px;
  }
}


/* ==========================================================================
   SUBPAGE SPECIFIC LAYOUTS (MIGRATED FROM BACKUP)
   ========================================================================== */
/* Service Page Template Layout */
.service-hero {
    padding: 180px 0 100px 0;
    background: linear-gradient(rgba(10, 17, 40, 0.9), rgba(5, 10, 24, 0.95)), url('../images/hero-bg.png') no-repeat center center/cover;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.service-hero-desc {
    font-size: 1.15rem;
    color: var(--metallic);
    margin-bottom: 32px;
}

.service-body-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: flex-start;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.service-content h3:first-of-type {
    margin-top: 0;
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.service-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.service-item-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white);
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-weight: 600;
}

.service-item-bullet svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.service-sidebar-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.service-sidebar-card h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 12px;
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-list-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background-color: var(--light-bg);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    transition: var(--transition);
}

.sidebar-list-link:hover, .sidebar-list-link.active {
    background-color: var(--primary);
    color: var(--white);
}

.sidebar-list-link svg {
    width: 16px;
    height: 16px;
}

/* Areas We Serve & Blog & About Page Details */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-stat {
    background-color: var(--light-bg);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.about-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

/* Areas List */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.area-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

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

.area-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin: 0 auto 20px auto;
}

.area-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.area-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Blog list & details */
.blog-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%), url('../assets/industrial_recycling_hero.png') no-repeat center center / cover;
  padding: 180px 0 100px;
  color: #ffffff;
  text-align: center;
}
.blog-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog-hero .hero-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #f97316;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.blog-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}
.blog-hero p {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.06), 0 10px 10px -5px rgba(0,0,0,0.04);
  border-color: #f97316;
}
.blog-img-wrapper {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.blog-card-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f97316;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
body.rtl .blog-card-tag {
  left: auto;
  right: 20px;
}
.blog-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 20px;
  flex-grow: 1;
}
.blog-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f97316;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.blog-link:hover {
  color: #ea580c;
}
.blog-link i {
  transition: transform 0.3s ease;
}
.blog-link:hover i {
  transform: translateX(4px);
}
body.rtl .blog-link:hover i {
  transform: translateX(-4px);
}

/* PREMIUM INTERACTIVE BLOG MODAL */
.blog-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.blog-modal.active {
  display: flex;
}
.blog-modal-content {
  background: #ffffff;
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalZoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
@keyframes modalZoomIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.blog-modal-header {
  padding: 25px 30px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-modal-header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}
.blog-modal-close-btn {
  background: #f1f5f9;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog-modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}
.blog-modal-body {
  padding: 30px 40px;
  overflow-y: auto;
  flex-grow: 1;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}
.blog-modal-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin: 30px 0 15px;
}
.blog-modal-body p {
  margin-bottom: 20px;
}
.blog-modal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  border: 1px solid #cbd5e1;
}
.blog-modal-body th, .blog-modal-body td {
  border: 1px solid #cbd5e1;
  padding: 12px;
  font-size: 0.95rem;
}
.blog-modal-body th {
  background-color: #f1f5f9;
  font-weight: 700;
  color: #0f172a;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 2.2rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-modal-body {
    padding: 20px 25px;
  }
}


/* Sticky Action Bar (Mobile Bottom CTAs) */
.sticky-actions-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    text-align: center;
}

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

.sticky-action-btn.whatsapp-btn {
    background-color: #25D366; /* WhatsApp Green */
}

/* Footer styling */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--metallic);
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer-social-link:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.footer h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-link {
    color: var(--metallic);
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--metallic);
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

/* Map Section */
.map-container {
    width: 100%;
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .purple-cow-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .industries-tabs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--primary);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 24px;
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1.1rem;
    }
    
    .nav-item-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.02);
        border: none;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .hero {
        text-align: center;
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 80px;
    }
    
    .hero-badge {
        margin: 0 auto 20px auto;
    }
    
    .hero-desc {
        margin: 0 auto 32px auto;
    }
    
    .hero-ctas {
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-trust-indicators {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .service-body-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-actions-bar {
        display: grid;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   ABOUT US - Mockup Redesign Styles
   ========================================================================== */
.about-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px 0;
  background: linear-gradient(rgba(7, 24, 39, 0.75), rgba(7, 24, 39, 0.9)), url('../assets/steel_dismantling.png') no-repeat center center/cover;
  color: var(--white);
  overflow: hidden;
}

.about-hero-content {
  max-width: 800px;
}

.about-hero-title {
  font-family: var(--font-headings);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.about-hero-title span {
  color: var(--secondary-blue);
}

.about-hero-tagline {
  color: var(--premium-orange);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  font-family: var(--font-headings);
}

.about-hero-desc {
  font-size: 1.1rem;
  color: var(--metal-silver);
  line-height: 1.7;
}

/* Stats Bar Overlay */
.about-stats-panel-wrap {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.about-stats-panel {
  background: var(--glass-navy);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: var(--shadow-lg);
}

.about-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-stat-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 140, 42, 0.1);
  border: 1px solid rgba(255, 140, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-orange);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about-stat-text-box {
  display: flex;
  flex-direction: column;
}

.about-stat-number {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}

.about-stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--metal-silver);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Who We Are */
.about-who-we-are-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-worker-card {
  position: relative;
  border: 2px solid var(--premium-orange);
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.about-worker-card img {
  width: 100%;
  height: auto;
  display: block;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  object-fit: cover;
}

.about-who-title {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  color: var(--dark-navy);
  margin-bottom: 20px;
  font-family: var(--font-headings);
}

.about-who-desc {
  font-size: 1.05rem;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 35px;
}

.about-values-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  background: rgba(11, 94, 168, 0.05);
  border: 1px solid rgba(11, 94, 168, 0.15);
  border-radius: 16px;
  padding: 22px 15px;
  margin-top: 25px;
}

.about-value-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.about-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.about-value-item:hover .about-value-icon {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  transform: translateY(-3px);
}

.about-value-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dark-navy);
  text-transform: uppercase;
  line-height: 1.3;
}

/* What We Buy */
.about-buy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.about-buy-card {
  background: var(--dark-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 25px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-buy-card:hover {
  transform: translateY(-5px);
  border-color: var(--premium-orange);
  box-shadow: var(--shadow-glow-orange);
}

.about-buy-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
}

.about-buy-icon {
  font-size: 1.4rem;
  color: var(--premium-orange);
}

.about-buy-title {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-buy-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-buy-list li {
  font-size: 0.88rem;
  color: var(--metal-silver);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease;
}

.about-buy-list li::before {
  content: "+";
  color: var(--secondary-blue);
  font-size: 1.1rem;
  font-weight: 700;
}

.about-buy-card:hover .about-buy-list li {
  color: var(--white);
}

/* Mission, Vision & Commitment */
.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-mission-card {
  background: var(--glass-navy);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-mission-card:hover {
  border-color: var(--premium-orange);
  transform: translateY(-5px);
}

.about-mission-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--premium-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-orange);
  font-size: 1.8rem;
  margin: 0 auto 25px auto;
  box-shadow: 0 0 15px rgba(255, 140, 42, 0.15);
}

.about-mission-card.vision-2030 .about-mission-icon-circle {
  border-color: #25D366;
  color: #25D366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.15);
}

.about-mission-card h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.about-mission-card p {
  font-size: 0.95rem;
  color: var(--metal-silver);
  line-height: 1.7;
}

/* Areas & Collage */
.about-areas-collage-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-areas-list-box {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.about-areas-list-box h2 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  color: var(--dark-navy);
  margin-bottom: 25px;
}

.about-areas-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.about-area-bullet {
  font-size: 0.95rem;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.about-area-bullet i {
  color: var(--secondary-blue);
  font-size: 0.95rem;
}

.about-collage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.about-collage-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.about-collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-collage-img:hover img {
  transform: scale(1.08);
}

/* CTA Banner */
.about-cta-banner-card {
  background: linear-gradient(135deg, #071827 0%, #0B5EA8 100%);
  border-radius: 16px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.about-cta-text-box h2 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 10px;
}

.about-cta-bullets {
  display: flex;
  gap: 30px;
}

.about-cta-bullet {
  color: var(--metal-silver);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-cta-bullet i {
  color: var(--premium-orange);
}

.about-cta-btn-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Two-line Mockup CTA Button */
.about-cta-button {
  background: var(--premium-orange);
  border-radius: 12px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow-orange);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-cta-button:hover {
  transform: translateY(-2px);
  background: #ffa351;
  box-shadow: 0 0 25px rgba(255, 140, 42, 0.7);
}

.about-cta-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
}

.about-cta-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.about-cta-number-text {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.about-cta-subtext {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-stats-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .about-who-we-are-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-buy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-mission-grid {
    grid-template-columns: 1fr;
  }
  .about-areas-collage-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-cta-banner-card {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 35px;
  }
  .about-cta-bullets {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .about-stats-panel {
    grid-template-columns: 1fr;
  }
  .about-values-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-buy-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CONTACT US - Mockup Redesign Styles
   ========================================================================== */
.contact-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 140px 0 100px 0;
  background-color: var(--dark-navy);
  color: var(--white);
  overflow: hidden;
  z-index: 5;
}

.contact-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.45; /* Darken the background image for premium high contrast look */
  filter: brightness(0.6) contrast(1.1);
  transition: transform 1.5s ease;
}

.contact-hero:hover .contact-hero-background img {
  transform: scale(1.05);
}

body.rtl .contact-hero-background img {
  object-position: left center;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(7, 24, 39, 0.95) 0%, rgba(7, 24, 39, 0.8) 45%, rgba(7, 24, 39, 0.3) 80%, rgba(7, 24, 39, 0.5) 100%);
  z-index: 1;
}

body.rtl .contact-hero-overlay {
  background: linear-gradient(-90deg, rgba(7, 24, 39, 0.95) 0%, rgba(7, 24, 39, 0.8) 45%, rgba(7, 24, 39, 0.3) 80%, rgba(7, 24, 39, 0.5) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: left;
  width: 100%;
}

body.rtl .contact-hero-content {
  text-align: right;
}

.contact-hero-title {
  font-family: var(--font-headings);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.contact-hero-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background-color: var(--premium-orange);
  border-radius: 2px;
}

body.rtl .contact-hero-title::after {
  left: auto;
  right: 0;
}

.contact-hero-tagline {
  color: var(--premium-orange);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 20px;
  font-family: var(--font-headings);
}

.contact-hero-desc {
  font-size: 1.15rem;
  color: var(--metal-silver);
  line-height: 1.8;
  max-width: 700px;
}

/* Stats Bar */
.contact-stats-panel-wrap {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.contact-stats-panel {
  background: var(--glass-navy);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: var(--shadow-lg);
}

.contact-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-stat-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 140, 42, 0.1);
  border: 1px solid rgba(255, 140, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-orange);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-stat-text-box {
  display: flex;
  flex-direction: column;
}

.contact-stat-number {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2px;
}

.contact-stat-label {
  font-size: 0.72rem;
  color: var(--metal-silver);
}

/* Main Layout Grid */
.contact-body-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Left Card: Contact Info */
.contact-info-card {
  background: #071827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--premium-orange);
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.contact-info-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--premium-orange);
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-info-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 140, 42, 0.1);
  border: 1px solid rgba(255, 140, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-orange);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-detail-icon.icon-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.2);
  color: #25D366;
}

.contact-info-detail-text {
  display: flex;
  flex-direction: column;
}

.contact-info-detail-label {
  font-size: 0.78rem;
  color: var(--metal-silver);
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-info-detail-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  white-space: pre-line;
}

.contact-info-detail-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-detail-value a:hover {
  color: var(--premium-orange);
}

/* Right Card: Message Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 25px;
}

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

.contact-form-full {
  margin-bottom: 20px;
}

.contact-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.contact-form-label span {
  color: #ea4335;
}

.contact-form-input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--dark-navy);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.contact-form-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: var(--white);
  box-shadow: 0 0 10px rgba(11, 94, 168, 0.15);
}

select.contact-form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B5EA8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 15px center; /* left side for RTL */
  background-size: 16px;
}

.contact-form-submit-btn {
  background: var(--premium-orange);
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  color: var(--white);
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow-orange);
}

.contact-form-submit-btn:hover {
  background: #ffa351;
  transform: translateY(-2px);
}

/* Map & Why Choose Us Section */
.map-why-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

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

.contact-map-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 20px;
}

.contact-map-iframe-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 350px;
  border: 1px solid var(--border-color);
}

.why-choose-card {
  background: #071827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 35px;
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.why-choose-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--premium-orange);
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-choose-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--metal-silver);
}

.why-choose-item i {
  color: var(--premium-orange);
  font-size: 1.1rem;
}

/* Call CTA Banner */
.contact-cta-banner-card {
  background: linear-gradient(135deg, #071827 0%, #0B5EA8 100%);
  border-radius: 16px;
  padding: 35px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.contact-cta-text-box h2 {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-cta-text-box p {
  color: var(--metal-silver);
  font-size: 0.92rem;
  font-weight: 500;
}

.contact-cta-btn-wrap {
  display: flex;
  align-items: center;
}

/* Bottom Trust Bar */
.contact-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  margin-top: 30px;
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-trust-icon {
  font-size: 1.3rem;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.contact-trust-text {
  display: flex;
  flex-direction: column;
}

.contact-trust-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.contact-trust-desc {
  font-size: 0.72rem;
  color: var(--dark-gray);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .contact-stats-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .contact-body-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .map-why-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-cta-banner-card {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 30px;
  }
  .contact-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .contact-stats-panel {
    grid-template-columns: 1fr;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .contact-trust-bar {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   AREAS WE SERVE - Mockup Redesign Styles
   ========================================================================== */
.areas-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 150px 0 100px 0;
  background-color: var(--dark-navy);
  color: var(--white);
  overflow: hidden;
  z-index: 5;
}

.areas-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.areas-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.35;
  filter: brightness(0.55) contrast(1.15);
  transition: transform 2s ease;
}

.areas-hero:hover .areas-hero-background img {
  transform: scale(1.05);
}

body.rtl .areas-hero-background img {
  object-position: left center;
}

.areas-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(7, 24, 39, 0.95) 0%, rgba(7, 24, 39, 0.8) 45%, rgba(7, 24, 39, 0.3) 80%, rgba(7, 24, 39, 0.5) 100%);
  z-index: 1;
}

body.rtl .areas-hero-overlay {
  background: linear-gradient(-90deg, rgba(7, 24, 39, 0.95) 0%, rgba(7, 24, 39, 0.8) 45%, rgba(7, 24, 39, 0.3) 80%, rgba(7, 24, 39, 0.5) 100%);
}

.areas-hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: left;
  width: 100%;
}

body.rtl .areas-hero-content {
  text-align: right;
}

.areas-hero-title {
  font-family: var(--font-headings);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 850;
  line-height: 1.15;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--white);
}

.areas-hero-title span {
  color: var(--premium-orange);
}

.areas-hero-desc {
  font-size: 1.2rem;
  color: var(--metal-silver);
  line-height: 1.8;
  max-width: 750px;
  margin-bottom: 35px;
}

/* Hero Stats */
.areas-hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

body.rtl .areas-hero-stats {
  flex-direction: row;
}

.areas-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 15px 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.areas-stat-icon {
  font-size: 1.8rem;
  color: var(--premium-orange);
}

.areas-stat-text {
  display: flex;
  flex-direction: column;
}

.areas-stat-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.areas-stat-desc {
  font-size: 0.8rem;
  color: var(--metal-silver);
}

/* Hero CTAs */
.areas-hero-ctas {
  display: flex;
  gap: 20px;
}

body.rtl .areas-hero-ctas {
  flex-direction: row;
}

.areas-btn-wa, .areas-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 750;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.areas-btn-wa:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.areas-btn-call {
  background: var(--premium-orange);
  color: var(--white);
}

.areas-btn-call:hover {
  background: #e07216;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 42, 0.35);
}

/* Section Common Header */
.section-header-wrap {
  margin-bottom: 50px;
}

.section-badge-orange {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--premium-orange);
  position: relative;
  padding: 0 20px;
}

.section-badge-orange::before,
.section-badge-orange::after {
  content: '——';
  color: rgba(255, 140, 42, 0.4);
  margin: 0 10px;
}

/* Districts Coverage Split Section */
.areas-districts-section {
  background-color: #050f19;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.areas-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.areas-cards-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.areas-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 15px;
  transition: all 0.3s ease;
}

.areas-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 140, 42, 0.2);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

body.rtl .areas-card {
  text-align: right;
  flex-direction: row-reverse;
}

.areas-card-icon {
  font-size: 1.6rem;
  color: var(--premium-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.areas-card-content h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.areas-card-content p {
  font-size: 0.92rem;
  color: var(--metal-silver);
  line-height: 1.6;
}

/* Map visualizer */
.areas-map-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 10px;
  height: 480px;
  overflow: hidden;
}

.areas-map-graphic {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(11, 94, 168, 0.1) 0%, rgba(7, 24, 39, 0.8) 70%), url('../assets/skip_bins_jeddah.png') no-repeat center center/cover;
  border-radius: 12px;
  position: relative;
  filter: saturate(0.6) contrast(1.1);
}

.map-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 12px;
}

.map-glowing-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.pin-dot {
  width: 12px;
  height: 12px;
  background-color: var(--premium-orange);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 10px var(--premium-orange);
  z-index: 2;
}

.pin-pulse {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 140, 42, 0.4);
  border-radius: 50%;
  animation: pinPulse 2s infinite ease-out;
  z-index: 1;
}

.pin-label {
  margin-top: 8px;
  background: rgba(7, 24, 39, 0.85);
  border: 1px solid rgba(255, 140, 42, 0.3);
  color: var(--white);
  font-family: var(--font-headings);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@keyframes pinPulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* What We Buy Section */
.areas-buy-section {
  background-color: #040c14;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.areas-buy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.areas-buy-card {
  background: rgba(7, 24, 39, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.areas-buy-card:hover {
  transform: translateY(-5px);
  border-color: var(--premium-orange);
  box-shadow: 0 10px 25px rgba(255, 140, 42, 0.15);
}

.areas-buy-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.areas-buy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

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

.areas-buy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(4, 12, 20, 0.9));
}

.areas-buy-info {
  padding: 24px;
}

body.rtl .areas-buy-info {
  text-align: right;
}

.areas-buy-info h3 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
}

.areas-buy-info h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--premium-orange);
  border-radius: 1.5px;
}

body.rtl .areas-buy-info h3::after {
  left: auto;
  right: 0;
}

.areas-buy-list {
  font-size: 0.95rem;
  color: var(--metal-silver);
  line-height: 2.0;
}

/* Why Choose Us Section */
.areas-why-section {
  background-color: #03080e;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.areas-why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.areas-why-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.areas-why-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 140, 42, 0.2);
  transform: translateY(-2px);
}

.areas-why-icon {
  font-size: 2.2rem;
  color: var(--premium-orange);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.areas-why-item h3 {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}

/* Coverage Gallery Section */
.areas-gallery-section {
  background-color: #040c14;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.areas-gallery-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 15px;
}

/* Custom scrollbar for gallery */
.areas-gallery-grid::-webkit-scrollbar {
  height: 6px;
}

.areas-gallery-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 3px;
}

.areas-gallery-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 140, 42, 0.2);
  border-radius: 3px;
}

.areas-gal-card {
  position: relative;
  min-width: 140px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--dark-navy);
}

.areas-gal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1);
  transition: transform 1s ease;
}

.areas-gal-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.7) contrast(1.1);
}

.areas-gal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 24, 39, 0.9) 0%, rgba(7, 24, 39, 0.2) 60%, transparent 100%);
  z-index: 1;
}

.areas-gal-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 10px;
  text-align: center;
  z-index: 2;
}

.areas-gal-title {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--white);
  display: inline-block;
  position: relative;
}

.areas-gal-title::before {
  content: '📍';
  font-size: 0.78rem;
  margin-right: 5px;
}

body.rtl .areas-gal-title::before {
  margin-right: 0;
  margin-left: 5px;
}

/* Footer CTA section */
.areas-footer-cta-section {
  background-color: #050f19;
}

.areas-footer-cta-card {
  background: linear-gradient(135deg, rgba(7, 24, 39, 0.9) 0%, rgba(15, 42, 74, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.areas-foot-img-box {
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
}

.areas-foot-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.areas-foot-content-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

body.rtl .areas-foot-content-box {
  direction: rtl;
}

.areas-foot-text h2 {
  font-family: var(--font-headings);
  font-size: 2.1rem;
  font-weight: 850;
  color: var(--white);
  margin-bottom: 15px;
}

.areas-foot-text p {
  color: var(--metal-silver);
  font-size: 1.05rem;
  line-height: 1.7;
}

.areas-foot-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

body.rtl .areas-foot-actions {
  align-items: flex-start;
}

.areas-foot-call {
  display: flex;
  flex-direction: column;
}

.areas-foot-call .call-lbl {
  font-size: 0.88rem;
  color: var(--metal-silver);
  margin-bottom: 4px;
}

.areas-foot-call .call-val {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--premium-orange);
  text-decoration: none;
}

.areas-foot-call .call-val:hover {
  text-decoration: underline;
}

.areas-foot-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: #25D366;
  border-color: #25D366;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.areas-foot-btn-wa:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
}

/* ==========================================================================
   Responsive overrides for Areas We Serve
   ========================================================================== */
@media (max-width: 1200px) {
  .areas-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .areas-hero-stats {
    flex-direction: column;
    gap: 15px;
  }
  .areas-split-grid {
    grid-template-columns: 1fr;
  }
  .areas-map-wrapper {
    height: 380px;
  }
  .areas-buy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .areas-footer-cta-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .areas-foot-img-box {
    display: none;
  }
}

@media (max-width: 768px) {
  .areas-cards-col {
    grid-template-columns: 1fr;
  }
  .areas-foot-content-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .areas-hero-ctas {
    flex-direction: column;
    gap: 15px;
  }
  .areas-buy-grid {
    grid-template-columns: 1fr;
  }
  .areas-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   REDESIGNED SERVICES PAGE STYLES (Mockup Matches)
   ========================================================================== */

.service-hero-mockup {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
  background-color: #030a10;
  border-bottom: 2px solid var(--premium-orange);
}

.service-hero-mockup-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-hero-mockup-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  transform: scale(1.05);
  transition: transform 12s ease-out;
}

.service-hero-mockup:hover .service-hero-mockup-bg img {
  transform: scale(1);
}

.service-hero-mockup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(11, 30, 48, 0.4) 0%, rgba(3, 10, 16, 0.95) 80%);
  z-index: 2;
}

body.rtl .service-hero-mockup-overlay {
  background: radial-gradient(circle at 30% 30%, rgba(11, 30, 48, 0.4) 0%, rgba(3, 10, 16, 0.95) 80%);
}

.service-hero-mockup-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.service-hero-badge {
  display: inline-block;
  background: rgba(255, 140, 42, 0.1);
  border: 1px solid var(--premium-orange);
  color: var(--premium-orange);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.service-hero-title {
  font-family: var(--font-headings);
  font-size: 3.2rem;
  font-weight: 850;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.service-hero-title span {
  color: var(--premium-orange);
  background: linear-gradient(135deg, var(--premium-orange) 0%, #ff8c2a 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--metallic);
  margin-bottom: 2.5rem;
}

.service-hero-feats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-hero-feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-hero-feat-icon {
  font-size: 1.25rem;
  color: var(--premium-orange);
  flex-shrink: 0;
}

.service-hero-feat-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.service-hero-ctas {
  display: flex;
  gap: 1.2rem;
}

/* Stats Row */
.service-stats-mockup {
  background: #04101b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
}

.service-stats-grid {
  display: grid;
  grid-template-columns: 1fr repeat(4, 1.2fr);
  gap: 2rem;
  align-items: center;
}

.service-stats-header h3 {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

.service-stat-card-mockup {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.3s ease;
}

.service-stat-card-mockup:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 140, 42, 0.2);
  transform: translateY(-2px);
}

.service-stat-icon-wrapper {
  font-size: 1.8rem;
  color: var(--premium-orange);
}

.service-stat-info h4 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.service-stat-info p {
  font-size: 0.8rem;
  color: var(--metal-silver);
  line-height: 1.3;
}

/* Service Grid Section */
.services-section-mockup {
  background: #020a10;
  padding: 80px 0;
}

.services-grid-mockup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-top: 3.5rem;
}

.service-card-mockup {
  position: relative;
  background: #04101b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card-mockup:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 140, 42, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow-orange);
}

.service-card-image-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-mockup:hover .service-card-image-box img {
  transform: scale(1.08);
}

.service-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--premium-orange);
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.9rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(255, 140, 42, 0.5);
}

body.rtl .service-card-badge {
  left: auto;
  right: 15px;
}

.service-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.service-card-content h3 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 750;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--metal-silver);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.service-card-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--premium-orange);
  transition: all 0.3s;
}

.service-card-mockup:hover .service-card-link-btn {
  color: var(--white);
}

.service-card-icon-overlay {
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  pointer-events: none;
  transition: all 0.4s ease;
}

body.rtl .service-card-icon-overlay {
  right: auto;
  left: 2rem;
}

.service-card-mockup:hover .service-card-icon-overlay {
  color: rgba(255, 140, 42, 0.08);
  transform: scale(1.1) rotate(5deg);
}

/* How We Work Section */
.service-how-mockup {
  background: #04101b;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-how-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 4rem;
  position: relative;
}

.service-how-step {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.service-how-step-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #020a10;
  border: 3px double rgba(255, 140, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-orange);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-how-step:hover .service-how-step-icon-box {
  border-color: var(--premium-orange);
  background: var(--brand-gradient);
  color: var(--white);
  box-shadow: var(--shadow-glow-orange), 0 5px 20px rgba(255, 140, 42, 0.4);
  transform: scale(1.08);
}

.service-how-step-num {
  position: absolute;
  top: -5px;
  left: -5px;
  background: #020a10;
  border: 1px solid rgba(255, 140, 42, 0.3);
  color: var(--premium-orange);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.72rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.rtl .service-how-step-num {
  left: auto;
  right: -5px;
}

.service-how-step h4 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-how-step p {
  font-size: 0.8rem;
  color: var(--metal-silver);
  line-height: 1.4;
  max-width: 160px;
}

.service-how-step-arrow {
  position: absolute;
  top: 45px;
  right: -25px;
  color: rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
  pointer-events: none;
}

body.rtl .service-how-step-arrow {
  right: auto;
  left: -25px;
  transform: rotate(180deg);
}

/* Districts & Badge Panel */
.service-info-footer-mockup {
  background: #020a10;
  padding: 70px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-info-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.service-info-footer-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 0.5rem;
  text-align: center;
}

.service-info-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--premium-orange);
}

.service-info-badges-col .service-info-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-info-badge-item {
  background: #04101b;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1.2rem 0.8rem;
  text-align: center;
  transition: all 0.3s;
}

.service-info-badge-item:hover {
  border-color: rgba(255, 140, 42, 0.15);
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-2px);
}

.service-info-badge-icon {
  font-size: 1.5rem;
  color: var(--premium-orange);
  margin-bottom: 0.75rem;
}

.service-info-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.service-info-logo-col {
  text-align: center;
}

.service-info-logo-col img {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(47, 128, 237, 0.15));
  animation: logoGlow 4s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% { filter: drop-shadow(0 5px 10px rgba(47, 128, 237, 0.15)); }
  100% { filter: drop-shadow(0 8px 20px rgba(255, 140, 42, 0.25)); }
}

.service-info-districts-col .service-info-districts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.service-info-district-item {
  background: #04101b;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--metallic);
  font-weight: 700;
  transition: all 0.3s;
}

.service-info-district-item:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  border-color: rgba(255, 140, 42, 0.15);
}

.service-info-district-item i {
  color: var(--premium-orange);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Bottom CTA Card */
.service-cta-mockup {
  background: #020a10;
  padding: 0 0 80px 0;
}

.service-cta-card {
  background: linear-gradient(135deg, #091f33 0%, #04101b 100%);
  border: 1px solid rgba(255, 140, 42, 0.15);
  border-radius: 28px;
  padding: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.service-cta-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 140, 42, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.service-cta-text h3 {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 850;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-cta-text p {
  font-size: 1.05rem;
  color: var(--metallic);
  font-weight: 500;
}

.service-cta-actions {
  display: flex;
  gap: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* Ticker section */
.service-ticker-mockup {
  background: #01080d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid var(--premium-orange);
  padding: 0.8rem 0;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--metal-silver);
}

.service-ticker-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-ticker-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--metallic);
}

.service-ticker-left i {
  color: var(--premium-orange);
}

.service-ticker-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.service-ticker-feat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.service-ticker-feat i {
  color: #27ae60;
}

/* Reference Handbook COLLAPSIBLE Section */
.service-reference-handbook-mockup {
  background: #020a10;
  padding: 40px 0 80px;
}

.handbook-accordion-header {
  background: #04101b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.2rem 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--white);
}

.handbook-accordion-header h3 {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
}

.handbook-accordion-header i {
  transition: transform 0.3s;
}

.handbook-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: #04101b;
  border: 0 solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 12px 12px;
}

.handbook-accordion-header.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.handbook-accordion-header.active i {
  transform: rotate(180deg);
}

.handbook-accordion-content-inner {
  padding: 2.5rem;
  color: var(--metal-silver);
}

.handbook-accordion-content-inner h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.handbook-accordion-content-inner h3:first-of-type {
  margin-top: 0;
}

.handbook-accordion-content-inner p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Responsiveness for Redesigned Services */
@media (max-width: 1024px) {
  .service-hero-title { font-size: 2.6rem; }
  .service-hero-feats-row { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .service-stats-grid { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .service-stats-header h3 { font-size: 1.8rem; }
  .service-stat-card-mockup { justify-content: center; }
  .services-grid-mockup { grid-template-columns: repeat(2, 1fr); }
  .service-how-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .service-how-step-arrow { display: none; }
  .service-info-footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-info-logo-col { order: -1; }
  .service-cta-card { flex-direction: column; text-align: center; gap: 2rem; }
  .service-ticker-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 768px) {
  .service-hero-title { font-size: 2.2rem; }
  .service-hero-feats-row { grid-template-columns: 1fr; }
  .services-grid-mockup { grid-template-columns: 1fr; }
  .service-how-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .service-hero-ctas {
    flex-direction: column;
    gap: 15px;
  }
}



/* ==========================================================================
   HOMEPAGE REDESIGN STYLES (MOCKUP MATCHING)
   ========================================================================== */

/* Hero Section */
.hero-mockup-home {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  color: var(--white);
  overflow: hidden;
  background-color: #071827;
}

.hero-mockup-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-mockup-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-mockup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 24, 39, 0.85) 0%, rgba(7, 24, 39, 0.95) 100%);
  z-index: 2;
}

.hero-mockup-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.hero-mockup-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.hero-mockup-title span {
  color: var(--premium-orange);
}

.hero-mockup-desc {
  font-size: 1.25rem;
  color: #C7CED8;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-mockup-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-mockup-ctas .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.hero-mockup-ctas .btn-primary {
  background: linear-gradient(135deg, var(--premium-orange) 0%, #d45d00 100%);
  border: none;
  color: var(--white);
}

.hero-mockup-ctas .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 93, 0, 0.3);
}

.hero-mockup-ctas .btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  color: var(--white);
}

.hero-mockup-ctas .btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Features Grid */
.home-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 3;
  margin-top: 2rem;
}

.home-feature-card {
  background: rgba(13, 31, 50, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.home-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--premium-orange);
  background: rgba(13, 31, 50, 0.85);
}

.home-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(212, 93, 0, 0.15);
  border: 1px solid rgba(212, 93, 0, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-orange);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.home-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.home-feature-card p {
  font-size: 0.9rem;
  color: #C7CED8;
  line-height: 1.4;
}

/* About Section */
.about-mockup-section {
  padding: 100px 0;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.about-mockup-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-mockup-content {
  position: relative;
}

.about-watermark-recycle {
  position: absolute;
  right: -50px;
  bottom: -50px;
  font-size: 20rem;
  color: rgba(7, 24, 39, 0.03);
  z-index: 1;
  pointer-events: none;
}

.about-mockup-text-wrap {
  position: relative;
  z-index: 2;
}

.about-mockup-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--premium-orange);
  margin-bottom: 0.5rem;
  display: block;
}

.about-mockup-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #071827;
  margin-bottom: 1.5rem;
}

.about-mockup-desc {
  font-size: 1.1rem;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-stat-item {
  background: #F3F4F6;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.about-stat-item:hover {
  background: #E5E7EB;
  transform: translateY(-2px);
}

.about-stat-icon {
  font-size: 2rem;
  color: var(--premium-orange);
}

.about-stat-info h4 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #071827;
  line-height: 1.2;
}

.about-stat-info p {
  font-size: 0.95rem;
  color: #6B7280;
}

.about-collage-wrap {
  position: relative;
}

.about-collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-collage-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.about-collage-item:hover img {
  transform: scale(1.08);
}

.about-collage-item.big-item {
  grid-row: span 2;
  height: 420px;
}

.about-collage-item.small-item {
  height: 200px;
}

/* What We Buy Section */
.what-we-buy-section {
  padding: 100px 0;
  background-color: #071827;
}

.what-we-buy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.buy-card-mockup {
  background: #0d1f32;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.buy-card-mockup:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 93, 0, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.buy-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.buy-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.buy-card-mockup:hover .buy-card-image img {
  transform: scale(1.08);
}

.buy-card-content {
  padding: 2rem;
  position: relative;
}

.buy-card-header-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gear-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--premium-orange);
  background: rgba(212, 93, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-orange);
  font-size: 1rem;
  flex-shrink: 0;
}

.buy-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
}

.buy-card-desc {
  font-size: 0.95rem;
  color: #C7CED8;
  line-height: 1.6;
}

/* Split Section (Why Choose Us & How We Work) */
.split-why-how-section {
  padding: 100px 0;
  background-color: #0a1b2d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.split-why-how-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
}

.why-choose-us-col {
  background: #0d1f32;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
}

.why-title-mockup {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2rem;
}

.why-list-mockup {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-item-mockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #C7CED8;
  font-size: 1.05rem;
}

.why-item-mockup i {
  color: #25D366;
  font-size: 1.2rem;
  background: rgba(37, 211, 102, 0.1);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.how-we-work-col {
  display: flex;
  flex-direction: column;
}

.how-title-mockup {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 3.5rem;
  text-align: center;
}

.workflow-timeline-home {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  margin-top: 1rem;
}

.workflow-step-card {
  text-align: center;
  position: relative;
}

.workflow-step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0d1f32;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-orange);
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  position: relative;
  transition: all 0.3s ease;
}

.workflow-step-card:hover .workflow-step-circle {
  border-color: var(--premium-orange);
  background: rgba(212, 93, 0, 0.1);
  transform: scale(1.05);
}

.workflow-step-number {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--premium-orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0a1b2d;
}

.workflow-step-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.workflow-step-card p {
  font-size: 0.85rem;
  color: #C7CED8;
  line-height: 1.4;
}

/* Arrow Connections */
.workflow-step-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 35px;
  right: -25%;
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.5rem;
  font-weight: 300;
  z-index: 2;
  transition: all 0.3s ease;
}

body.rtl .workflow-step-card:not(:last-child)::after {
  content: '←';
  right: auto;
  left: -25%;
}

.workflow-step-card:hover:not(:last-child)::after {
  color: var(--premium-orange);
}

/* Areas We Serve Section */
.serve-areas-section-home {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.serve-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.serve-areas-map-box {
  background: #F3F4F6;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid #E5E7EB;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.serve-areas-map-icon {
  font-size: 5rem;
  color: var(--premium-orange);
  margin-bottom: 1.5rem;
  animation: floatPin 3s ease-in-out infinite;
}

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

.serve-districts-list-box {
  display: flex;
  flex-direction: column;
}

.serve-districts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2rem;
  margin-top: 1.5rem;
}

.district-item-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #374151;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.district-item-link:hover {
  color: var(--premium-orange);
  transform: translateX(4px);
}

body.rtl .district-item-link:hover {
  transform: translateX(-4px);
}

.district-item-link i {
  color: var(--premium-orange);
  font-size: 1rem;
}

.serve-truck-image-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: 380px;
}

.serve-truck-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQs Section */
.faqs-section-home {
  padding: 100px 0;
  background-color: #071827;
}

.faqs-grid-home {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.faq-card-home {
  background: #0d1f32;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-card-home:hover {
  border-color: rgba(212, 93, 0, 0.3);
  transform: translateY(-2px);
}

.faq-question-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.faq-q-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 93, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-orange);
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-question-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
}

.faq-answer-text {
  font-size: 0.95rem;
  color: #C7CED8;
  line-height: 1.6;
  padding-left: 3rem;
}

body.rtl .faq-answer-text {
  padding-left: 0;
  padding-right: 3rem;
}

/* Bottom CTA Banner */
.bottom-cta-banner-section {
  padding: 80px 0;
  background: #071827;
  position: relative;
  overflow: hidden;
}

.bottom-cta-banner {
  background: linear-gradient(135deg, #0d1f32 0%, #071827 100%);
  border: 1px solid rgba(212, 93, 0, 0.2);
  border-radius: 24px;
  padding: 4rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bottom-cta-banner-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.bottom-cta-banner-text p {
  font-size: 1.15rem;
  color: var(--premium-orange);
  font-weight: 600;
}

.bottom-cta-banner-actions {
  display: flex;
  gap: 1.5rem;
}

.bottom-cta-banner-actions .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

/* Responsiveness overrides */
@media (max-width: 1024px) {
  .hero-mockup-title { font-size: 2.75rem; }
  .home-features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-mockup-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-collage-item.big-item { height: 320px; }
  .what-we-buy-grid { grid-template-columns: repeat(2, 1fr); }
  .split-why-how-grid { grid-template-columns: 1fr; gap: 3rem; }
  .workflow-timeline-home { grid-template-columns: 1fr; gap: 2rem; }
  .workflow-step-card:not(:last-child)::after { display: none; }
  .serve-areas-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .serve-truck-image-box { height: 300px; }
  .faqs-grid-home { grid-template-columns: 1fr; }
  .bottom-cta-banner { flex-direction: column; gap: 2rem; text-align: center; padding: 3rem; }
}

@media (max-width: 640px) {
  .hero-mockup-title { font-size: 2.1rem; }
  .hero-mockup-ctas { flex-direction: column; gap: 1rem; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .home-features-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr; }
  .what-we-buy-grid { grid-template-columns: 1fr; }
  .serve-districts-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   GLOBAL MOBILE OPTIMIZATION & RESPONSIVENESS OVERRIDES
   ========================================================================== */

/* Force horizontal overflow prevention on html and body */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  scroll-behavior: smooth;
}

/* Ensure all images and iframe objects are responsive by default */
img, iframe, svg, video {
  max-width: 100%;
  height: auto;
}

/* Responsive container defaults */
.container {
  width: 100%;
  padding-left: 20px !important;
  padding-right: 20px !important;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

/* Breakpoint for tablets (max-width: 991px) */
@media (max-width: 991px) {
  /* Generic grid wrapper overrides for responsiveness */
  .grid, .grid-2, .grid-3, .grid-4, .row, .split, .split-2, .flex-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  
  .col, .col-1, .col-2, .col-3, .col-4 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  /* Spacing overrides */
  .section-padding {
    padding: 60px 0 !important;
  }
  
  /* Text adjustment for readability on smaller screens */
  h1 { font-size: 2.25rem !important; }
  h2 { font-size: 1.75rem !important; }
  h3 { font-size: 1.4rem !important; }
  p { font-size: 1rem !important; }
}

/* Breakpoint for mobile (max-width: 768px) { */
@media (max-width: 768px) {
  /* Header navigation overrides */
  .header {
    height: auto !important;
    padding: 10px 0 !important;
  }
  
  .nav-container {
    padding: 0 15px !important;
  }
  
  /* Ensure mobile actions stack neatly inside navigation drawer */
  .nav-actions-mobile {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 1.5rem !important;
    box-sizing: border-box;
  }

  .nav-actions-mobile .lang-selector {
    justify-content: center !important;
    margin-bottom: 10px !important;
  }

  .nav-actions-mobile .nav-cta {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 12px !important;
    border-radius: 8px !important;
  }

  /* About Us Page Custom Fixes */
  .about-hero-title {
    font-size: 2.5rem !important;
  }
  
  .about-stats-panel {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    padding: 1.5rem !important;
  }

  .about-stats-panel .about-stat-item {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding-bottom: 15px !important;
    justify-content: flex-start !important;
  }

  body.rtl .about-stats-panel .about-stat-item {
    border-left: none !important;
  }

  .about-who-we-are-split {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .about-values-row {
    grid-template-columns: 1fr !important;
  }

  .about-buy-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .about-mission-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Services Page Custom Fixes */
  .service-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .service-how-timeline {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .service-how-timeline .service-how-step::after {
    display: none !important;
  }

  .service-districts-info-box {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .service-districts-grid-badges {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .service-cta-card {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1.5rem !important;
    padding: 2.5rem 1.5rem !important;
  }

  .service-cta-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .service-cta-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .service-ticker-inner {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
  }

  .service-ticker-right {
    flex-direction: column !important;
    gap: 10px !important;
  }

  /* Contact Us Page Custom Fixes */
  .contact-new-stats-row {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .contact-new-split {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  /* Areas We Serve Page Custom Fixes */
  .areas-districts-flex {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .areas-grid-badges {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .areas-buy-flex {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .areas-why-flex {
    grid-template-columns: 1fr !important;
  }

  .areas-coverage-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Breakpoint for extra small devices (max-width: 480px) */
@media (max-width: 480px) {
  .logo img {
    max-height: 42px !important;
    height: 42px !important;
  }
  
  .about-hero-title {
    font-size: 2rem !important;
  }

  .service-districts-grid-badges, .areas-grid-badges {
    grid-template-columns: 1fr !important;
  }
  
  .btn, .nav-cta {
    padding: 10px 15px !important;
    font-size: 0.95rem !important;
  }
}

/* ==========================================================================
   NAVIGATION MENU MOBILE CONFLICT RESOLUTION
   ========================================================================== */

@media (max-width: 768px) {
  /* Override the old conflicting absolute left menu with the new premium right drawer layout */
  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: auto !important;
    right: -100% !important;
    width: 320px !important;
    height: 100vh !important;
    background: rgba(7, 24, 39, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
    padding: 3rem !important;
    z-index: 1050 !important;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
    border-left: 1px solid rgba(11, 94, 168, 0.3) !important;
    display: flex !important;
    overflow-y: auto !important;
  }

  .nav-menu.open {
    right: 0 !important;
    left: auto !important;
  }

  /* Make sure the links stack and behave correctly inside the drawer */
  .nav-link {
    display: inline-block !important;
    padding: 0.5rem 0 !important;
    border-bottom: none !important;
    font-size: 1rem !important;
    text-align: center !important;
    width: auto !important;
  }

  .nav-item-dropdown .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0.5rem 0 0 1rem !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  body.rtl .nav-item-dropdown .dropdown-menu {
    padding-left: 0 !important;
    padding-right: 1rem !important;
  }

  .dropdown-link {
    font-size: 0.9rem !important;
    color: var(--metal-silver) !important;
    padding: 0.25rem 0 !important;
  }

  .dropdown-link:hover {
    color: var(--white) !important;
  }
}

/* ==========================================================================
   AL-KHUMRA LANDING PAGE STYLES
   ========================================================================== */

/* 1. Hero Section */
.khumra-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0;
  color: var(--white);
}

.khumra-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.khumra-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45);
}

.khumra-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 24, 39, 0.92) 0%, rgba(7, 24, 39, 0.8) 50%, rgba(7, 24, 39, 0.4) 100%);
  z-index: 2;
}

.khumra-hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.khumra-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.khumra-hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 140, 42, 0.15);
  border: 1px solid rgba(255, 140, 42, 0.3);
  border-radius: 30px;
  color: var(--premium-orange);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.khumra-hero-title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.khumra-hero-title span {
  color: var(--premium-orange);
  background: linear-gradient(135deg, #FF8C2A 0%, #FFA351 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.khumra-hero-tagline {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--premium-orange);
  margin-bottom: 1.5rem;
}

.khumra-hero-desc {
  font-size: 1.1rem;
  color: var(--metal-silver);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.7;
}

.khumra-hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.khumra-bullet-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.khumra-bullet-item i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 140, 42, 0.15);
  border: 1px solid rgba(255, 140, 42, 0.4);
  color: var(--premium-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.khumra-hero-actions {
  display: flex;
  gap: 1.2rem;
}

.khumra-hero-actions .btn {
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-sm);
  font-family: 'Cairo', sans-serif;
}

.khumra-hero-actions .btn-wa {
  background: #25D366;
  color: #fff;
  border: none;
}

.khumra-hero-actions .btn-wa:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.khumra-hero-actions .btn-primary {
  background: var(--orange-gradient);
  color: #fff;
  border: none;
}

.khumra-hero-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 42, 0.5);
}

/* Glassmorphism Form Card */
.khumra-form-wrapper {
  position: relative;
  z-index: 5;
}

.khumra-form-card {
  background: rgba(7, 24, 39, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.khumra-form-card h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.45rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.5rem;
}

.khumra-form-card p {
  font-size: 0.95rem;
  color: var(--metal-silver);
  text-align: center;
  margin-bottom: 1.8rem;
}

.form-group-icon {
  position: relative;
  margin-bottom: 1.2rem;
}

.form-group-icon .icon-field {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--premium-orange);
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 5;
}

.form-input-custom {
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(199, 206, 216, 0.2);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input-custom:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--premium-orange);
  outline: none;
  box-shadow: 0 0 10px rgba(255, 140, 42, 0.2);
}

.form-input-custom option {
  background: var(--dark-navy);
  color: var(--white);
}

/* RTL Form Alignment */
body.rtl .form-group-icon .icon-field {
  right: 15px;
  left: auto;
}

body.rtl .form-group-icon .form-input-custom {
  padding-right: 45px;
  padding-left: 16px;
}

/* LTR Form Alignment */
body:not(.rtl) .form-group-icon .icon-field {
  left: 15px;
  right: auto;
}

body:not(.rtl) .form-group-icon .form-input-custom {
  padding-left: 45px;
  padding-right: 16px;
}

.btn-submit-khumra {
  background: var(--orange-gradient);
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Cairo', sans-serif;
}

.btn-submit-khumra:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 42, 0.6);
}

/* 2. Info Grid Bar */
.khumra-info-section {
  background: var(--dark-navy);
  border-top: 1px solid rgba(199, 206, 216, 0.1);
  border-bottom: 1px solid rgba(199, 206, 216, 0.1);
  padding: 2.2rem 0;
  position: relative;
  z-index: 10;
}

.khumra-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.khumra-info-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

body.rtl .khumra-info-item {
  border-left: 1px solid rgba(199, 206, 216, 0.15);
}

body:not(.rtl) .khumra-info-item {
  border-right: 1px solid rgba(199, 206, 216, 0.15);
}

.khumra-info-grid .khumra-info-item:last-child {
  border: none;
}

.khumra-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 140, 42, 0.1);
  border: 1px solid rgba(255, 140, 42, 0.2);
  color: var(--premium-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.khumra-info-text h4 {
  font-family: 'Cairo', sans-serif;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.khumra-info-text p {
  color: var(--metal-silver);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* 3. Types Section (What We Buy) */
.khumra-types-section {
  padding: 6rem 0;
  background: var(--light-bg);
}

.khumra-types-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.khumra-type-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(199, 206, 216, 0.15);
  transition: var(--transition);
}

.khumra-type-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 140, 42, 0.3);
}

.khumra-type-image {
  height: 180px;
  width: 100%;
  overflow: hidden;
}

.khumra-type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.khumra-type-card:hover .khumra-type-image img {
  transform: scale(1.08);
}

.khumra-type-content {
  padding: 1.5rem;
  text-align: center;
}

.khumra-type-content h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.15rem;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.khumra-type-card:hover .khumra-type-content h3 {
  color: var(--premium-orange);
}

.khumra-type-content p {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* 4. Why Choose Us Section */
.khumra-why-section {
  padding: 6rem 0;
  background: var(--dark-navy);
  position: relative;
}

.khumra-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.khumra-why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2.2rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.khumra-why-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 140, 42, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.khumra-why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 140, 42, 0.1);
  border: 1px solid rgba(255, 140, 42, 0.2);
  color: var(--premium-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.5rem auto;
  transition: var(--transition);
}

.khumra-why-card:hover .khumra-why-icon {
  background: var(--premium-orange);
  color: var(--white);
  box-shadow: var(--shadow-glow-orange);
}

.khumra-why-card h3 {
  font-family: 'Cairo', sans-serif;
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.khumra-why-card p {
  color: var(--metal-silver);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 5. How We Work Timeline */
.khumra-how-section {
  padding: 6rem 0;
  background: var(--white);
}

.khumra-how-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4rem;
  position: relative;
  width: 100%;
}

.khumra-step-card {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 1rem;
  z-index: 2;
}

.khumra-step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--dark-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem auto;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
  transition: var(--transition);
}

.khumra-step-card:hover .khumra-step-circle {
  background: var(--primary-blue);
  box-shadow: var(--shadow-glow-blue);
  transform: scale(1.05);
}

.khumra-step-number {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 26px;
  height: 26px;
  background: var(--premium-orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.khumra-step-card h4 {
  font-family: 'Cairo', sans-serif;
  color: var(--dark-navy);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.khumra-step-card p {
  color: var(--dark-gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Timeline Connective Arrows */
.khumra-step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  width: calc(100% - 80px);
  height: 2px;
  border-top: 2px dashed rgba(7, 24, 39, 0.2);
  z-index: 1;
}

/* Direction dependent placement of arrows */
body.rtl .khumra-step-card:not(:last-child)::after {
  right: calc(50% + 40px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='%23071827' fill-opacity='0.3' d='M10 20v-6h8v-4h-8V4l-8 8z'/%3E%3C/svg%3E") no-repeat left center;
  background-size: 12px;
  padding-left: 15px;
}

body:not(.rtl) .khumra-step-card:not(:last-child)::after {
  left: calc(50% + 40px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='%23071827' fill-opacity='0.3' d='M14 20v-6H6v-4h8V4l8 8z'/%3E%3C/svg%3E") no-repeat right center;
  background-size: 12px;
  padding-right: 15px;
}

/* 6. Bottom CTA Section */
.khumra-bottom-cta {
  padding: 5rem 0;
  background: var(--light-bg);
}

.khumra-cta-box {
  background: var(--dark-navy);
  border-radius: 20px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 94, 168, 0.2);
}

.khumra-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.khumra-cta-image {
  width: 100%;
  max-height: 250px;
  display: flex;
  justify-content: center;
}

.khumra-cta-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 15px rgba(0,0,0,0.5));
}

.khumra-cta-content {
  color: var(--white);
}

.khumra-cta-content h2 {
  font-family: 'Cairo', sans-serif;
  color: var(--premium-orange);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.khumra-cta-content h3 {
  font-family: 'Cairo', sans-serif;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.khumra-cta-content p {
  color: var(--metal-silver);
  font-size: 1rem;
  line-height: 1.6;
}

.khumra-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.khumra-cta-actions .btn {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 12px 20px;
  border-radius: 12px;
  color: var(--white);
  transition: var(--transition);
}

.khumra-cta-actions .btn i {
  font-size: 1.8rem;
}

.btn-call-cta {
  background: var(--orange-gradient);
}

.btn-call-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 42, 0.5);
}

.btn-wa-cta {
  background: #25D366;
}

.btn-wa-cta:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-cta-text {
  display: flex;
  flex-direction: column;
  text-align: right;
}

body:not(.rtl) .btn-cta-text {
  text-align: left;
}

.btn-cta-sub {
  font-size: 0.8rem;
  opacity: 0.9;
  font-family: 'Cairo', sans-serif;
}

.btn-cta-num {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: Cairo, Outfit, sans-serif;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .khumra-hero-grid {
    gap: 2rem;
  }
  
  .khumra-cta-box {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .khumra-cta-image {
    display: none;
  }
}

@media (max-width: 992px) {
  .khumra-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .khumra-hero-content {
    text-align: center;
  }
  
  .khumra-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .khumra-hero-bullets {
    align-items: center;
  }
  
  .khumra-hero-actions {
    justify-content: center;
  }
  
  .khumra-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .khumra-info-item {
    border: none !important;
  }
  
  .khumra-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .khumra-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .khumra-how-timeline {
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
  }
  
  .khumra-step-card {
    flex: none;
    width: 45%;
  }
  
  .khumra-step-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .khumra-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .khumra-why-grid {
    grid-template-columns: 1fr;
  }
  
  .khumra-cta-box {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .khumra-cta-content {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .khumra-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .khumra-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .khumra-types-grid {
    grid-template-columns: 1fr;
  }
  
  .khumra-step-card {
    width: 100%;
  }
}
}

/* ==========================================================================
   JEDDAH IRON SCRAP PAGE REDESIGN STYLES
   ========================================================================== */

/* 1. Hero Section */
.jeddah-iron-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0;
  color: var(--white);
}

.jeddah-iron-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.jeddah-iron-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.38);
}

.jeddah-iron-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 24, 39, 0.95) 0%, rgba(7, 24, 39, 0.85) 60%, rgba(7, 24, 39, 0.45) 100%);
  z-index: 2;
}

.jeddah-iron-hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.jeddah-iron-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.jeddah-iron-hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 140, 42, 0.18);
  border: 1px solid rgba(255, 140, 42, 0.35);
  border-radius: 30px;
  color: var(--premium-orange);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.jeddah-iron-hero-title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.jeddah-iron-hero-title span {
  color: var(--premium-orange);
  background: linear-gradient(135deg, #FF8C2A 0%, #FFA351 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jeddah-iron-hero-desc {
  font-size: 1.1rem;
  color: var(--metal-silver);
  margin-bottom: 2.5rem;
  max-width: 650px;
  line-height: 1.75;
}

.jeddah-iron-hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Form Wrapper & Call Widget */
.jeddah-iron-form-wrapper {
  position: relative;
  z-index: 5;
}

.jeddah-iron-call-widget {
  position: absolute;
  top: -85px;
  left: 0;
  background: rgba(7, 24, 39, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  z-index: 10;
}

body.rtl .jeddah-iron-call-widget {
  left: 0;
  right: auto;
}

body:not(.rtl) .jeddah-iron-call-widget {
  right: 0;
  left: auto;
}

.phone-pulse-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--premium-orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  animation: phonePulse 1.8s infinite ease-in-out;
}

@keyframes phonePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 42, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 140, 42, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 42, 0);
  }
}

.widget-txt {
  display: flex;
  flex-direction: column;
}

.widget-sub {
  font-size: 0.75rem;
  color: var(--metal-silver);
}

.widget-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--premium-orange);
  font-family: Outfit, Cairo, sans-serif;
  text-decoration: none;
}

.widget-tag {
  font-size: 0.7rem;
  color: #25D366;
  font-weight: 700;
}

.jeddah-iron-form-card {
  background: rgba(7, 24, 39, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  margin-top: 1rem;
}

.jeddah-iron-form-card h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.35rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.4rem;
}

.jeddah-iron-form-card p {
  font-size: 0.9rem;
  color: var(--metal-silver);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* 2. Info Section */
.jeddah-iron-info-section {
  background: var(--dark-navy);
  border-top: 1px solid rgba(199, 206, 216, 0.1);
  border-bottom: 1px solid rgba(199, 206, 216, 0.1);
  padding: 2.2rem 0;
  position: relative;
  z-index: 10;
}

.jeddah-iron-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.jeddah-iron-info-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

body.rtl .jeddah-iron-info-item {
  border-left: 1px solid rgba(199, 206, 216, 0.15);
}

body:not(.rtl) .jeddah-iron-info-item {
  border-right: 1px solid rgba(199, 206, 216, 0.15);
}

.jeddah-iron-info-grid .jeddah-iron-info-item:last-child {
  border: none;
}

/* 3. Types Grid (6 items) */
.jeddah-iron-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.jeddah-iron-type-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(199, 206, 216, 0.15);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.jeddah-iron-type-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 140, 42, 0.35);
}

.card-img-wrapper {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.jeddah-iron-type-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-badge-icon {
  position: absolute;
  bottom: -20px;
  left: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
  z-index: 5;
  transition: var(--transition);
}

body.rtl .card-badge-icon {
  left: auto;
  right: 25px;
}

.jeddah-iron-type-card:hover .card-badge-icon {
  background: var(--premium-orange);
  box-shadow: var(--shadow-glow-orange);
}

.card-desc-content {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: right;
  flex-grow: 1;
}

body:not(.rtl) .card-desc-content {
  text-align: left;
}

.card-desc-content h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.25rem;
  color: var(--dark-navy);
  margin-bottom: 0.6rem;
}

.card-desc-content p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

/* 4. Why Choose Us & How It Works Split */
.jeddah-iron-why-how-section {
  padding: 6rem 0;
  background: var(--white);
}

.jeddah-iron-why-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.col-main-title {
  font-family: 'Cairo', sans-serif;
  font-size: 2rem;
  color: var(--dark-navy);
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.8rem;
  border-bottom: 3px solid rgba(255, 140, 42, 0.2);
}

.col-main-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 80px;
  height: 3px;
  background: var(--premium-orange);
}

body:not(.rtl) .col-main-title::after {
  right: auto;
  left: 0;
}

/* Timeline vertical layout (Mockup steps) */
.jeddah-iron-how-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.jeddah-iron-how-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 15px;
  width: 2px;
  border-left: 2px dashed rgba(7, 24, 39, 0.15);
  z-index: 1;
}

body.rtl .jeddah-iron-how-timeline::before {
  right: 27px;
  left: auto;
}

body:not(.rtl) .jeddah-iron-how-timeline::before {
  left: 27px;
  right: auto;
}

.jeddah-how-step {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  position: relative;
  z-index: 2;
}

.how-step-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--dark-navy);
  border: 3px solid var(--white);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
}

.jeddah-how-step:hover .how-step-badge {
  background: var(--primary-blue);
  box-shadow: var(--shadow-glow-blue);
  transform: scale(1.05);
}

.how-step-badge .step-num {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 20px;
  height: 20px;
  background: var(--premium-orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.2px solid var(--white);
}

.how-step-txt {
  padding-top: 4px;
}

.how-step-txt h4 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.15rem;
  color: var(--dark-navy);
  margin-bottom: 0.4rem;
}

.how-step-txt p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

/* Why choose us features list */
.jeddah-why-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-feat-card {
  background: var(--light-bg);
  border: 1px solid rgba(199, 206, 216, 0.15);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: var(--transition);
}

.why-feat-card:hover {
  background: var(--white);
  border-color: rgba(255, 140, 42, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-feat-card .feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 140, 42, 0.1);
  color: var(--premium-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.why-feat-card:hover .feat-icon {
  background: var(--premium-orange);
  color: var(--white);
}

.feat-txt h4 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.1rem;
  color: var(--dark-navy);
  margin-bottom: 0.3rem;
}

.feat-txt p {
  font-size: 0.88rem;
  color: var(--dark-gray);
  line-height: 1.4;
}

/* 5. Areas Split Section */
.jeddah-iron-areas-section {
  padding: 6rem 0;
  background: var(--light-bg);
}

.jeddah-areas-split-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  margin-top: 3rem;
}

.areas-badges-list-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(199, 206, 216, 0.15);
  box-shadow: var(--shadow-sm);
}

.badges-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.area-badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 8px 16px;
  background: var(--light-bg);
  border: 1px solid rgba(199, 206, 216, 0.2);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-navy);
  font-family: 'Cairo', sans-serif;
  transition: var(--transition);
}

.area-badge-item i {
  color: var(--premium-orange);
}

.area-badge-item:hover {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.area-badge-item:hover i {
  color: var(--white);
}

.areas-all-desc {
  font-family: 'Cairo', sans-serif;
  font-size: 1.1rem;
  color: var(--dark-gray);
  font-weight: 700;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(199, 206, 216, 0.15);
}

.areas-coverage-map-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='grid' width='10' height='10' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 10 0 L 0 0 0 10' fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='%23071827'/%3E%3Crect width='100' height='100' fill='url(%23grid)'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%23ff8c2a' stroke-opacity='0.15' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='15' fill='none' stroke='%23ff8c2a' stroke-opacity='0.25' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='3' fill='%23ff8c2a'/%3E%3C/svg%3E");
  background-size: cover;
  border: 1px solid rgba(11, 94, 168, 0.2);
  box-shadow: var(--shadow-md);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-overlay-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(11, 94, 168, 0.3) 0%, transparent 80%);
  pointer-events: none;
}

.map-card-txt {
  position: relative;
  z-index: 5;
  color: var(--white);
}

.map-card-txt h3 {
  font-family: 'Cairo', sans-serif;
  color: var(--premium-orange);
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.map-card-txt p {
  color: var(--metal-silver);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 6. Prices Table & FAQ Split */
.jeddah-iron-prices-faq-section {
  padding: 6rem 0;
  background: var(--white);
}

.prices-faq-split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
}

/* Prices items vertical grid */
.prices-subtitle {
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-top: -1.8rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.prices-items-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price-val-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light-bg);
  border: 1px solid rgba(199, 206, 216, 0.18);
  border-radius: 8px;
  padding: 12px 18px;
  transition: var(--transition);
}

.price-val-card:hover {
  background: var(--white);
  border-color: rgba(255, 140, 42, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateX(-3px);
}

body:not(.rtl) .price-val-card:hover {
  transform: translateX(3px);
}

.p-card-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-navy);
  font-family: 'Cairo', sans-serif;
}

.p-card-left i {
  color: var(--premium-orange);
  width: 25px;
  text-align: center;
}

.p-card-btn {
  padding: 6px 14px;
  background: var(--dark-navy);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  text-decoration: none;
  transition: var(--transition);
}

.price-val-card:hover .p-card-btn {
  background: var(--premium-orange);
}

/* Custom Accordion FAQ styling */
.faq-row-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: flex-start;
}

.faq-accordion-custom {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-accordion-item {
  background: var(--light-bg);
  border: 1px solid rgba(199, 206, 216, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-accordion-item.active {
  border-color: rgba(255, 140, 42, 0.25);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-accordion-header {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: right;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-navy);
  font-family: 'Cairo', sans-serif;
}

body:not(.rtl) .faq-accordion-header {
  text-align: left;
}

.faq-accordion-header i {
  color: var(--dark-gray);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.faq-accordion-item.active .faq-accordion-header i {
  transform: rotate(180deg);
  color: var(--premium-orange);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-accordion-body p {
  padding: 0 20px 16px 20px;
  font-size: 0.92rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

.faq-crane-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(199, 206, 216, 0.15);
}

.faq-crane-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 7. Bottom Stats CTA Section */
.jeddah-iron-bottom-cta-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.cta-box-premium {
  background: var(--dark-navy);
  border-radius: 20px;
  padding: 4rem 3rem;
  color: var(--white);
  border: 1px solid rgba(11, 94, 168, 0.2);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-box-premium h2 {
  font-family: 'Cairo', sans-serif;
  color: var(--premium-orange);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.cta-sub {
  color: var(--metal-silver);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.cta-stats-row {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2.5rem;
}

.cta-stat-item h3 {
  font-family: Outfit, Cairo, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.cta-stat-item p {
  color: var(--metal-silver);
  font-size: 0.95rem;
}

.cta-btns-flex {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .jeddah-iron-hero-grid {
    gap: 3rem;
  }
  
  .prices-faq-split-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .faq-crane-image {
    display: none;
  }
  
  .faq-row-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .jeddah-iron-hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .jeddah-iron-hero-content {
    text-align: center;
  }
  
  .jeddah-iron-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .jeddah-iron-hero-bullets {
    align-items: center;
  }
  
  .jeddah-iron-call-widget {
    position: static;
    margin-bottom: 2rem;
    display: inline-flex;
  }
  
  .jeddah-iron-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .jeddah-iron-info-item {
    border: none !important;
  }
  
  .jeddah-iron-why-how-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .jeddah-areas-split-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-stats-row {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .jeddah-iron-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .jeddah-why-features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .jeddah-iron-info-grid {
    grid-template-columns: 1fr;
  }
  
  .jeddah-iron-types-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-stats-row {
    grid-template-columns: 1fr;
  }
  
  .cta-btns-flex {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .cta-btns-flex .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   JEDDAH COPPER SCRAP LANDING PAGE STYLES (MOCKUP COMPLIANCE)
   ========================================================================== */

/* 1. Hero Section Feature Bullets (Horizontal Grid) */
.copper-hero-bullets-row {
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.copper-hero-bullet-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  width: 90px;
}

.copper-hero-bullet-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 140, 42, 0.6);
  background: rgba(7, 24, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-orange);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.copper-hero-bullet-card:hover .copper-hero-bullet-icon-circle {
  background: var(--premium-orange);
  color: var(--white);
  border-color: var(--premium-orange);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 140, 42, 0.4);
}

.copper-hero-bullet-text {
  font-family: 'Cairo', sans-serif;
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.3;
}

/* 2. Info Grid Bar Stats Icons styling */
.copper-stat-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 140, 42, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-orange);
  font-size: 1.05rem;
  flex-shrink: 0;
  background: rgba(255, 140, 42, 0.05);
}

.copper-info-stat-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.8rem !important;
}

/* 3. Center types grid badge icon */
.card-badge-icon {
  position: absolute;
  bottom: -22px;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
  z-index: 5;
  transition: var(--transition);
}

body.rtl .card-badge-icon {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}

/* 4. Horizontal timeline workflow steps */
.copper-horizontal-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  margin-top: 2rem;
  width: 100%;
}

.copper-horizontal-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50px;
  right: 50px;
  height: 2px;
  border-top: 2px dashed rgba(7, 24, 39, 0.12);
  z-index: 1;
}

.copper-step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.copper-step-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dark-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.copper-step-icon-wrapper i {
  color: var(--premium-orange);
}

.copper-step-item:hover .copper-step-icon-wrapper {
  background: var(--primary-blue);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-blue);
}

.copper-step-number-badge {
  position: absolute;
  bottom: -32px;
  font-family: Outfit, Cairo, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-navy);
  border-bottom: 2px solid var(--premium-orange);
  padding-bottom: 2px;
}

.copper-step-content {
  margin-top: 1.5rem;
}

.copper-step-content h4 {
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.4rem;
}

.copper-step-content p {
  font-size: 0.8rem;
  color: var(--dark-gray);
  line-height: 1.4;
  max-width: 140px;
  margin: 0 auto;
}

/* 5. Areas map and list split view */
.areas-map-and-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.areas-map-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.areas-map-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 6. Media responsive overrides */
@media (max-width: 1200px) {
  .copper-hero-bullets-row {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .copper-info-stat-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .copper-horizontal-steps {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
  }
  .copper-horizontal-steps::before {
    display: none;
  }
  .copper-step-item {
    width: 100%;
  }
  .copper-step-content p {
    max-width: 250px;
  }
  .areas-map-and-list {
    grid-template-columns: 1fr !important;
  }
  .areas-map-image-wrapper {
    height: 200px !important;
  }
}

/* Contextual Internal Inline Links Styling */
.inline-link {
  color: #f97316 !important;
  text-decoration: underline !important;
  font-weight: 700 !important;
  transition: color 0.3s ease;
}
.inline-link:hover {
  color: #ea580c !important;
  text-decoration: underline !important;
}

/* ==========================================================================
   GOOGLE REVIEWS SECTION STYLING
   ========================================================================== */
.google-reviews-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.google-reviews-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 94, 168, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.google-reviews-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Overall Rating Badge */
.overall-rating-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: #ffffff;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(11, 94, 168, 0.08);
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.google-logo-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #071827;
}

.stars-orange {
  display: flex;
  gap: 0.2rem;
  color: #f59e0b; /* Premium Amber Gold */
}

.reviews-count {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.write-review-btn {
  background: linear-gradient(135deg, #0b5ea8 0%, #084984 100%);
  color: #ffffff !important;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(11, 94, 168, 0.2);
}

.write-review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 94, 168, 0.3);
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ea8 100%);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 5;
}

/* Review Card */
.review-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(11, 94, 168, 0.08);
  border-color: rgba(11, 94, 168, 0.2);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  position: relative;
}

.user-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(11, 94, 168, 0.15);
  box-shadow: 0 4px 10px rgba(11, 94, 168, 0.1);
  transition: border-color 0.3s ease;
}

.review-card:hover .user-avatar-img {
  border-color: #0b5ea8;
}

.user-avatar-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b5ea8 0%, #071827 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(11, 94, 168, 0.15);
}

.user-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #071827;
  margin: 0 0 0.2rem 0;
}

.verified-badge {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.2rem;
}

body.rtl .verified-badge {
  right: auto;
  left: 0;
}

.review-card-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

body.rtl .review-card-body {
  text-align: right;
}

.review-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #9ca3af;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 1rem;
}

.verified-text {
  color: #10b981; /* Premium Green */
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .overall-rating-badge {
    border-radius: 24px;
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .google-reviews-section {
    padding: 4rem 0;
  }
}

/* ==========================================================================
   GLOBAL LOCATION MAP SECTION STYLING
   ========================================================================== */
.global-location-section {
  padding: 5rem 0;
  background-color: #f9fafb;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 5;
}

.location-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.location-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #071827;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

body.rtl .location-title {
  text-align: center;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  display: block;
}

@media (max-width: 768px) {
  .global-location-section {
    padding: 3rem 0;
  }
  .location-card {
    padding: 1.5rem;
    border-radius: 16px;
  }
  .location-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
  .map-container iframe {
    height: 300px;
  }
}


