/* ==========================================================================
   Clean Corporate Industrial Design - Primary Brand: Industrial Yellow
   Color Hierarchy:
   - Primary Brand (Dominant Accent): Bold Industrial Yellow (#f59e0b)
   - Base Surfaces: Clean Daylight White (#ffffff) & Soft Off-White (#f8fafc)
   - Typography & Structure: Deep Charcoal (#0f172a)
   - Direct Chat: WhatsApp Green (#25d366)
   ========================================================================== */

:root {
  /* Clean Backgrounds */
  --bg-white: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-surface: #f1f5f9;
  
  /* Primary Brand Color: Industrial Yellow */
  --brand-yellow: #f59e0b;
  --brand-yellow-hover: #d97706;
  --brand-yellow-light: #fef3c7;
  --brand-yellow-border: #fcd34d;
  --brand-yellow-dark: #b45309;

  /* Dark Contrast & Typography */
  --color-primary: #0f172a;       /* Deep Slate / Charcoal */
  --color-primary-light: #1e293b;
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;

  /* Action: Standard WhatsApp */
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #1eb956;

  /* Borders & Shadows */
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-yellow: 0 6px 18px rgba(245, 158, 11, 0.28);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;

  --font-family: 'Cairo', system-ui, -apple-system, sans-serif;
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  direction: rtl;
  text-align: right;
  font-family: var(--font-family);
  background-color: var(--bg-white);
  color: var(--text-body);
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-white);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 70px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ==========================================================================
   Buttons & CTAs (Yellow is Primary)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn:active {
  transform: scale(0.99);
}

/* Primary Button: Industrial Yellow */
.btn-primary, .btn-gold {
  background-color: var(--brand-yellow);
  color: var(--color-primary);
  border-color: #eab308;
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}

.btn-primary:hover, .btn-gold:hover {
  background-color: var(--brand-yellow-hover);
  color: #ffffff;
  border-color: var(--brand-yellow-hover);
  box-shadow: var(--shadow-yellow);
}

/* Secondary Button: Clean & Elegant WhatsApp (White with Green border & text) */
.btn-whatsapp {
  background-color: #ffffff;
  color: #16a34a;
  border: 1.5px solid #22c55e;
  font-weight: 700;
}

.btn-whatsapp svg {
  fill: currentColor;
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}

.btn-whatsapp:hover {
  background-color: #f0fdf4;
  color: #15803d;
  border-color: #16a34a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.btn-whatsapp:hover svg {
  transform: scale(1.1);
}

/* Solid WhatsApp (Used only for Floating badge and main conversion strips) */
.btn-whatsapp-solid {
  background-color: var(--color-whatsapp);
  color: #ffffff;
  border: none;
}

.btn-whatsapp-solid svg {
  fill: #ffffff;
}

.btn-whatsapp-solid:hover {
  background-color: var(--color-whatsapp-hover);
  color: #ffffff;
}

/* Outline Button */
.btn-outline {
  background-color: #ffffff;
  color: var(--color-primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background-color: var(--brand-yellow-light);
  border-color: var(--brand-yellow);
  color: var(--color-primary);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  background: var(--brand-yellow-light);
  border: 1px solid var(--brand-yellow-border);
  color: var(--brand-yellow-dark);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ==========================================================================
   Top Header & Notification Bar
   ========================================================================== */
.top-bar {
  background: #f8fafc;
  color: var(--text-body);
  border-bottom: 2px solid var(--brand-yellow);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-info-list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--text-muted);
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.top-phone-link {
  color: var(--color-primary);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  direction: ltr;
}

.top-phone-link:hover {
  color: var(--brand-yellow-dark);
}

/* ==========================================================================
   Main Header & Navigation
   ========================================================================== */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Professional Typographic Wordmark Logo */
.logo-title {
  font-family: 'Alexandria', 'Cairo', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.6px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: transform 0.2s ease;
  user-select: none;
}

.logo-title:hover {
  transform: translateY(-1px);
}

.logo-title .brand-word {
  color: var(--color-primary);
  font-weight: 900;
}

.logo-title .brand-accent {
  color: var(--brand-yellow-dark);
  font-weight: 900;
}

.logo-title .brand-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: var(--brand-yellow);
  border-radius: 50%;
  margin-inline-start: 2px;
  margin-bottom: 2px;
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.4);
}

/* Footer variant */
.site-footer .logo-title .brand-word {
  color: #ffffff;
}

.site-footer .logo-title .brand-accent {
  color: var(--brand-yellow);
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  color: var(--text-body);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-link:hover {
  color: var(--brand-yellow-dark);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  background: linear-gradient(180deg, #fefce8 0%, #ffffff 70%);
  padding: 3.5rem 0 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid var(--brand-yellow-border);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-title span.accent-text {
  color: var(--brand-yellow-dark);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.8rem;
}

.hero-direct-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--color-primary);
}

.hero-direct-phone span.num {
  font-size: 1.15rem;
  font-weight: 800;
  direction: ltr;
  color: var(--brand-yellow-dark);
}

.hero-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border-color);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-body);
}

.guarantee-item svg {
  color: var(--brand-yellow-dark);
  width: 18px;
  height: 18px;
}

/* Hero Side Card */
.hero-card {
  background: #ffffff;
  border: 2px solid var(--brand-yellow-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.hero-card-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.hero-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.stat-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brand-yellow-dark);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */
.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 1.4rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-yellow-light);
  border: 1px solid var(--brand-yellow-border);
  color: var(--brand-yellow-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-primary);
}

.trust-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Scrap Categories (Services)
   ========================================================================== */
.services-section {
  padding: 4.5rem 0;
  background: var(--bg-subtle);
}

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

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.service-media {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--brand-yellow);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.service-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.service-tag {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-body);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.service-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 0.9rem;
}

/* ==========================================================================
   Clean Calculator Section
   ========================================================================== */
.calculator-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.calc-box {
  background: #ffffff;
  border: 2px solid var(--brand-yellow-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .calc-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

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

.calc-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.calc-input, .calc-select {
  width: 100%;
  background: #ffffff;
  border: 2px solid #0f172a;
  border-radius: var(--radius-md);
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: #0f172a;
  transition: all 0.2s ease-in-out;
}

.calc-input:focus, .calc-select:focus {
  outline: none;
  border-color: #ea580c !important;
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.25) !important;
  background-color: #fffaf0 !important;
}

.calc-result {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.calc-result-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-primary);
  margin: 0.5rem 0;
}

.calc-result-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-section {
  padding: 4.5rem 0;
  background: var(--bg-subtle);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-yellow);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem auto;
  border-radius: var(--radius-md);
  background: var(--brand-yellow);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

.why-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.why-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   Steps (How it Works)
   ========================================================================== */
.steps-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.2rem;
  text-align: center;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-yellow);
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem auto;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* ==========================================================================
   Coverage Areas
   ========================================================================== */
.coverage-section {
  padding: 4.5rem 0;
  background: var(--bg-subtle);
}

.coverage-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.city-group {
  margin-bottom: 1.8rem;
}

.city-group:last-child {
  margin-bottom: 0;
}

.city-title-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.city-badge {
  background: var(--brand-yellow);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
}

.city-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-item {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
}

.tag-item:hover {
  border-color: var(--brand-yellow);
  color: var(--brand-yellow-dark);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item.active {
  background: #ffffff;
  border: 2px solid #f59e0b;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.12);
}

.faq-btn {
  width: 100%;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 800;
  text-align: right;
  cursor: pointer;
  gap: 1rem;
}

html[dir="ltr"] .faq-btn {
  text-align: left;
}

.faq-arrow {
  font-size: 0.8rem;
  transition: transform 0.2s ease-in-out;
  color: var(--brand-yellow-hover);
}

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

.faq-ans {
  padding: 0 1.3rem 1.25rem 1.3rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-ans {
  display: block;
}

/* ==========================================================================
   Callout Banner
   ========================================================================== */
.callout-banner {
  background: var(--color-primary);
  border-top: 3px solid var(--brand-yellow);
  color: #ffffff;
  padding: 3.5rem 0;
  text-align: center;
}

.callout-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.callout-subtitle {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 1.8rem auto;
}

.callout-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ==========================================================================
   Contact Section & Form
   ========================================================================== */
.contact-section {
  padding: 4.5rem 0;
  background: var(--bg-subtle);
}

.contact-section {
  padding: 4.5rem 0;
  background: var(--bg-subtle, #f8fafc);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1.15fr 1fr;
  }
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
}

.contact-card-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--color-primary, #0f172a);
  text-align: center;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.contact-card-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted, #64748b);
  text-align: center;
  margin-bottom: 1.6rem;
  line-height: 1.6;
}

.contact-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.contact-badge {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.35rem 1.25rem;
  border-radius: 50px;
}

.contact-boxes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-box-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.15rem 1.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 76px;
}

.contact-box-item:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.contact-box-icon {
  position: absolute;
  right: 1.5rem;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
}

html[dir="ltr"] .contact-box-icon {
  right: auto;
  left: 1.5rem;
}

.contact-box-icon.whatsapp-icon {
  color: #10b981;
}

.contact-box-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.contact-box-label {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 700;
}

.contact-box-val {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: 0.3px;
}

.contact-box-val.contact-email {
  font-size: 0.95rem;
  font-weight: 800;
  word-break: break-all;
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
  text-align: right;
}

html[dir="ltr"] .form-group label {
  text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  color: #0f172a;
  background: #ffffff;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-group textarea {
  min-height: 85px;
  resize: vertical;
}

.btn-contact-submit {
  width: 100%;
  background: #f59e0b;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  padding: 0.95rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 900;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.25rem;
}

.btn-contact-submit:hover {
  background: #d97706;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-contact-submit .btn-arrow {
  font-size: 1.2rem;
  line-height: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-primary);
  color: #94a3b8;
  padding: 3.5rem 0 1.5rem 0;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: var(--brand-yellow);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.82rem;
}

/* ==========================================================================
   Floating & Sticky Action Conversion Bar
   ========================================================================== */
/* Desktop Floating WhatsApp Badge (Left side for RTL) */
.desktop-floating-wa {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  z-index: 999;
  background: var(--color-whatsapp);
  color: #ffffff;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  font-weight: 700;
  font-size: 0.95rem;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 992px) {
  .desktop-floating-wa {
    display: inline-flex;
  }
}

.desktop-floating-wa:hover {
  background: var(--color-whatsapp-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 0.6rem 0.8rem;
  display: flex;
  gap: 0.6rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-sticky-bar .btn {
  flex: 1;
  padding: 0.7rem 0.4rem;
  font-size: 0.92rem;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 10000;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-primary);
}

.drawer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.drawer-nav-item {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ==========================================================================
   Subpage / About Us Page Styles
   ========================================================================== */
.inner-hero {
  background: #fefce8;
  padding: 4rem 0 3.25rem 0;
  border-bottom: 1px solid #fef08a;
  text-align: center;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.breadcrumbs a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--brand-yellow-hover, #d97706);
}

.inner-hero-title {
  font-size: 2.75rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.inner-hero-desc {
  font-size: 1.15rem;
  color: #475569;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 600;
}

/* Story Section */
.story-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .story-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.story-text-lead {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.story-paragraphs p {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-media-box {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.story-media-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.story-badge-overlay {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #ffffff;
  border: 2px solid var(--brand-yellow);
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.story-badge-overlay .years {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.story-badge-overlay .desc {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Vision Mission Values */
.pillars-section {
  padding: 4.5rem 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-yellow);
}

.pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--brand-yellow);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

.pillar-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}

.pillar-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* Capabilities & Fleet */
.capabilities-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

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

@media (min-width: 640px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.capability-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  text-align: center;
  transition: var(--transition);
}

.capability-card:hover {
  background: #ffffff;
  border-color: var(--brand-yellow);
  box-shadow: var(--shadow-md);
}

.capability-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.capability-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.capability-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Vision 2030 Sustainability Box */
.vision2030-section {
  padding: 4.5rem 0;
  background: var(--bg-subtle);
}

.vision2030-box {
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .vision2030-box {
    grid-template-columns: 1.5fr 1fr;
  }
}

.vision2030-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #15803d;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.vision2030-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}

.vision2030-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

.vision2030-stat-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

/* ==========================================================================
   Services Page Detailed Layouts
   ========================================================================== */
.services-detail-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.service-row-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-row-card:hover {
  border-color: var(--brand-yellow);
  box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
  .service-row-card {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .service-row-card.reverse {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.service-row-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  background: var(--bg-surface);
  position: relative;
}

.service-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-row-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
}

.service-row-desc {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

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

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  background: var(--bg-subtle);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.spec-item svg {
  color: var(--brand-yellow-dark);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.service-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* B2B Contracts Banner */
.b2b-section {
  padding: 4.5rem 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.b2b-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .b2b-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.b2b-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.b2b-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-yellow-light);
  border: 1px solid var(--brand-yellow-border);
  color: var(--brand-yellow-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.b2b-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.b2b-text {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ==========================================================================
   Language Switcher & LTR Multi-language Support
   ========================================================================== */
.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  background: #ffffff;
  color: var(--color-primary);
  border: 1.5px solid var(--border-color);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.lang-switcher-btn:hover {
  background: var(--brand-yellow-light);
  border-color: var(--brand-yellow-border);
  color: var(--brand-yellow-dark);
  transform: translateY(-1px);
}

html[dir="ltr"] {
  direction: ltr;
  text-align: left;
  font-family: 'Cairo', 'Inter', system-ui, -apple-system, sans-serif;
}

html[dir="ltr"] .top-phone-link {
  direction: ltr;
}

html[dir="ltr"] .mobile-drawer {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}

html[dir="ltr"] .mobile-drawer.open {
  transform: translateX(0);
}

/* ==========================================================================
   Inputs & Forms (Solid Black Border, Vibrant Orange on Focus/Typing)
   ========================================================================== */
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="password"],
textarea,
select,
.calc-input,
.calc-select {
  border: 2px solid #0f172a !important;
  background-color: #ffffff;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus,
.calc-input:focus,
.calc-select:focus {
  border-color: #ea580c !important;
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.22) !important;
}

/* ==========================================================================
   Single Service Specific Styles (service-single.html)
   ========================================================================== */
.single-service-layout {
  padding: 3.5rem 0 5rem;
  background: #ffffff;
}

.single-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .single-service-grid {
    grid-template-columns: 1fr 340px;
  }
}

.service-main-image {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.service-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.service-intro-lead {
  font-size: 1.12rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-section-subhead {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 2.5rem 0 1.2rem;
  position: relative;
  padding-right: 1rem;
}

html[dir="ltr"] .service-section-subhead {
  padding-right: 0;
  padding-left: 1rem;
}

.service-section-subhead::before {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  background: var(--brand-yellow);
  border-radius: 2px;
}

html[dir="ltr"] .service-section-subhead::before {
  right: auto;
  left: 0;
}

.subtypes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

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

.subtype-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  transition: var(--transition);
}

.subtype-card:hover {
  border-color: var(--brand-yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.subtype-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.subtype-title svg {
  color: var(--brand-yellow-dark);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.subtype-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Process Flow */
.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  text-align: center;
  position: relative;
}

.process-num-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-yellow);
  color: var(--color-primary);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
}

.process-step-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.process-step-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

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

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
}

.spec-item svg {
  color: var(--brand-yellow-dark);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Single Page Sidebar */
.single-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.sidebar-widget {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--brand-yellow);
}

.sidebar-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sidebar-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.sidebar-service-item:hover, .sidebar-service-item.active {
  background: var(--brand-yellow-light);
  border-color: var(--brand-yellow);
  color: var(--color-primary);
  transform: translateX(-4px);
}

html[dir="ltr"] .sidebar-service-item:hover, html[dir="ltr"] .sidebar-service-item.active {
  transform: translateX(4px);
}

.sidebar-service-item svg {
  color: var(--brand-yellow-dark);
  width: 16px;
  height: 16px;
}

/* Available Cities Widget in Sidebar */
.cities-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.city-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

.city-pill-link:hover, .city-pill-link.active {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow-dark);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.25);
}

.cta-card-box {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  text-align: center;
}

.cta-card-box h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.cta-card-box p {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

/* ==========================================================================
   Navigation Dropdowns (Services & Cities)
   ========================================================================== */
.nav-dropdown-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-item .dropdown-icon {
  transition: transform 0.2s ease;
}

.nav-dropdown-item:hover .dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 270px;
  background: #ffffff;
  border: 2px solid #0f172a;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1200;
}

html[dir="ltr"] .nav-dropdown-panel {
  right: auto;
  left: 0;
}

.dropdown-cities-panel {
  min-width: 320px;
}

.nav-dropdown-item:hover .nav-dropdown-panel,
.nav-dropdown-panel:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #64748b;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 0.45rem;
}

.dropdown-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dropdown-link-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-link-item:hover {
  background: #fff7ed;
  color: #ea580c;
}

.dropdown-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ea580c;
  flex-shrink: 0;
}

.dropdown-cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.dropdown-city-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: all 0.15s ease;
}

.dropdown-city-item:hover {
  background: #f8fafc;
  color: #ea580c;
  transform: translateX(-2px);
}

html[dir="ltr"] .dropdown-city-item:hover {
  transform: translateX(2px);
}

.dropdown-panel-footer {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid #f1f5f9;
}

.dropdown-all-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  font-weight: 800;
  color: #ea580c;
  text-decoration: none;
  padding: 0.35rem 0.4rem;
  border-radius: 4px;
}

.dropdown-all-btn:hover {
  text-decoration: underline;
}
