/* ==========================================================================
   CSS Variables & Tokens (100% Mockup Match)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Tajawal:wght@400;500;700;800&family=Noto+Sans+SC:wght@400;500;700&display=swap');

:root {
  /* Colors */
  --color-primary: #D3151C; /* Mockup Red */
  --color-primary-hover: #b01015;
  --color-slate: #182238; /* Mockup Slate Blue */
  --color-slate-light: #24314E;
  --color-bg: #FAFBFB;
  --color-surface: #ffffff;
  --color-text-main: #182238;
  --color-text-muted: #606F7B;
  --color-border: #E8ECEF;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-arabic: 'Tajawal', sans-serif;
  --font-chinese: 'Noto Sans SC', sans-serif;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 800ms cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(24, 34, 56, 0.03);
  --shadow-md: 0 16px 32px rgba(24, 34, 56, 0.04);
  --shadow-lg: 0 32px 64px rgba(24, 34, 56, 0.08);
  --shadow-red: 0 16px 32px rgba(211, 21, 28, 0.2);

  /* Layout */
  --container-max: 1440px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

/* RTL Support for Arabic */
html[dir="rtl"] {
  --font-display: var(--font-arabic);
  --font-body: var(--font-arabic);
}
html[lang="zh"] {
  --font-display: var(--font-chinese);
  --font-body: var(--font-chinese);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background-color: var(--color-primary);
  width: 0%;
  z-index: 1001;
  transition: width 0.1s ease;
}

/* ==========================================================================
   Premium Brand Cinematic Loader (Inspired by reference)
   ========================================================================== */
/* Scroll & Interaction Locks */
body.loader-animating,
body.menu-open {
  overflow: hidden !important;
  height: 100vh !important;
}

/* ==========================================================================
   Premium Airplane Wipe Loader
   ========================================================================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 11000;
  overflow: hidden;
}

.loader-red-bg {
  background-color: var(--color-primary) !important;
}

.loader-red-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-slogan-centered {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  padding: 0 2rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.loader-slogan-centered.active {
  opacity: 1;
  transform: translateY(0);
}

.loader-plane-system {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  transform: translateX(-150vw);
  z-index: 5;
}

body.plane-flying .loader-plane-system {
  animation: planeFlyRight 2s cubic-bezier(0.5, 0, 0.2, 1) forwards;
}

@keyframes planeFlyRight {
  0% { transform: translateX(-150vw); }
  100% { transform: translateX(150vw); }
}

.loader-white-tail {
  position: absolute;
  top: 0;
  right: calc(50vw + 5vw);
  width: 300vw;
  height: 100vh;
  background: white;
}

.plane-svg-horizontal {
  position: absolute;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%) rotate(90deg);
  width: clamp(250px, 30vw, 500px);
  height: auto;
}

.final-centered-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

body.plane-flying .final-centered-logo {
  animation: logoFadeIn 0.2s ease forwards 1.2s;
}

@keyframes logoFadeIn {
  to { opacity: 1; pointer-events: auto; }
}

#loader-final-img {
  width: 320px;
  height: auto;
  max-width: 80vw;
  object-fit: contain;
}

/* ==========================================================================
   Desktop Header & Navbar (100% Mockup Match)
   ========================================================================== */
.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-base);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-desktop.scrolled {
  padding: 0.6rem 0;
  box-shadow: var(--shadow-md);
}

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

/* Wide Logo System */
.logo-container {
  display: flex;
  align-items: center;
  height: 4.5rem;
  transition: height var(--transition-base), opacity 0.5s ease, visibility 0.5s ease;
  overflow: visible;
}

/* Hide header logo during initial loader transition, except when skipped */
.header-desktop .desktop-logo .logo-container,
.mobile-header .mobile-logo .logo-container {
  opacity: 0;
  visibility: hidden;
}

.logo-container.revealed {
  opacity: 1 !important;
  visibility: visible !important;
}

.logo-wide {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-base), transform var(--transition-base);
  transform-origin: left center;
}

html[dir="rtl"] .logo-wide {
  transform-origin: right center;
}

/* Scrolled Header Animations for Logos */
.header-desktop.scrolled .logo-container {
  height: 3.25rem;
}

.header-desktop.scrolled .logo-wide {
  height: 2.75rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.desktop-nav-links {
  display: flex;
  gap: 2.25rem;
}

.desktop-nav-links a {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-main);
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.desktop-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-base);
}

.desktop-nav-links a.active::after,
.desktop-nav-links a:hover::after {
  width: 100%;
}

.desktop-nav-links a.active,
.desktop-nav-links a:hover {
  color: var(--color-primary);
}

/* Header Utilities */
.desktop-utilities {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-selector {
  position: relative;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--color-text-main);
  padding: 0.5rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
}

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

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  min-width: 120px;
  box-shadow: var(--shadow-md);
}

.lang-selector:hover .lang-dropdown,
.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown button {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: none;
  color: var(--color-text-muted);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}
html[dir="rtl"] .lang-dropdown button { text-align: right; }

.lang-dropdown button:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

/* ==========================================================================
   Mobile Header & Drawer Sidebar
   ========================================================================== */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-surface);
  padding: 0.75rem 2rem;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
}

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

.mobile-logo .logo-container {
  height: 3rem;
  opacity: 0;
  visibility: hidden;
}

.mobile-logo .logo-wide {
  height: 2.35rem;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1002;
}

.menu-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: var(--color-slate);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Drawer Backdrop Blur */
.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(24, 34, 56, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.sidebar-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-mobile {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background-color: var(--color-surface);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  transition: transform var(--transition-slow);
  border-left: 1px solid var(--color-border);
}

html[dir="rtl"] .sidebar-mobile {
  right: auto;
  left: -320px;
  border-left: none;
  border-right: 1px solid var(--color-border);
}

.sidebar-mobile.active {
  transform: translateX(-320px);
}

html[dir="rtl"] .sidebar-mobile.active {
  transform: translateX(320px);
}

/* Sidebar header */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-border);
}

.sidebar-header .logo-container {
  height: 2.75rem;
  opacity: 1 !important;
  visibility: visible !important;
}

.sidebar-header .logo-wide {
  height: 2.25rem;
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-slate);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.sidebar-close:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

.sidebar-mobile-nav {
  padding: 2.5rem 2.5rem;
  flex-grow: 1;
}

.sidebar-mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-item {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  color: var(--color-text-main);
}

/* ==========================================================================
   Buttons (Mockup Styling: Fully Rounded Pill Shapes)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full); /* 100% rounded */
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  gap: 0.5rem;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: var(--color-surface);
  color: var(--color-slate);
  border-color: rgba(24, 34, 56, 0.2);
}

.btn-outline:hover {
  border-color: var(--color-slate);
  transform: translateY(-1px);
}

.btn-icon-right {
  font-size: 0.9rem;
  line-height: 1;
}

.btn-outline .ph-map-pin {
  color: var(--color-primary);
  font-size: 1rem;
}

/* ==========================================================================
   Hero Section (Split Grid Visual Match)
   ========================================================================== */
.hero {
  min-height: 90vh;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 130px;
  padding-bottom: 80px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff 40%, rgba(255, 255, 255, 0) 65%);
  z-index: 2;
  pointer-events: none;
}

html[dir="rtl"] .hero::after {
  background: linear-gradient(270deg, #ffffff 40%, rgba(255, 255, 255, 0) 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateX(5%);
  z-index: 1;
  pointer-events: none;
}

html[dir="rtl"] .hero-image-bg {
  right: 0;
  left: 0;
  transform: scaleX(-1) translateX(5%);
  object-position: center;
}

.hero-content {
  color: var(--color-slate);
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 6.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--color-slate);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero-divider {
  width: 45px;
  height: 4px;
  background-color: var(--color-primary);
  margin-bottom: 2rem;
}

.hero-sub {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-slate);
  margin-bottom: 0.5rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-spacer {
  pointer-events: none;
}

/* ==========================================================================
   Floating Metrics Banner (100% Mockup Match)
   ========================================================================== */
.floating-banner-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -50px;
}

.floating-banner {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border: 1px solid var(--color-border);
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.metric-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.metric-text h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

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

/* ==========================================================================
   Sections & Cards
   ========================================================================== */
section[id], footer[id] {
  scroll-margin-top: 120px;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 5rem;
}

.section-header .tagline {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--color-text-main);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

/* Reviews Marquee & Testimonials */
.reviews-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1rem 0;
}

.reviews-marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
}

.reviews-marquee-set {
  display: flex;
  gap: 2rem;
}

.reviews-marquee-set.clone {
  display: none;
}

.testimonial-card {
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-slow);
}

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

.testimonial-quote {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-slate);
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* RTL layout support for testimonials */
html[dir="rtl"] .testimonial-card {
  direction: rtl !important;
  text-align: right !important;
}

/* On Desktop: lay them out as a normal 3-column grid */
@media (min-width: 769px) {
  .reviews-marquee-wrapper {
    overflow: visible;
  }
  .reviews-marquee-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 2rem;
  }
  .reviews-marquee-set {
    display: contents; /* Flattens cards into the grid parent */
  }
  .reviews-marquee-set.clone {
    display: none;
  }
}

.service-card {
  background: var(--color-surface);
  padding: 4rem 3rem;
  border: 1px solid var(--color-border);
  position: relative;
  transition: all var(--transition-slow);
}

.service-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--color-slate);
  transition: height var(--transition-slow);
  z-index: 1;
}

.service-card > * {
  position: relative;
  z-index: 2;
  transition: color var(--transition-base);
}

.service-icon {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.service-card:hover::after {
  height: 100%;
}

.service-card:hover h3 { color: white; }
.service-card:hover p { color: rgba(255, 255, 255, 0.6); }

/* Estimator Tab System */
.calc-section {
  background-color: var(--color-surface);
  color: var(--color-text-main);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.calc-info h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.calc-info p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.calc-box {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.calc-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
}

.calc-tab {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: all var(--transition-fast);
  position: relative;
}

.calc-tab.active { color: var(--color-text-main); }
.calc-tab.active::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
}

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

.calc-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.calc-slider-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.calc-slider {
  flex: 1;
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(24, 34, 56, 0.08);
  outline: none;
  border-radius: 2px;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  cursor: pointer;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.calc-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  min-width: 80px;
  text-align: right;
}

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

.calc-result-lbl {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.calc-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-primary);
}

/* ==========================================================================
   About Section (Mockup Split Composite)
   ========================================================================== */
.about-section {
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.about-text-col h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: var(--color-slate);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.about-feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.about-feature-item i {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.about-feature-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-slate);
  margin-bottom: 0.25rem;
}

.about-feature-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.about-visual-col {
  position: relative;
}

.composite-wrapper {
  position: relative;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}

.composite-main-img {
  width: 85%;
  height: 30rem; /* 480px equivalent */
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.composite-metrics-card {
  position: absolute;
  top: 0;
  left: -40px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 5;
}

.metric-box h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.15rem;
}

.metric-box p {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-text-muted);
}

.composite-metrics-card .metric-box {
  display: flex;
  flex-direction: column;
}

.composite-metrics-card .metric-box:not(:last-child) {
  border-right: 1px solid var(--color-border);
  padding-right: 2rem;
}

html[dir="rtl"] .composite-metrics-card .metric-box:not(:last-child) {
  border-right: none;
  border-left: 1px solid var(--color-border);
  padding-right: 0;
  padding-left: 2rem;
}

html[dir="rtl"] .composite-metrics-card {
  left: auto;
  right: -40px;
}

.composite-floating-img {
  position: absolute;
  width: 12.5rem; /* 200px equivalent */
  height: 8.75rem; /* 140px equivalent */
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 0.25rem solid var(--color-surface); /* 4px equivalent */
  z-index: 4;
  display: flex;
  flex-direction: column;
}

.composite-floating-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.composite-floating-img span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-slate);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.4rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.top-float {
  right: -20px;
  top: 80px;
}

html[dir="rtl"] .top-float {
  right: auto;
  left: -20px;
}

.bottom-float {
  right: 10px;
  bottom: -10px;
}

html[dir="rtl"] .bottom-float {
  right: auto;
  left: 10px;
}

/* ==========================================================================
   World Map Connectivity Section
   ========================================================================== */
.map-section {
  background-color: var(--color-slate);
  color: white;
  overflow: hidden;
}

.map-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 5rem;
}

.map-text h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.map-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 480px;
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
}

.map-badge i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.map-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.map-visual {
  position: relative;
  width: 100%;
}

.world-map-svg-container {
  width: 100%;
  height: auto;
}

.world-map-svg {
  width: 100%;
  height: auto;
}

.route-line {
  fill: none;
  stroke: rgba(0, 242, 254, 0.75);
  stroke-width: 1.8;
  stroke-dasharray: 6, 6;
  animation: routeDash 3s linear infinite;
}

@keyframes routeDash {
  to { stroke-dashoffset: -24; }
}

.map-pin {
  cursor: pointer;
}

.pin-glow {
  transform-origin: center;
}

/* Red Pin (Egypt Hub) */
.pin-red .pin-core {
  fill: var(--color-primary);
}
.pin-red .pin-glow {
  fill: var(--color-primary);
  opacity: 0.45;
  animation: pinPulseRed 2s ease-out infinite;
}

/* White Pins (Germany, Turkey, China) */
.pin-white .pin-core {
  fill: #ffffff;
}
.pin-white .pin-glow {
  fill: #ffffff;
  opacity: 0.35;
  animation: pinPulseWhite 2s ease-out infinite;
}

.pin-lbl {
  fill: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

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

/* ==========================================================================
   Capabilities Section (Grid Services)
   ========================================================================== */
.capabilities-section {
  background: var(--color-bg);
}

.capabilities-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  gap: 4rem;
}

.capabilities-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  text-transform: uppercase;
}

.capabilities-desc-wrapper {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.capabilities-desc-wrapper p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.capability-card {
  height: 340px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}

.capability-card .card-content {
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.capability-card h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.capability-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: calc(100% - 50px);
}

.card-arrow-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--color-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.capability-card:hover .card-arrow-btn {
  background: var(--color-primary);
  color: white;
}

html[dir="rtl"] .card-arrow-btn {
  right: auto;
  left: 2rem;
}

html[dir="rtl"] .capability-card p {
  max-width: calc(100% - 50px);
}

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

.capability-card:hover .card-arrow-btn {
  background: var(--color-primary);
  color: white;
  transform: translateX(3px);
}

/* ==========================================================================
   Featured Visibility Section
   ========================================================================== */
.visibility-section {
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

.visibility-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  position: relative;
  z-index: 2;
}

.visibility-content h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.visibility-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.visibility-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.visibility-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.visibility-checklist li i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.visibility-spacer {
  pointer-events: none;
}

/* ==========================================================================
   Why Choose Timeline Section
   ========================================================================== */
.why-choose-section {
  background: var(--color-surface);
}

.timeline-alt {
  position: relative;
  max-width: 1100px;
  margin: 4rem auto 0;
  padding: 2rem 0;
}

.timeline-alt::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  border-left: 2px dashed rgba(24, 34, 56, 0.12);
}

.timeline-alt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
}

.timeline-alt-row:last-child {
  margin-bottom: 0;
}

.timeline-alt-col {
  width: 44%;
}

.timeline-alt-col.text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-alt-row:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-alt-row:nth-child(odd) .timeline-alt-col.text-side {
  padding-left: 2rem;
}

.timeline-alt-row:nth-child(even) .timeline-alt-col.text-side {
  padding-right: 2rem;
}

html[dir="rtl"] .timeline-alt-row:nth-child(odd) .timeline-alt-col.text-side {
  padding-left: 0;
  padding-right: 2rem;
}

html[dir="rtl"] .timeline-alt-row:nth-child(even) .timeline-alt-col.text-side {
  padding-right: 0;
  padding-left: 2rem;
}

.timeline-alt-col.text-side h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--color-slate);
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.timeline-alt-col.text-side p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.timeline-alt-col.image-side {
  height: 10.625rem; /* 170px equivalent */
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.timeline-alt-col.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.timeline-alt-col.image-side:hover img {
  transform: scale(1.04);
}

.timeline-alt-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-text-muted);
  z-index: 2;
  transition: all var(--transition-base);
}

.timeline-alt-row:hover .timeline-alt-badge {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 0 10px rgba(211, 21, 28, 0.15);
}

/* ==========================================================================
   Footer & Responsive Custom Tweaks
   ========================================================================== */
.footer {
  background-color: var(--color-surface);
  color: var(--color-text-main);
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.85fr 1fr 1.15fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-slate);
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 48px;
  margin-bottom: 1.5rem;
}

.footer-tagline-ar {
  font-family: var(--font-arabic);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-tagline-en {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Col lists */
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col ul li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-col ul li a {
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--color-primary);
}

.footer-col ul li i.chevron-right {
  font-size: 0.65rem;
  color: #B2BDC6;
}

/* Contact Details */
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.contact-list li i {
  color: var(--color-primary);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-list li span {
  color: var(--color-text-muted);
}

/* Social & Subscribe Col */
.social-icons-wrapper {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.social-circle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.95rem;
  transition: transform var(--transition-fast);
}

.social-circle-icon:hover {
  transform: translateY(-2px);
}

.social-circle-icon.linkedin { background-color: #0077B5; }
.social-circle-icon.facebook { background-color: #1877F2; }
.social-circle-icon.twitter { background-color: #000000; }
.social-circle-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }

.subscribe-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-slate);
  margin-bottom: 1rem;
  display: block;
}

.subscribe-form {
  display: flex;
}

.subscribe-input {
  flex: 1;
  border: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: inherit;
  font-size: 0.8rem;
  outline: none;
}

html[dir="rtl"] .subscribe-input {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.subscribe-btn {
  background-color: var(--color-primary);
  border: none;
  color: white;
  padding: 0 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition-fast);
}

html[dir="rtl"] .subscribe-btn {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.subscribe-btn:hover {
  background-color: var(--color-primary-hover);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

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

.footer-bottom-links a:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   Smooth Reveals
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
  .container { padding: 0 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 1024px) {
  .header-desktop { display: none; }
  .mobile-header { display: block; }
  section[id], footer[id] { scroll-margin-top: 80px; }
  
  /* Hero Section Mobile/Tablet Layout */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 50px;
    min-height: auto;
  }
  .hero::after {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    width: 100%;
  }
  .hero-content {
    text-align: center;
    order: 1;
  }
  .hero-divider {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-spacer {
    display: none;
  }
  .hero-image-bg {
    position: relative;
    width: 100%;
    height: 350px;
    max-width: 700px;
    margin: 2rem auto 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
    right: auto;
    left: auto;
    order: 2;
  }
  html[dir="rtl"] .hero-image-bg {
    transform: none;
  }

  /* Responsive About Composite Images Layout for Tablet & Mobile */
  .composite-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    width: 100%;
    padding: 0;
  }
  .composite-main-img {
    grid-column: 1 / -1;
    width: 100%;
    height: 20rem; /* 320px equivalent */
    object-fit: cover;
    border-radius: var(--radius-lg);
  }
  .composite-metrics-card {
    grid-column: 1 / -1;
    position: static;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 1.25rem;
    gap: 1rem;
    margin: 0;
  }
  .composite-metrics-card .metric-box {
    align-items: center;
    text-align: center;
  }
  .composite-metrics-card .metric-box:not(:last-child) {
    border-right: 1px solid var(--color-border);
    padding-right: 1.5rem;
    border-left: none;
    padding-left: 0;
  }
  html[dir="rtl"] .composite-metrics-card .metric-box:not(:last-child) {
    border-left: 1px solid var(--color-border);
    padding-left: 1.5rem;
    border-right: none;
    padding-right: 0;
  }
  .composite-floating-img {
    position: relative;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    height: 11.25rem; /* 180px equivalent */
    border: none;
    box-shadow: var(--shadow-md);
  }

  .calc-grid { grid-template-columns: 1fr; gap: 4rem; }
  .floating-banner { grid-template-columns: 1fr 1fr; }
  
  /* About Grid Single Column on Tablet */
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  
  /* Map Grid Single Column on Tablet */
  .map-grid { grid-template-columns: 1fr; gap: 3rem; }
  
  /* Featured Visibility Single Column on Tablet */
  .visibility-grid { grid-template-columns: 1fr; }
  .visibility-checklist { grid-template-columns: 1fr 1fr; }
  .visibility-spacer { display: none; }

  .capabilities-grid { grid-template-columns: 1fr 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; gap: 4rem; }
}

@media (max-width: 768px) {
  /* Reduce excessive section padding to prevent giant mobile gaps */
  .section {
    padding: 3.5rem 0;
  }

  .floating-banner-wrapper {
    margin-top: -2.5rem; /* reduce metrics card overlap offset on mobile */
  }

  .about-content { grid-template-columns: 1fr; gap: 4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .floating-banner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
  .capabilities-grid { grid-template-columns: 1fr; }
  
  /* Smaller heights on mobile screen widths */
  .composite-main-img {
    height: 15rem; /* 240px equivalent */
  }
  .composite-floating-img {
    height: 8.75rem; /* 140px equivalent */
  }

  /* Testimonials Marquee Mobile Implementation */
  .reviews-marquee-wrapper {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 1.5rem 0;
    direction: ltr !important; /* Force LTR animation sweep */
  }

  .reviews-marquee-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: reviewsMarquee 22s linear infinite;
    direction: ltr !important;
  }

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

  .reviews-marquee-set {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
    direction: ltr !important;
  }

  .reviews-marquee-set.clone {
    display: flex;
  }

  .reviews-marquee-set .testimonial-card {
    width: 290px;
    flex-shrink: 0;
    padding: 2rem 1.75rem;
  }

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

  /* Responsive Map Layout Container with Horizontal Scroll on Mobile */
  .world-map-svg-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
  }
  .world-map-svg {
    min-width: 650px;
    height: auto;
    display: block;
  }

  /* Estimator Padding on Mobile */
  .calc-box {
    padding: 1.5rem;
  }
  .visibility-checklist { grid-template-columns: 1fr; }

  .capabilities-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  
  /* Mobile timeline layout adjustments */
  .timeline-alt::before {
    left: 20px;
    transform: none;
  }
  .timeline-alt-row {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 50px;
    margin-bottom: 3rem;
  }
  .timeline-alt-col {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .timeline-alt-col.image-side {
    height: 140px;
    margin-bottom: 1rem;
    order: 1;
  }
  .timeline-alt-col.text-side {
    order: 2;
  }
  .timeline-alt-badge {
    left: 20px;
    top: 24px;
    transform: translate(-50%, -50%);
  }
  html[dir="rtl"] .timeline-alt::before {
    left: auto;
    right: 20px;
  }
  html[dir="rtl"] .timeline-alt-row {
    padding-left: 0;
    padding-right: 50px;
  }
  html[dir="rtl"] .timeline-alt-badge {
    left: auto;
    right: 20px;
    transform: translate(50%, -50%);
  }
}

/* ==========================================================================
   Large / Ultra-Wide Screens Scaling & Centering
   ========================================================================== */
/* Standard desktop balance tweak: make hero grid slightly more centered starting at 1200px */
@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

/* Large Screens (1600px and up) */
@media (min-width: 1600px) {
  :root {
    --container-max: 1520px;
  }
  
  html {
    font-size: 17.5px; /* Scales layout up by ~10% */
  }

  .hero {
    min-height: 85vh;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.9fr; /* Balance columns to center hero content further */
  }

  .section {
    padding: 9rem 0;
  }

  .composite-main-img {
    height: 35rem; /* ~560px */
  }
  .composite-floating-img {
    width: 15rem; /* ~240px */
    height: 10.625rem; /* ~170px */
  }
}

/* Wide Desktop Screens (1920px and up) */
@media (min-width: 1920px) {
  :root {
    --container-max: 1760px;
  }
  
  html {
    font-size: 20px; /* Scales layout up by ~25% */
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr; /* Centered column layout for wide screens */
  }

  .section {
    padding: 10rem 0;
  }
}

/* Ultra-wide Displays (2560px and up) */
@media (min-width: 2560px) {
  :root {
    --container-max: 2300px;
  }
  
  html {
    font-size: 24px; /* Scales layout up by ~50% */
  }

  .section {
    padding: 12rem 0;
  }
}

/* ==========================================================================
   Static Map Mockup Styles
   ========================================================================== */
.map-section-new {
  background-color: #0c1a2d; /* Matching the mockup's dark navy */
  position: relative;
  overflow: hidden;
  padding: 5rem 0 !important; /* Reduced padding */
}

.map-grid-new {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.map-tagline-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.tagline-line {
  height: 1px;
  background-color: var(--color-primary);
  flex: 1;
  max-width: 50px;
}

.map-text-new h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.map-text-new p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 90%;
}

.map-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.map-badge-new:hover {
  background-color: rgba(255,255,255,0.05);
}

.map-badge-new span {
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
}

/* Map SVG styling */
.route-line-static {
  fill: none;
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}

.pin-glow-static {
  fill: rgba(255,255,255,0.2);
}

.pin-glow-static-red {
  fill: rgba(211, 21, 28, 0.3);
}

/* Glass Stats Bar */
.map-stats-glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: center;
}

.stat-text h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.stat-text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin: 0;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(255,255,255,0.1);
}

@media (max-width: 1024px) {
  .map-grid-new {
    grid-template-columns: 1fr;
  }
  .map-stats-glass {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .stat-item {
    flex: 0 0 45%;
    justify-content: flex-start;
  }
  .stat-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .stat-item {
    flex: 0 0 100%;
  }
}

/* ==========================================================================
   New Mockup Match Styles (Why Choose, Estimator, Reviews)
   ========================================================================== */

/* Typography & Titles */
.tagline-red {
  color: #e52b2b !important;
  font-weight: 800;
  margin-bottom: 0.5rem !important;
}

.title-underline {
  width: 40px;
  height: 3px;
  background-color: #e52b2b;
  margin-bottom: 2rem;
}
.title-underline.center {
  margin: 0 auto 3rem auto;
}
.text-center {
  text-align: center;
}

/* Why Choose Section */
.why-choose-new {
  background-color: var(--color-surface);
}

.why-choose-cards-new {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.why-card-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 2rem;
}

.why-img-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.why-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.why-card-new:hover .why-img-inner img {
  transform: scale(1.05);
}

.why-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: #e52b2b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(229, 43, 43, 0.4);
  z-index: 2;
  border: 3px solid white;
}

.why-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.why-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Estimator Section */
.calc-section-new {
  background-color: var(--color-bg);
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 2px, transparent 2px);
  background-size: 30px 30px;
  position: relative;
  overflow: hidden;
  padding: 4rem 0 !important; /* Force smaller height */
}

.calc-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}


.calc-info-new .section-header {
  margin-bottom: 1rem;
}

.calc-info-new > p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.calc-features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.calc-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(229, 43, 43, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  border: none;
  transition: transform 0.3s ease;
}

.calc-feature:hover .calc-feature-icon {
  transform: translateY(-3px);
  background: rgba(229, 43, 43, 0.12);
}

.calc-feature h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 0.25rem;
}

.calc-feature p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.calc-action-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.btn-get-quote {
  background-color: #e52b2b;
  color: white;
  padding: 1rem 2rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: none;
}
.btn-get-quote:hover {
  background-color: #c41e1e;
}

.trusted-by {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trusted-avatars {
  display: flex;
}

.trusted-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
}
.trusted-avatars img:first-child {
  margin-left: 0;
}

.trusted-by span {
  font-size: 0.8rem;
  color: #606F7B;
  line-height: 1.3;
}

/* Estimator Box */
.calc-box-new {
  background: var(--color-surface);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.calc-box-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), #ff6b6b);
}

.calc-tabs-new {
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid #E8ECEF;
  margin-bottom: 2rem;
}

.calc-tab-new {
  background: none;
  border: none;
  padding: 0 0 1rem 0;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-text-muted);
  cursor: pointer;
  position: relative;
}

.calc-tab-new.active {
  color: #e52b2b;
}

.calc-tab-new.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e52b2b;
}

.calc-sliders {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.calc-group-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

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

.calc-val-new {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.calc-slider-wrapper {
  position: relative;
}

.custom-slider-new {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 10%, var(--color-border) 10%);
  border-radius: 2px;
  outline: none;
}

.custom-slider-new::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(229,43,43,0.4);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #a0aec0;
}

.calc-results-new {
  display: flex;
  align-items: center;
  background: var(--color-bg);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-border);
}

.calc-result-box {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.result-icon {
  color: var(--color-text-muted);
  font-size: 1.5rem;
  background: var(--color-surface);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}

.result-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.result-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 0.25rem;
}

.result-price {
  color: var(--color-primary);
}

.result-sub {
  font-size: 0.75rem;
  color: #a0aec0;
}

.calc-result-divider {
  width: 1px;
  height: 40px;
  background-color: var(--color-border);
  margin: 0 1.5rem;
}

.calc-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--color-bg);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.calc-disclaimer i {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

/* Reviews Section */
.reviews-section-new {
  background-color: #0c1a2d; /* matching the image dark blue */
  position: relative;
  overflow: hidden;
}

.reviews-bg-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1.5" fill="rgba(255,255,255,0.03)"/></svg>');
  z-index: 1;
}

.reviews-section-new .container {
  position: relative;
  z-index: 2;
}

.reviews-section-new .section-header-new h2 {
  color: white;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.reviews-carousel-new {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.nav-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav-arrow:hover {
  background: rgba(255,255,255,0.1);
}

.reviews-cards-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  flex: 1;
  padding-bottom: 1rem;
  scrollbar-width: none; /* Firefox */
}
.reviews-cards-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}

.review-card-new {
  background: #15243d;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  border: 1px solid rgba(255,255,255,0.02);
  transition: transform 0.3s ease;
  flex: 0 0 calc(33.333% - 1.33rem);
  scroll-snap-align: start;
  min-width: 320px;
}

.review-card-new:hover {
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 3.5rem;
  color: var(--color-primary);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.review-text {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  min-height: 80px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-avatar.placeholder {
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.author-name {
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.author-role {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

.reviews-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.reviews-pagination .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews-pagination .dot.active {
  background: #e52b2b;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .calc-grid-new {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-choose-cards-new {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-cards-container {
    grid-template-columns: 1fr;
  }
  .review-card-new:not(.active) {
    display: none;
  }
}

@media (max-width: 768px) {
  .why-choose-cards-new {
    grid-template-columns: 1fr;
  }
  .calc-features-grid {
    grid-template-columns: 1fr;
  }
  .calc-action-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .calc-results-new {
    flex-direction: column;
    gap: 2rem;
  }
  .calc-result-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .nav-arrow {
    display: none;
  }
}


 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       S t a g g e r e d   E n t r y   R e v e a l   A n i m a t i o n s   ( B u i l d   S e q u e n c e ) 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 . i n i t i a l - h i d d e n   { 
     o p a c i t y :   0 ; 
     t r a n s f o r m :   t r a n s l a t e Y ( 2 0 p x ) ; 
     w i l l - c h a n g e :   t r a n s f o r m ,   o p a c i t y ; 
 } 
 
 / *   B a c k g r o u n d   i m a g e s   j u s t   s c a l e   i n   * / 
 i m g . i n i t i a l - h i d d e n   { 
     t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 } 
 
 . i n i t i a l - h i d d e n . b u i l d - r e v e a l e d   { 
     o p a c i t y :   1 ; 
     t r a n s f o r m :   t r a n s l a t e Y ( 0 )   s c a l e ( 1 ) ; 
     t r a n s i t i o n :   o p a c i t y   1 s   c u b i c - b e z i e r ( 0 . 2 5 ,   1 ,   0 . 3 ,   1 ) ,   t r a n s f o r m   1 s   c u b i c - b e z i e r ( 0 . 2 5 ,   1 ,   0 . 3 ,   1 ) ; 
 } 
  
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       S c r o l l - D r i v e n   P a r a l l a x   C l a s s e s 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 . p a r a l l a x - s l o w   {   t r a n s f o r m :   t r a n s l a t e Y ( c a l c ( v a r ( - - s c r o l l - y ,   0 )   *   - 0 . 0 5 p x ) ) ;   w i l l - c h a n g e :   t r a n s f o r m ;   } 
 . p a r a l l a x - f a s t   {   t r a n s f o r m :   t r a n s l a t e Y ( c a l c ( v a r ( - - s c r o l l - y ,   0 )   *   - 0 . 1 5 p x ) ) ;   w i l l - c h a n g e :   t r a n s f o r m ;   } 
 . p a r a l l a x - s u p e r f a s t   {   t r a n s f o r m :   t r a n s l a t e Y ( c a l c ( v a r ( - - s c r o l l - y ,   0 )   *   - 0 . 2 5 p x ) ) ;   w i l l - c h a n g e :   t r a n s f o r m ;   } 
 . p a r a l l a x - r e v e r s e   {   t r a n s f o r m :   t r a n s l a t e Y ( c a l c ( v a r ( - - s c r o l l - y ,   0 )   *   0 . 1 p x ) ) ;   w i l l - c h a n g e :   t r a n s f o r m ;   } 
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       W h y   C h o o s e   E G   L o g i s t i c s   S e c t i o n 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 . w h y - c h o o s e - s e c t i o n   { 
     p o s i t i o n :   r e l a t i v e ; 
     b a c k g r o u n d - c o l o r :   v a r ( - - c o l o r - s l a t e ) ; 
     c o l o r :   v a r ( - - c o l o r - s u r f a c e ) ; 
     p a d d i n g :   8 r e m   0 ; 
     o v e r f l o w :   h i d d e n ; 
     z - i n d e x :   1 ; 
 } 
 
 . w h y - b g - e l e m e n t s   { 
     p o s i t i o n :   a b s o l u t e ; 
     i n s e t :   0 ; 
     z - i n d e x :   - 1 ; 
     p o i n t e r - e v e n t s :   n o n e ; 
 } 
 
 . w h y - b g - s h a p e   { 
     p o s i t i o n :   a b s o l u t e ; 
     t o p :   - 2 0 % ; 
     l e f t :   - 1 0 % ; 
     w i d t h :   6 0 % ; 
     h e i g h t :   1 2 0 % ; 
     b a c k g r o u n d :   r a d i a l - g r a d i e n t ( e l l i p s e   a t   c e n t e r ,   r g b a ( 2 1 1 ,   2 1 ,   2 8 ,   0 . 1 5 )   0 % ,   t r a n s p a r e n t   7 0 % ) ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     f i l t e r :   b l u r ( 6 0 p x ) ; 
 } 
 
 . w h y - p a r a l l a x - i m g   { 
     p o s i t i o n :   a b s o l u t e ; 
     t o p :   1 0 % ; 
     r i g h t :   - 5 % ; 
     w i d t h :   5 0 % ; 
     h e i g h t :   1 2 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
     o p a c i t y :   0 . 1 5 ; 
     m i x - b l e n d - m o d e :   l u m i n o s i t y ; 
 } 
 
 . w h y - g r i d   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
     g a p :   4 r e m ; 
     a l i g n - i t e m s :   c e n t e r ; 
 } 
 
 . w h y - c o n t e n t   h 2   { 
     f o n t - s i z e :   c l a m p ( 2 . 5 r e m ,   4 v w ,   3 . 5 r e m ) ; 
     f o n t - w e i g h t :   8 0 0 ; 
     m a r g i n - b o t t o m :   1 . 5 r e m ; 
     c o l o r :   # f f f ; 
     l i n e - h e i g h t :   1 . 1 ; 
 } 
 
 . w h y - l e a d   { 
     f o n t - s i z e :   1 . 1 r e m ; 
     c o l o r :   v a r ( - - c o l o r - b o r d e r ) ; 
     m a r g i n - b o t t o m :   3 r e m ; 
     l i n e - h e i g h t :   1 . 6 ; 
 } 
 
 . w h y - b e n e f i t s   { 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
     g a p :   2 r e m ; 
 } 
 
 . b e n e f i t - i t e m   { 
     d i s p l a y :   f l e x ; 
     g a p :   1 . 5 r e m ; 
     a l i g n - i t e m s :   f l e x - s t a r t ; 
 } 
 
 . b e n e f i t - i c o n   { 
     f l e x - s h r i n k :   0 ; 
     w i d t h :   3 . 5 r e m ; 
     h e i g h t :   3 . 5 r e m ; 
     b a c k g r o u n d :   r g b a ( 2 1 1 ,   2 1 ,   2 8 ,   0 . 1 ) ; 
     c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     f o n t - s i z e :   1 . 8 r e m ; 
     b o r d e r :   1 p x   s o l i d   r g b a ( 2 1 1 ,   2 1 ,   2 8 ,   0 . 2 ) ; 
 } 
 
 . b e n e f i t - t e x t   h 4   { 
     f o n t - s i z e :   1 . 2 5 r e m ; 
     c o l o r :   # f f f ; 
     m a r g i n - b o t t o m :   0 . 5 r e m ; 
 } 
 
 . b e n e f i t - t e x t   p   { 
     c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 7 ) ; 
     l i n e - h e i g h t :   1 . 5 ; 
     f o n t - s i z e :   0 . 9 5 r e m ; 
 } 
 
 . w h y - v i s u a l   { 
     p o s i t i o n :   r e l a t i v e ; 
     h e i g h t :   1 0 0 % ; 
     m i n - h e i g h t :   5 0 0 p x ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 
 . w h y - g l a s s - c a r d   { 
     p o s i t i o n :   r e l a t i v e ; 
     b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 3 ) ; 
     b a c k d r o p - f i l t e r :   b l u r ( 2 0 p x ) ; 
     b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
     b o r d e r - r a d i u s :   2 4 p x ; 
     p a d d i n g :   3 r e m ; 
     w i d t h :   8 0 % ; 
     b o x - s h a d o w :   0   3 0 p x   6 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
     o v e r f l o w :   h i d d e n ; 
     z - i n d e x :   2 ; 
 } 
 
 . w h y - w a t e r m a r k   { 
     p o s i t i o n :   a b s o l u t e ; 
     t o p :   - 1 0 % ; 
     r i g h t :   - 1 0 % ; 
     w i d t h :   1 5 0 p x ; 
     o p a c i t y :   0 . 0 5 ; 
     t r a n s f o r m :   r o t a t e ( 1 5 d e g ) ; 
 } 
 
 . w h y - c a r d - c o n t e n t   h 3   { 
     f o n t - s i z e :   2 r e m ; 
     c o l o r :   # f f f ; 
     m a r g i n - b o t t o m :   2 r e m ; 
 } 
 
 . w h y - s t a t s   { 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
     g a p :   1 . 5 r e m ; 
 } 
 
 . s t a t - b o x   { 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 } 
 
 . s t a t - n u m   { 
     f o n t - s i z e :   3 r e m ; 
     f o n t - w e i g h t :   8 0 0 ; 
     c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
     l i n e - h e i g h t :   1 ; 
     m a r g i n - b o t t o m :   0 . 2 5 r e m ; 
 } 
 
 . s t a t - l b l   { 
     f o n t - s i z e :   1 r e m ; 
     c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 6 ) ; 
     t e x t - t r a n s f o r m :   u p p e r c a s e ; 
     l e t t e r - s p a c i n g :   0 . 0 5 e m ; 
 } 
 
 . w h y - f l o a t i n g - p l a n e   { 
     p o s i t i o n :   a b s o l u t e ; 
     b o t t o m :   5 % ; 
     r i g h t :   - 5 % ; 
     w i d t h :   6 0 % ; 
     b o r d e r - r a d i u s :   1 2 p x ; 
     b o x - s h a d o w :   0   2 0 p x   4 0 p x   r g b a ( 0 , 0 , 0 , 0 . 4 ) ; 
     z - i n d e x :   3 ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   9 9 2 p x )   { 
     . w h y - g r i d   { 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
     } 
     . w h y - v i s u a l   { 
         m a r g i n - t o p :   4 r e m ; 
     } 
 } 
  
 