@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================================================
   Abraj Safety Systems & Equipment - Modern Industrial CSS Architecture
   مؤسسة أبراج لأجهزة السلامة - التنسيقات العصرية
   ========================================================================== */

:root {
  --primary-orange: #F95700;
  --primary-orange-hover: #E04800;
  --primary-orange-light: #FFF4ED;
  --primary-orange-glow: rgba(249, 87, 0, 0.35);
  
  --navy-deep: #070D1E;
  --navy-dark: #0A1128;
  --navy-surface: #0F172A;
  --navy-card: #1E293B;
  --navy-border: #334155;
  
  --bg-light: #F8FAFC;
  --bg-alt: #F1F5F9;
  --bg-white: #FFFFFF;
  
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-sub: #475569;
  --text-light: #F8FAFC;
  --text-light-muted: #94A3B8;
  
  --border-light: #E2E8F0;
  --border-card: #CBD5E1;
  
  --status-success: #10B981;
  --status-info: #0284C7;
  --status-warning: #F59E0B;
  --status-danger: #EF4444;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 45px rgba(15, 23, 42, 0.18);
  --shadow-orange: 0 8px 25px rgba(249, 87, 0, 0.35);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  direction: rtl;
  text-align: right;
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--bg-light);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-sm {
  max-width: 960px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.3;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--primary-orange-light);
  color: var(--primary-orange);
  border: 1px solid rgba(249, 87, 0, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-tag.dark {
  background-color: rgba(249, 87, 0, 0.15);
  border-color: rgba(249, 87, 0, 0.3);
  color: #FFA066;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title.white {
  color: var(--text-light);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
}

.section-desc.white {
  color: var(--text-light-muted);
}

.section-header {
  margin-bottom: 48px;
}

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

.section-header.center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: #FFFFFF;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249, 87, 0, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-navy {
  background-color: var(--navy-surface);
  color: #FFFFFF;
  border: 1px solid var(--navy-border);
}

.btn-navy:hover {
  background-color: var(--navy-card);
  border-color: var(--primary-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-white {
  background-color: #FFFFFF;
  color: var(--navy-dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--bg-light);
  color: var(--primary-orange);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-light);
}

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

.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-white:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

/* ==========================================================================
   Header & Navigation (Ultra-Refined)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.header-topbar {
  background-color: var(--navy-dark);
  color: var(--text-light-muted);
  font-size: 0.8125rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--navy-border);
}

.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #CBD5E1;
  transition: var(--transition-fast);
}

.topbar-item:hover {
  color: var(--primary-orange);
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #10B981;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.header-main {
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Identity Component */
.header-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-emblem {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-surface) 0%, var(--navy-dark) 100%);
  border: 1.5px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(10, 17, 40, 0.15);
  flex-shrink: 0;
}

.brand-emblem .emblem-shield {
  width: 28px;
  height: 28px;
  color: #94A3B8;
}

.brand-emblem .emblem-flame {
  width: 18px;
  height: 18px;
  color: var(--primary-orange);
  position: absolute;
  filter: drop-shadow(0 2px 4px rgba(249, 87, 0, 0.5));
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

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

.brand-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 2px;
}

.brand-emblem .emblem-logo-img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
}

.footer-col .brand-title {
  font-size: 1.125rem;
  white-space: nowrap;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-weight: 700;
  color: var(--text-main);
  padding: 8px 6px;
  position: relative;
  font-size: 0.9375rem;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--primary-orange);
  transition: var(--transition-fast);
  border-radius: var(--radius-full);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--bg-alt);
  color: var(--text-main);
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   Mobile Drawer Navigation
   ========================================================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 17, 40, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 2000;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--bg-white);
  box-shadow: var(--shadow-xl);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  transform: translateX(100%);
  transition: var(--transition-normal);
  overflow-y: auto;
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border: none;
  border-radius: var(--radius-md);
  background-color: var(--bg-alt);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.drawer-close:hover {
  background-color: var(--status-danger);
  color: #FFFFFF;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.drawer-link i {
  width: 18px;
  height: 18px;
  color: var(--text-light-muted);
  transition: var(--transition-fast);
}

.drawer-link:hover,
.drawer-link.active {
  color: var(--primary-orange);
  padding-right: 4px;
}

.drawer-link:hover i,
.drawer-link.active i {
  color: var(--primary-orange);
  transform: translateX(-4px);
}

/* ==========================================================================
   Hero Section (Clean, Modern Industrial & High Contrast)
   ========================================================================== */
.hero-section {
  position: relative;
  background: var(--navy-dark);
  color: #FFFFFF;
  padding: 70px 0 85px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-bg.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.95;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

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

/* Hero Top Badge with Live Pulsing Dot */
.hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.badge-live-pulse {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.hero-top-badge .badge-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #E2E8F0;
}

.hero-title {
  font-size: 3.15rem;
  font-weight: 900;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title .highlight-orange {
  color: var(--primary-orange);
  position: relative;
}

.hero-subtitle {
  font-size: 1.1875rem;
  line-height: 1.85;
  color: #CBD5E1;
  margin-bottom: 34px;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-btn-quote {
  box-shadow: 0 10px 30px rgba(249, 87, 0, 0.4);
}

.hero-btn-quote .btn-arrow {
  transition: transform var(--transition-fast);
}

.hero-btn-quote:hover .btn-arrow {
  transform: translateX(-4px);
}

/* 4 Pillars Grid inside Hero */
.hero-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.hero-pillar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #E2E8F0;
}

.hero-pillar-item i {
  color: #10B981;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ==========================================================================
   Hero Visual: Command Center Card (Sleek Glassmorphism Dashboard)
   ========================================================================== */
.hero-visual {
  position: relative;
}

.hero-command-card {
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.hero-command-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to left, var(--primary-orange), #0284C7, transparent);
}

.command-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.command-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.radar-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  box-shadow: 0 0 10px var(--primary-orange);
}

.command-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #FFFFFF;
}

.command-sub {
  font-size: 0.75rem;
  color: var(--text-light-muted);
}

.command-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: #10B981;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-live-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
}

.command-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.command-stat-box {
  background: rgba(30, 41, 59, 0.7);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-box-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light-muted);
  margin-bottom: 4px;
}

.stat-box-val {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
}

.stat-box-val .val-unit {
  font-size: 0.875rem;
  font-weight: 700;
  color: #94A3B8;
}

.stat-box-val.text-orange {
  color: var(--primary-orange);
}

.stat-box-val.text-info {
  color: #38BDF8;
}

.stat-box-sub {
  font-size: 0.6875rem;
  color: #10B981;
  font-weight: 600;
  margin-top: 4px;
}

.command-system-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.system-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(30, 41, 59, 0.45);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.system-item-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.system-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.system-icon.orange {
  background: rgba(249, 87, 0, 0.15);
  color: var(--primary-orange);
}

.system-icon.blue {
  background: rgba(56, 189, 248, 0.15);
  color: #38BDF8;
}

.system-icon.green {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
}

.system-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #F8FAFC;
}

.system-desc {
  font-size: 0.6875rem;
  color: #94A3B8;
}

.system-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.system-badge.success {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
}

.system-badge.blue {
  background: rgba(56, 189, 248, 0.15);
  color: #38BDF8;
}

.system-badge.orange {
  background: rgba(249, 87, 0, 0.15);
  color: #F95700;
}

.command-footer {
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.command-eval-btn {
  font-size: 0.875rem;
  color: var(--primary-orange);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.command-eval-btn:hover {
  color: #FFA066;
  transform: translateX(-4px);
}

/* ==========================================================================
   Trust Bar & Compliance
   ========================================================================== */
.trust-bar-section {
  background: #FFFFFF;
  padding: 30px 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

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

.trust-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--primary-orange-light);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
}

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

/* Trust Badges Strip */
.trust-badges-strip {
  background: var(--bg-alt);
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}

.badges-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.badge-seal {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.badge-seal img {
  width: 42px;
  height: 42px;
}

.badge-seal-text h4 {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.badge-seal-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Services Section (Grid & Cards)
   ========================================================================== */
.services-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

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

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-orange);
  opacity: 0;
  transition: var(--transition-fast);
}

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

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

.service-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  background: var(--bg-alt);
  color: var(--navy-dark);
  border-radius: var(--radius-sm);
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  background: var(--navy-dark);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
  background: var(--primary-orange);
  color: #FFFFFF;
  transform: scale(1.05);
}

.service-title {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.service-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-sub);
}

.service-feat-item i {
  color: var(--primary-orange);
  font-size: 0.8125rem;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 18px;
  background: var(--bg-alt);
  color: var(--navy-dark);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-btn {
  background: var(--primary-orange);
  color: #FFFFFF;
}

/* ==========================================================================
   Why Abraj Section
   ========================================================================== */
.why-section {
  padding: 100px 0;
  background-color: var(--navy-dark);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.why-card {
  background: var(--navy-surface);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  border-color: var(--primary-orange);
  transform: translateY(-6px);
  background: var(--navy-card);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.why-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(249, 87, 0, 0.12);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 0.9375rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}

/* ==========================================================================
   How We Work (Interactive Timeline)
   ========================================================================== */
.timeline-section {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 36px;
  right: 60px;
  left: 60px;
  height: 3px;
  background: var(--border-light);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-num-bubble {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 3px solid var(--primary-orange);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(249, 87, 0, 0.2);
  margin-bottom: 20px;
  transition: var(--transition-normal);
}

.timeline-step:hover .step-num-bubble {
  background: var(--primary-orange);
  color: #FFFFFF;
  transform: scale(1.1);
}

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

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

/* ==========================================================================
   Live Counters / Stats Section
   ========================================================================== */
.stats-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-surface) 100%);
  color: #FFFFFF;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

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

.stat-box {
  padding: 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-orange);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

/* ==========================================================================
   Projects / Portfolio Section
   ========================================================================== */
.projects-section {
  padding: 100px 0;
  background-color: var(--bg-alt);
}

.portfolio-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  color: var(--text-sub);
  font-weight: 700;
  font-size: 0.9375rem;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--navy-dark);
  color: #FFFFFF;
  border-color: var(--navy-dark);
  box-shadow: var(--shadow-md);
}

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

.project-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.project-img-box {
  position: relative;
  height: 230px;
  background: var(--navy-surface);
  overflow: hidden;
}

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

.project-card:hover .project-img-box img {
  transform: scale(1.06);
}

.project-city-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.project-cat-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--primary-orange);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
}

.project-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy-dark);
}

.project-sector {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.project-scope {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy-dark);
  transition: var(--transition-fast);
}

.project-action-btn:hover {
  background: var(--navy-dark);
  color: #FFFFFF;
}

/* ==========================================================================
   Sectors Grid
   ========================================================================== */
.sectors-section {
  padding: 100px 0;
  background-color: #FFFFFF;
}

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

.sector-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition-normal);
}

.sector-card:hover {
  background: #FFFFFF;
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.sector-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--navy-dark);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.sector-info h3 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.sector-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Interactive Quote Estimator Widget
   ========================================================================== */
.estimator-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy-surface) 0%, var(--navy-dark) 100%);
  color: #FFFFFF;
}

.estimator-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xl);
}

.estimator-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #E2E8F0;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 0.9375rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(249, 87, 0, 0.2);
}

select.form-control {
  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='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 16px;
}

.estimator-result-banner {
  background: var(--navy-deep);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   Pre-Footer High-Conversion CTA
   ========================================================================== */
.pre-footer-cta {
  position: relative;
  background: var(--navy-dark);
  color: #FFFFFF;
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--navy-border);
}

.pre-footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(249, 87, 0, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

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

.cta-desc {
  font-size: 1.25rem;
  color: var(--text-light-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  background-color: var(--navy-deep);
  color: var(--text-light-muted);
  padding: 80px 0 30px;
  border-top: 1px solid var(--navy-border);
}

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

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 3px;
  background: var(--primary-orange);
  border-radius: var(--radius-full);
}

.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.footer-links a {
  font-size: 0.9375rem;
  color: var(--text-light-muted);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--primary-orange);
  transform: translateX(-4px);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

.footer-contact-item i {
  color: var(--primary-orange);
  font-size: 1.125rem;
  margin-top: 2px;
}

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

.footer-bottom p {
  color: #64748B;
}

/* ==========================================================================
   Floating Widgets (WhatsApp & Call)
   ========================================================================== */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  font-size: 1.75rem;
  transition: var(--transition-normal);
  position: relative;
}

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

.float-btn.whatsapp:hover {
  background-color: #20BA5A;
  transform: scale(1.1);
}

.float-btn.call {
  background-color: var(--primary-orange);
  display: none; /* Shown on mobile */
}

.float-btn.call:hover {
  background-color: var(--primary-orange-hover);
  transform: scale(1.1);
}

/* Floating WhatsApp Quick Menu Popup */
.wa-popup-menu {
  position: absolute;
  bottom: 74px;
  left: 0;
  width: 300px;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  z-index: 1600;
}

.wa-popup-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-popup-header {
  background: #075E54;
  color: #FFFFFF;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #075E54;
  font-weight: bold;
}

.wa-popup-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.wa-option:hover {
  background: #E7FCEE;
  color: #075E54;
}

/* ==========================================================================
   Project Details Modal
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 17, 40, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: var(--transition-normal);
  position: relative;
}

.modal-backdrop.open .modal-dialog {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.1);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--status-danger);
  color: #FFFFFF;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--navy-dark);
  color: #FFFFFF;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-right: 4px solid var(--primary-orange);
  animation: slideInLeft 0.3s ease;
}

.toast.success {
  border-right-color: var(--status-success);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================================
   FAQ Accordion Components
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item.active {
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--navy-dark);
  cursor: pointer;
  background: none;
  transition: var(--transition-fast);
}

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

.faq-chevron {
  transition: transform var(--transition-normal);
  color: var(--text-muted);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 22px;
  color: var(--text-sub);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ==========================================================================
   Responsive Breakpoints (Mobile First & Adjustments)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .services-grid, .why-grid, .projects-grid, .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .timeline-track::before {
    display: none;
  }

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

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

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

  .estimator-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .float-btn.call {
    display: flex;
  }

  .header-topbar {
    display: none;
  }

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

  .hero-subtitle {
    font-size: 1.0625rem;
  }

  .brand-title {
    font-size: 1.125rem;
  }

  .brand-sub {
    font-size: 0.6875rem;
  }

  .hero-pillars-grid {
    grid-template-columns: 1fr;
  }

  .services-grid, .why-grid, .projects-grid, .sectors-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-bar-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .estimator-form-grid {
    grid-template-columns: 1fr;
  }

  .estimator-result-banner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta-title {
    font-size: 1.875rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .command-stats-row {
    grid-template-columns: 1fr;
  }

  .brand-emblem {
    width: 40px;
    height: 40px;
  }

  .brand-title {
    font-size: 1rem;
  }
}

