/* 
  الشركة الخليج - Riyadh Premium Cleaning & Pest Control
  Global Design System & Stylesheet (Phase 1)
*/

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --navy-deep: #07141F;
  --navy-petroleum: #0A2633;
  --aqua-cyan: #20D6C7;
  --ice-soft: #EAF7F6;
  --sand-warm: #D8C5A1;
  --white: #FFFFFF;
  --black-near: #04090D;
  
  /* Status & Accents */
  --aqua-hover: #17bfae;
  --glass-bg: rgba(7, 20, 31, 0.6);
  --glass-border: rgba(32, 214, 199, 0.15);
  --card-border: rgba(234, 247, 246, 0.05);
  --card-border-hover: rgba(32, 214, 199, 0.3);
  
  /* Fonts */
  --font-family: 'IBM Plex Sans Arabic', sans-serif;
  
  /* Layout Sizing */
  --max-width: 1400px;
  --header-height: 80px;
  --header-height-scrolled: 70px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  font-family: var(--font-family);
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--navy-deep);
  color: var(--ice-soft);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

button, input, textarea {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

button {
  cursor: pointer;
}

/* Helper Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--white) 30%, var(--ice-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.text-sand {
  color: var(--sand-warm);
}

.section-padding {
  padding: 8rem 0;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: transparent;
  border-bottom: 1px solid rgba(234, 247, 246, 0.03);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  height: var(--header-height-scrolled);
  background-color: rgba(4, 9, 13, 0.9);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

/* Logo System */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  fill: none;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--white);
}

/* Navigation Links */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(234, 247, 246, 0.8);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--aqua-cyan);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--aqua-cyan);
  transition: var(--transition-smooth);
}

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

/* Dropdown Mega Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%) translateY(15px);
  width: 680px;
  background: var(--black-near);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.75rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  z-index: 1010;
}

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

.dropdown-column-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--sand-warm);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(216, 197, 161, 0.15);
  padding-bottom: 0.25rem;
}

.dropdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.dropdown-link {
  font-size: 0.9rem;
  color: rgba(234, 247, 246, 0.75);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.dropdown-link:hover {
  background: rgba(32, 214, 199, 0.05);
  color: var(--aqua-cyan);
  padding-right: 0.75rem;
}

.dropdown-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--aqua-cyan);
  fill: none;
  stroke-width: 2px;
  transition: var(--transition-fast);
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--aqua-cyan);
  color: var(--black-near);
}

.btn-primary:hover {
  background-color: var(--aqua-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(32, 214, 199, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(234, 247, 246, 0.2);
  color: var(--ice-soft);
  background-color: rgba(7, 20, 31, 0.4);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--aqua-cyan);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hamburger Trigger */
.menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: none;
  border: none;
  z-index: 1100;
}

.menu-trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--ice-soft);
  transition: var(--transition-smooth);
  transform-origin: center;
}

/* Hamburger active transformations */
.menu-trigger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--aqua-cyan);
}
.menu-trigger.active span:nth-child(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--aqua-cyan);
}

/* Mobile Side Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  background-color: var(--black-near);
  border-left: 1px solid var(--glass-border);
  z-index: 1050;
  padding: 6rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 30px rgba(0, 0, 0, 0.6);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(4, 9, 13, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu-item > a, .mobile-menu-item > button {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: right;
}

.mobile-services-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--ice-soft);
  fill: none;
  stroke-width: 2px;
  transition: var(--transition-fast);
}

.mobile-services-toggle.active svg {
  transform: rotate(180deg);
  stroke: var(--aqua-cyan);
}

/* Collapsible nested mobile service list */
.mobile-sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  list-style: none;
  padding-right: 1rem;
  margin-top: 0.5rem;
  border-right: 1px solid rgba(32, 214, 199, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-sub-menu.expanded {
  max-height: 500px;
}

.mobile-sub-link {
  font-size: 0.95rem;
  color: rgba(234, 247, 246, 0.7);
  display: block;
  padding: 0.25rem 0;
}

.mobile-sub-link:hover {
  color: var(--aqua-cyan);
}

.mobile-drawer-footer {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-drawer-footer .btn {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(10, 38, 51, 0.4) 0%, rgba(7, 20, 31, 0) 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero-content {
  text-align: right;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(32, 214, 199, 0.08);
  border: 1px solid rgba(32, 214, 199, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--aqua-cyan);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(234, 247, 246, 0.85);
  margin-bottom: 2.75rem;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-explore {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sand-warm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1rem;
}

.hero-explore:hover {
  color: var(--white);
}

.hero-explore svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
  transition: var(--transition-fast);
}

.hero-explore:hover svg {
  transform: translateY(3px);
}

/* 3D Scene Container */
.hero-visual-container {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

#hero-canvas {
  width: 100%;
  height: 100%;
  outline: none;
}

/* 3D Visual Loader & Fallback Graphic */
.hero-fallback-graphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 38, 51, 0.6) 0%, rgba(7, 20, 31, 0.9) 70%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(234, 247, 246, 0.03);
}

.hero-fallback-shapes {
  width: 80%;
  height: 80%;
  opacity: 0.25;
  stroke: var(--aqua-cyan);
  stroke-width: 1;
  fill: none;
}

.hero-fallback-shapes path {
  transition: stroke-dashoffset 2s ease;
}

/* Loader indicator */
.hero-loader {
  position: absolute;
  z-index: 5;
  color: var(--aqua-cyan);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.loader-spinner {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(32, 214, 199, 0.2);
  border-top-color: var(--aqua-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Section 2: Service Signal Strip (Marquee) */
.signal-strip-section {
  background-color: var(--black-near);
  border-top: 1px solid rgba(234, 247, 246, 0.03);
  border-bottom: 1px solid rgba(234, 247, 246, 0.03);
  padding: 1.75rem 0;
  overflow: hidden;
}

.marquee-container {
  display: flex;
  width: max-content;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  padding-left: 4rem;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(234, 247, 246, 0.85);
}

.marquee-dot {
  width: 8px;
  height: 8px;
  background-color: var(--aqua-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--aqua-cyan);
}

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

/* Section 3: Services Introduction & Cards */
.services-section {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-petroleum) 100%);
}

.section-header {
  max-width: 700px;
  margin-bottom: 5rem;
  text-align: right;
}

.section-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--aqua-cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.05rem;
  color: rgba(234, 247, 246, 0.75);
}

/* Service Grid & Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.service-card {
  background-color: rgba(7, 20, 31, 0.5);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
}

.service-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(7, 20, 31, 0.9) 10%, rgba(7, 20, 31, 0) 100%);
  opacity: 0.85;
}

.service-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sand-warm);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.9rem;
  color: rgba(234, 247, 246, 0.65);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.service-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--aqua-cyan);
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
  transition: var(--transition-fast);
}

/* Service Card Hover Interactions */
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-border-hover);
  box-shadow: 0 15px 35px rgba(32, 214, 199, 0.08);
}

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

.service-card:hover .service-card-link svg {
  transform: translateX(-4px);
}

/* Section 4: Split-Screen Transformation Slider */
.transformation-section {
  background-color: var(--navy-deep);
  border-top: 1px solid rgba(234, 247, 246, 0.03);
}

.transformation-wrapper {
  position: relative;
  width: 100%;
  height: 550px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(234, 247, 246, 0.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.transformation-pane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.transformation-before {
  z-index: 1;
}

.transformation-after {
  z-index: 2;
  width: 50%;
  /* clipping to cover precisely left side and allow custom divider sweep */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.transformation-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.transformation-label {
  position: absolute;
  bottom: 2rem;
  padding: 0.5rem 1rem;
  background-color: rgba(4, 9, 13, 0.85);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.transformation-label.label-before {
  right: 2rem;
  border-right: 2px solid var(--sand-warm);
  color: var(--sand-warm);
}

.transformation-label.label-after {
  left: 2rem;
  border-left: 2px solid var(--aqua-cyan);
  color: var(--aqua-cyan);
}

/* Slider Handle Bar */
.transformation-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--aqua-cyan);
  z-index: 20;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(32, 214, 199, 0.5);
}

.transformation-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background-color: var(--black-near);
  border: 2px solid var(--aqua-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
}

.transformation-handle:hover .transformation-handle-button {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--aqua-cyan);
  border-color: var(--black-near);
}

.transformation-handle-button svg {
  width: 20px;
  height: 20px;
  stroke: var(--aqua-cyan);
  fill: none;
  stroke-width: 2.5px;
  transition: var(--transition-fast);
}

.transformation-handle:hover .transformation-handle-button svg {
  stroke: var(--black-near);
}

/* Call-to-action Global Module */
.cta-banner-section {
  padding: 6rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(32, 214, 199, 0.05) 0%, rgba(7, 20, 31, 0) 50%), var(--black-near);
}

.cta-box {
  background: linear-gradient(135deg, rgba(10, 38, 51, 0.4) 0%, rgba(7, 20, 31, 0.2) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 4rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.cta-text {
  max-width: 650px;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(234, 247, 246, 0.85);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Floating Actions & Sticky Bottom Navigation */
.floating-whatsapp {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 990;
  width: 54px;
  height: 54px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.mobile-contact-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(4, 9, 13, 0.95);
  border-top: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 995;
  padding: 0.75rem 1.5rem calc(0.75rem + env(safe-area-inset-bottom));
  gap: 1rem;
}

.mobile-contact-bar .btn {
  flex: 1;
  font-size: 0.9rem;
  padding: 0.75rem;
}

/* Reusable Inner Page Layouts */
.inner-hero {
  padding: 10rem 0 5rem;
  background: radial-gradient(circle at 50% -20%, rgba(10, 38, 51, 0.5) 0%, rgba(7, 20, 31, 0) 70%), var(--navy-deep);
  border-bottom: 1px solid rgba(234, 247, 246, 0.03);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(234, 247, 246, 0.6);
}

.breadcrumbs li a:hover {
  color: var(--aqua-cyan);
}

.breadcrumb-separator {
  transform: rotate(180deg);
  width: 12px;
  height: 12px;
  stroke: rgba(234, 247, 246, 0.4);
  fill: none;
  stroke-width: 2px;
}

.inner-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.inner-intro {
  font-size: 1.1rem;
  color: rgba(234, 247, 246, 0.8);
  max-width: 800px;
}

.inner-content-section {
  padding: 6rem 0;
}

.inner-grid-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 3.5rem;
}

.inner-main-body {
  font-size: 1.05rem;
  color: rgba(234, 247, 246, 0.85);
}

.inner-main-body h2 {
  font-size: 1.75rem;
  color: var(--white);
  margin: 2.5rem 0 1rem;
}

.inner-main-body p {
  margin-bottom: 1.5rem;
}

.inner-main-body ul {
  margin: 1rem 1.5rem 2rem 0;
  list-style-type: none;
}

.inner-main-body ul li {
  position: relative;
  padding-right: 1.5rem;
  margin-bottom: 0.75rem;
}

.inner-main-body ul li::before {
  content: '';
  position: absolute;
  top: 0.65rem;
  right: 0;
  width: 6px;
  height: 6px;
  background-color: var(--aqua-cyan);
  border-radius: 50%;
}

.inner-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background-color: rgba(10, 38, 51, 0.3);
  border: 1px solid rgba(234, 247, 246, 0.03);
  border-radius: 12px;
  padding: 1.75rem;
}

.widget-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(234, 247, 246, 0.05);
  padding-bottom: 0.5rem;
}

.widget-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.widget-link {
  font-size: 0.95rem;
  color: rgba(234, 247, 246, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget-link:hover {
  color: var(--aqua-cyan);
  padding-right: 0.25rem;
}

/* Footer Section */
.site-footer {
  background-color: var(--black-near);
  border-top: 1px solid var(--glass-border);
  padding: 6rem 0 3rem;
  position: relative;
}

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

.footer-about-logo {
  margin-bottom: 1.5rem;
}

.footer-about-text {
  font-size: 0.95rem;
  color: rgba(234, 247, 246, 0.65);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.footer-social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(7, 20, 31, 0.5);
  border: 1px solid rgba(234, 247, 246, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  background-color: var(--aqua-cyan);
  border-color: var(--aqua-cyan);
  color: var(--black-near);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.75rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: 30px;
  height: 2px;
  background-color: var(--aqua-cyan);
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-menu li a {
  font-size: 0.95rem;
  color: rgba(234, 247, 246, 0.7);
}

.footer-menu li a:hover {
  color: var(--aqua-cyan);
  padding-right: 0.25rem;
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-info li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(234, 247, 246, 0.7);
}

.footer-contact-info li svg {
  width: 18px;
  height: 18px;
  stroke: var(--aqua-cyan);
  stroke-width: 2px;
  fill: none;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(234, 247, 246, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: rgba(234, 247, 246, 0.5);
}

/* Reduced Motion Settings */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .marquee-track {
    animation-play-state: paused !important;
  }
  .btn, .service-card, .service-card img, .transformation-handle-button {
    transition: none !important;
    transform: none !important;
  }
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
  }
}

/* Responsive Media Queries */

/* Tablet layouts (max-width: 1100px) */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* Small tablets / landscape phones (max-width: 768px) */
@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
  .desktop-nav, .header-actions {
    display: none;
  }
  .menu-trigger {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-content {
    order: 1;
    text-align: center;
  }
  .hero-badge {
    margin-bottom: 1.5rem;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-explore {
    margin-right: 0;
  }
  .hero-visual-container {
    order: 2;
    height: 400px;
  }
  .inner-grid-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }
  .cta-buttons {
    width: 100%;
    justify-content: center;
  }
  .floating-whatsapp {
    display: none; /* Hide floating on mobile to use sticky footer contact bar */
  }
  .mobile-contact-bar {
    display: flex;
  }
  body {
    padding-bottom: 60px; /* Spacer for sticky bar */
  }
}

/* Smart phones (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .transformation-wrapper {
    height: 380px;
  }
  .transformation-label {
    bottom: 1rem;
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
  }
  .transformation-label.label-before {
    right: 1rem;
  }
  .transformation-label.label-after {
    left: 1rem;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-buttons .btn {
    width: 100%;
  }
  .logo-text {
    font-size: 1.25rem;
  }
  .mobile-nav-drawer {
    padding: 5rem 1.5rem 2rem;
  }
}

/* ==========================================================================
   Phase 2 Homepage Styling Additions
   ========================================================================== */

/* Asymmetric Service Mosaic Grid */
.services-mosaic-section {
  background: var(--navy-deep);
}

.services-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.services-mosaic .service-card {
  height: auto;
  min-height: 380px;
}

.services-mosaic .card-tall {
  grid-column: span 4;
  grid-row: span 2;
}

.services-mosaic .card-med {
  grid-column: span 4;
}

.services-mosaic .card-wide {
  grid-column: span 8;
  min-height: 340px;
}

.services-mosaic .card-compact {
  grid-column: span 6;
  min-height: 320px;
}

/* Layer B Compact Service Grid */
.services-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(234, 247, 246, 0.05);
  padding-top: 4rem;
}

.compact-service-card {
  background: rgba(10, 38, 51, 0.4);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.compact-service-card:hover {
  border-color: var(--aqua-cyan);
  background: rgba(32, 214, 199, 0.05);
  transform: translateY(-3px);
}

.compact-service-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}

.compact-service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.compact-service-desc {
  font-size: 0.85rem;
  color: rgba(234, 247, 246, 0.6);
}

.compact-service-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(7, 20, 31, 0.6);
  border: 1px solid rgba(234, 247, 246, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua-cyan);
  transition: var(--transition-fast);
}

.compact-service-card:hover .compact-service-arrow {
  background: var(--aqua-cyan);
  color: var(--black-near);
  transform: rotate(-45deg);
}

/* Material Selector Tabs & Content Panels */
.material-selector-section {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--black-near) 100%);
  border-top: 1px solid rgba(234, 247, 246, 0.03);
}

.selector-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.selector-tabs {
  display: flex;
  gap: 1rem;
  background: rgba(10, 38, 51, 0.6);
  border: 1px solid var(--glass-border);
  padding: 0.5rem;
  border-radius: 40px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.selector-tab-btn {
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(234, 247, 246, 0.75);
  transition: var(--transition-fast);
}

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

.selector-tab-btn.active {
  background: var(--aqua-cyan);
  color: var(--black-near);
  box-shadow: 0 4px 15px rgba(32, 214, 199, 0.25);
}

.selector-panels {
  position: relative;
  min-height: 400px;
  background: rgba(10, 38, 51, 0.2);
  border: 1px solid rgba(234, 247, 246, 0.03);
  border-radius: 16px;
  overflow: hidden;
}

.selector-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 3rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1;
}

.selector-panel.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
}

.selector-text {
  text-align: right;
}

.selector-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.selector-desc {
  font-size: 1.05rem;
  color: rgba(234, 247, 246, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.selector-visual-wrapper {
  width: 100%;
  height: 300px;
  background: rgba(7, 20, 31, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(234, 247, 246, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.selector-visual-wrapper svg {
  width: 100%;
  height: 100%;
}

/* Property Types Storyboard */
.storyboard-section {
  background: var(--navy-deep);
}

.storyboard-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  align-items: center;
}

.storyboard-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.storyboard-nav-item button {
  width: 100%;
  text-align: right;
  padding: 1.25rem 1.75rem;
  background: rgba(10, 38, 51, 0.3);
  border: 1px solid rgba(234, 247, 246, 0.03);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(234, 247, 246, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.storyboard-nav-item button::after {
  content: '←';
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-fast);
}

.storyboard-nav-item button:hover {
  background: rgba(10, 38, 51, 0.6);
  color: var(--white);
}

.storyboard-nav-item.active button {
  background: rgba(32, 214, 199, 0.08);
  border-color: var(--aqua-cyan);
  color: var(--aqua-cyan);
  padding-right: 2.25rem;
}

.storyboard-nav-item.active button::after {
  opacity: 1;
  transform: translateX(0);
}

.storyboard-display {
  position: relative;
  min-height: 480px;
  background: rgba(4, 9, 13, 0.4);
  border: 1px solid rgba(234, 247, 246, 0.03);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.storyboard-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.storyboard-panel.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.storyboard-bg-graphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.storyboard-bg-graphic svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.storyboard-panel-content {
  position: relative;
  z-index: 5;
  text-align: right;
  background: linear-gradient(0deg, rgba(7, 20, 31, 0.95) 40%, rgba(7, 20, 31, 0) 100%);
  padding: 2rem 0 0;
  width: 100%;
}

.storyboard-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.storyboard-desc {
  font-size: 1.05rem;
  color: rgba(234, 247, 246, 0.85);
  margin-bottom: 1.75rem;
  max-width: 550px;
}

/* Post-Construction Showcase (Scroll linked) */
.post-construction-showcase-section {
  background: var(--navy-deep);
  border-top: 1px solid rgba(234, 247, 246, 0.03);
}

.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.showcase-content {
  text-align: right;
}

.showcase-visual-container {
  position: relative;
  width: 100%;
  height: 480px;
  background: #04090D;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(234, 247, 246, 0.05);
}

.showcase-visual-container svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.showcase-haze-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(234, 247, 246, 0.18);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 5;
  pointer-events: none;
}

.showcase-film-tape {
  position: absolute;
  width: 150%;
  height: 40px;
  background: repeating-linear-gradient(
    -45deg,
    #D8C5A1 0px,
    #D8C5A1 20px,
    #07141F 20px,
    #07141F 40px
  );
  top: 40%;
  left: -25%;
  transform: rotate(-15deg);
  z-index: 6;
  opacity: 0.8;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  pointer-events: none;
}

/* Façade Cleaning Light Sweep */
.facade-sweep-section {
  position: relative;
  background: var(--black-near);
  overflow: hidden;
  padding: 8rem 0;
  border-top: 1px solid rgba(234, 247, 246, 0.03);
}

.facade-sweep-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.facade-sweep-visual {
  position: relative;
  width: 100%;
  height: 500px;
  background: #07141F;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(234, 247, 246, 0.05);
}

.facade-sweep-visual svg {
  width: 100%;
  height: 100%;
}

.facade-sweep-light {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 250px;
  background: linear-gradient(to right, rgba(32, 214, 199, 0) 0%, rgba(32, 214, 199, 0.25) 50%, rgba(255, 255, 255, 0.15) 60%, rgba(32, 214, 199, 0) 100%);
  z-index: 5;
  pointer-events: none;
  transform: translateX(-100%);
}

/* Sofa & Carpet Styling (Soft Ice Background) */
.furniture-upholstery-section {
  background-color: var(--ice-soft);
  color: var(--navy-deep);
}

.furniture-upholstery-section .section-title {
  color: var(--navy-deep);
}

.furniture-upholstery-section .section-desc {
  color: rgba(7, 20, 31, 0.8);
}

.furniture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.furniture-card {
  background-color: var(--white);
  border: 1px solid rgba(7, 20, 31, 0.05);
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 0 15px 35px rgba(7, 20, 31, 0.03);
  transition: var(--transition-smooth);
}

.furniture-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(7, 20, 31, 0.07);
  border-color: rgba(32, 214, 199, 0.4);
}

.furniture-card-visual {
  width: 100%;
  height: 180px;
  background-color: var(--ice-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.furniture-card-visual svg {
  width: 100%;
  height: 100%;
}

.furniture-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.furniture-card-desc {
  font-size: 1rem;
  color: rgba(7, 20, 31, 0.8);
  line-height: 1.7;
}

.furniture-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--navy-deep);
  border-bottom: 2px solid var(--sand-warm);
  width: max-content;
  padding-bottom: 0.25rem;
}

.furniture-card:hover .furniture-card-link {
  color: var(--aqua-hover);
  border-color: var(--aqua-hover);
}

/* Pest Control Section ("Protected Space") */
.pest-control-home-section {
  background-color: var(--navy-deep);
}

.pest-control-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.pest-control-visual-container {
  position: relative;
  width: 100%;
  height: 450px;
  background-color: var(--black-near);
  border-radius: 16px;
  border: 1px solid rgba(234, 247, 246, 0.04);
  overflow: hidden;
}

.pest-control-visual-container svg {
  width: 100%;
  height: 100%;
}

.visual-disclaimer-tag {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: rgba(7, 20, 31, 0.8);
  border: 1px solid rgba(234, 247, 246, 0.05);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: rgba(234, 247, 246, 0.5);
  z-index: 5;
  pointer-events: none;
}

/* Perimeter Radar Pulse Animations */
@keyframes radar-pulse {
  0% {
    r: 10px;
    opacity: 0.8;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    r: 70px;
    opacity: 0;
  }
}

.radar-pulse-ring {
  animation: radar-pulse 3s infinite linear;
  transform-origin: center;
}

.radar-pulse-ring:nth-child(2) {
  animation-delay: 1.5s;
}

/* Tank Cleaning Exploded View */
.tank-insulation-home-section {
  background-color: var(--black-near);
  border-top: 1px solid rgba(234, 247, 246, 0.03);
}

.tank-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tank-visual-container {
  position: relative;
  width: 100%;
  height: 480px;
  background: rgba(10, 38, 51, 0.2);
  border-radius: 16px;
  border: 1px solid rgba(234, 247, 246, 0.05);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.tank-visual-container svg {
  width: 100%;
  height: 100%;
}

.tank-layer-group {
  cursor: pointer;
}

.tank-layer-group path {
  transition: var(--transition-smooth);
}

.tank-layer-group:hover path {
  stroke: var(--aqua-cyan) !important;
  fill-opacity: 0.25 !important;
  transform: translateY(-10px);
}

/* draggables Comparison Slider Suite */
.comparison-suite-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.comparison-suite-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
}

.comparison-suite-tab-btn {
  padding: 0.65rem 1.5rem;
  background: rgba(10, 38, 51, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(234, 247, 246, 0.7);
  transition: var(--transition-fast);
}

.comparison-suite-tab-btn.active {
  background: var(--aqua-cyan);
  border-color: var(--aqua-cyan);
  color: var(--black-near);
}

.comparison-suite-sliders {
  position: relative;
  width: 100%;
  min-height: 550px;
}

.comparison-slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(234, 247, 246, 0.05);
}

.comparison-slider-wrapper.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* How Services Request Works (Scroll drawn path) */
.request-process-section {
  background-color: var(--navy-deep);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(234, 247, 246, 0.03);
}

.process-layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  margin-top: 5rem;
  z-index: 5;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(10, 38, 51, 0.8);
  border: 2.5px solid rgba(234, 247, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 10;
  transition: var(--transition-smooth);
}

.process-step:hover .process-step-num {
  border-color: var(--aqua-cyan);
  color: var(--aqua-cyan);
  box-shadow: 0 0 20px rgba(32, 214, 199, 0.25);
  transform: translateY(-5px);
}

.process-step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.process-step-desc {
  font-size: 0.95rem;
  color: rgba(234, 247, 246, 0.75);
  max-width: 280px;
  line-height: 1.6;
}

.process-path-svg-container {
  position: absolute;
  top: 5rem;
  left: 10%;
  right: 10%;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}

.process-path-svg-container svg {
  width: 100%;
  height: 100%;
}

.process-draw-line {
  fill: none;
  stroke: rgba(234, 247, 246, 0.05);
  stroke-width: 3;
  stroke-dasharray: 8 6;
}

.process-active-line {
  fill: none;
  stroke: var(--aqua-cyan);
  stroke-width: 3.5;
  stroke-linecap: round;
}

/* Riyadh Service Area Map section */
.service-areas-home-section {
  background-color: var(--black-near);
  border-top: 1px solid rgba(234, 247, 246, 0.03);
}

.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
  align-items: center;
}

.areas-visual {
  position: relative;
  width: 100%;
  height: 480px;
  background-color: rgba(10, 38, 51, 0.2);
  border-radius: 16px;
  border: 1px solid rgba(234, 247, 246, 0.05);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.areas-visual svg {
  width: 100%;
  height: 100%;
}

.map-quadrant-path {
  fill: rgba(7, 20, 31, 0.7);
  stroke: rgba(234, 247, 246, 0.05);
  stroke-width: 1.5;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.map-quadrant-path:hover {
  fill: rgba(32, 214, 199, 0.08);
  stroke: var(--aqua-cyan);
}

.area-direction-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  list-style: none;
}

.area-direction-card {
  background: rgba(10, 38, 51, 0.3);
  border: 1px solid rgba(234, 247, 246, 0.03);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

.area-direction-card:hover {
  border-color: var(--aqua-cyan);
  background: rgba(32, 214, 199, 0.03);
  transform: translateY(-3px);
}

.area-direction-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.area-direction-desc {
  font-size: 0.85rem;
  color: rgba(234, 247, 246, 0.6);
  line-height: 1.5;
}

.area-direction-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--aqua-cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

/* Why Us Editorial Section */
.why-us-editorial-section {
  background: var(--navy-deep);
  border-top: 1px solid rgba(234, 247, 246, 0.03);
}

.editorial-layout {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 5rem;
  align-items: flex-start;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.editorial-card {
  border-right: 2.5px solid rgba(234, 247, 246, 0.05);
  padding-right: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.editorial-card:hover {
  border-color: var(--aqua-cyan);
}

.editorial-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.editorial-card-desc {
  font-size: 0.95rem;
  color: rgba(234, 247, 246, 0.75);
  line-height: 1.6;
}

.editorial-sidebar-visual {
  width: 100%;
  height: 380px;
  background: rgba(10, 38, 51, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(234, 247, 246, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.editorial-sidebar-visual svg {
  width: 100%;
  height: 100%;
}

/* Related Service Explorer Component */
.related-explorer-section {
  background-color: var(--black-near);
  border-top: 1px solid rgba(234, 247, 246, 0.03);
}

.explorer-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 4rem;
  align-items: center;
}

.explorer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.explorer-menu-btn {
  width: 100%;
  text-align: right;
  padding: 1.25rem;
  background: rgba(10, 38, 51, 0.2);
  border: 1px solid rgba(234, 247, 246, 0.03);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(234, 247, 246, 0.7);
  transition: var(--transition-smooth);
}

.explorer-menu-btn:hover {
  background: rgba(10, 38, 51, 0.4);
  color: var(--white);
}

.explorer-menu-item.active .explorer-menu-btn {
  background: var(--navy-petroleum);
  border-color: var(--aqua-cyan);
  color: var(--aqua-cyan);
}

.explorer-display {
  background: rgba(10, 38, 51, 0.15);
  border: 1px solid rgba(234, 247, 246, 0.03);
  border-radius: 12px;
  padding: 3rem;
  position: relative;
  min-height: 250px;
}

.explorer-panel {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  text-align: right;
  animation: fadeIn 0.4s ease;
}

.explorer-panel.active {
  display: flex;
}

.explorer-panel-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.explorer-links-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.explorer-card-link {
  background: rgba(7, 20, 31, 0.6);
  border: 1px solid rgba(234, 247, 246, 0.05);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ice-soft);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-fast);
}

.explorer-card-link:hover {
  border-color: var(--aqua-cyan);
  color: var(--aqua-cyan);
  background: rgba(32, 214, 199, 0.03);
}

/* FAQ Accordion behaviour */
.faq-home-section {
  background-color: var(--navy-deep);
  border-top: 1px solid rgba(234, 247, 246, 0.03);
}

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

.faq-item {
  background-color: rgba(10, 38, 51, 0.3);
  border: 1px solid rgba(234, 247, 246, 0.03);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(234, 247, 246, 0.1);
  background-color: rgba(10, 38, 51, 0.4);
}

.faq-item.active {
  border-color: var(--glass-border);
  background-color: rgba(10, 38, 51, 0.5);
}

.faq-header-btn {
  width: 100%;
  padding: 1.5rem 2rem;
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition-fast);
}

.faq-header-btn:focus-visible {
  outline: 2px solid var(--aqua-cyan);
  outline-offset: -2px;
}

.faq-icon-arrow {
  width: 18px;
  height: 18px;
  stroke: var(--aqua-cyan);
  fill: none;
  stroke-width: 2.5px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.faq-answer-inner {
  padding: 0 2rem 1.75rem;
  font-size: 0.95rem;
  color: rgba(234, 247, 246, 0.8);
  line-height: 1.7;
}

/* Immersive Final CTA wave backdrops */
.final-cta-section {
  position: relative;
  background-color: var(--black-near);
  overflow: hidden;
  padding: 9rem 0;
  border-top: 1px solid var(--glass-border);
}

.final-cta-wave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 350px;
  pointer-events: none;
  z-index: 1;
}

.final-cta-wave-svg path {
  fill: none;
  stroke: var(--aqua-cyan);
  stroke-width: 1.5;
  opacity: 0.12;
}

.final-cta-container {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.final-cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.final-cta-desc {
  font-size: 1.1rem;
  color: rgba(234, 247, 246, 0.8);
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.final-cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.final-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 1rem;
}

.final-cta-phone svg {
  stroke: var(--aqua-cyan);
  stroke-width: 2px;
  fill: none;
  width: 24px;
  height: 24px;
  transform: scaleX(-1);
}

/* Responsive adjustments for Phase 2 components */
@media (max-width: 1100px) {
  .services-mosaic .card-tall,
  .services-mosaic .card-med,
  .services-mosaic .card-wide,
  .services-mosaic .card-compact {
    grid-column: span 6;
  }
  .services-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .storyboard-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .storyboard-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .storyboard-nav-item {
    flex: 1 1 30%;
    min-width: 150px;
  }
  .storyboard-nav-item button {
    justify-content: center;
    font-size: 0.95rem;
  }
  .storyboard-nav-item button::after {
    display: none;
  }
  .storyboard-nav-item.active button {
    padding-right: 1.75rem;
  }
  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .editorial-sidebar-visual {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .services-mosaic {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .services-mosaic .card-tall,
  .services-mosaic .card-med,
  .services-mosaic .card-wide,
  .services-mosaic .card-compact {
    grid-column: span 12;
    min-height: auto;
  }
  .services-compact-grid {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }
  .selector-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .selector-visual-wrapper {
    height: 220px;
  }
  .showcase-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .facade-sweep-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .facade-sweep-visual {
    height: 350px;
  }
  .furniture-grid {
    grid-template-columns: 1fr;
  }
  .pest-control-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pest-control-visual-container {
    height: 350px;
  }
  .tank-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .tank-visual-container {
    height: 350px;
  }
  .process-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .process-path-svg-container {
    display: none;
  }
  .areas-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .areas-visual {
    height: 320px;
  }
  .area-direction-list {
    grid-template-columns: 1fr;
  }
  .explorer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .selector-tabs {
    border-radius: 16px;
    padding: 0.25rem;
    gap: 0.5rem;
  }
  .selector-tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  .storyboard-nav-item {
    flex: 1 1 45%;
  }
  .comparison-suite-sliders {
    min-height: 380px;
  }
  .final-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .final-cta-actions .btn {
    width: 100%;
  }
}

/* Hero Page Photographic Grid Layouts */
.hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-image-col {
  position: relative;
  display: block;
}
.hero-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(32, 214, 199, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}
.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 20, 31, 0.4), transparent);
  pointer-events: none;
}

@media (min-width: 992px) {
  .hero-grid-layout {
    grid-template-columns: 1.25fr 0.75fr;
  }
}

/* Premium Rich Content Typography Styles */
.premium-rich-section {
  background-color: var(--navy-deep);
  border-top: 1px solid rgba(234, 247, 246, 0.03);
  padding: 5rem 0;
}
.rich-content-card {
  background: rgba(10, 38, 51, 0.25);
  border: 1px solid rgba(32, 214, 199, 0.12);
  border-radius: 16px;
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  max-width: 1000px;
  margin: 0 auto;
}
.rich-text-content-wrapper {
  color: rgba(234, 247, 246, 0.8);
  line-height: 1.8;
  font-size: 0.98rem;
}
.rich-text-content-wrapper h2, 
.rich-text-content-wrapper h3, 
.rich-text-content-wrapper h4 {
  color: var(--white);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.rich-text-content-wrapper h2 {
  font-size: 1.8rem;
  border-bottom: 1px solid rgba(32, 214, 199, 0.15);
  padding-bottom: 0.75rem;
  color: var(--white);
}
.rich-text-content-wrapper h3 {
  font-size: 1.45rem;
  color: var(--sand-warm);
  border-right: 3px solid var(--aqua-cyan);
  padding-right: 0.75rem;
}
.rich-text-content-wrapper h4 {
  font-size: 1.15rem;
  color: var(--aqua-cyan);
}
.rich-text-content-wrapper p {
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
  color: rgba(234, 247, 246, 0.75);
  line-height: 1.8;
}
.rich-text-content-wrapper ul, 
.rich-text-content-wrapper ol {
  margin-bottom: 1.5rem;
  padding-right: 1.5rem;
}
.rich-text-content-wrapper li {
  margin-bottom: 0.75rem;
  color: rgba(234, 247, 246, 0.7);
  font-size: 0.95rem;
}
.rich-text-content-wrapper li strong {
  color: var(--white);
  font-weight: 600;
}
.rich-text-content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(7, 20, 31, 0.4);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(32, 214, 199, 0.15);
}
.rich-text-content-wrapper th, 
.rich-text-content-wrapper td {
  padding: 1rem;
  border: 1px solid rgba(32, 214, 199, 0.1);
  text-align: right;
  font-size: 0.9rem;
}
.rich-text-content-wrapper th {
  background-color: var(--navy-petroleum);
  color: var(--white);
  font-weight: 700;
}
.rich-text-content-wrapper tr:nth-child(even) {
  background-color: rgba(32, 214, 199, 0.02);
}

@media (max-width: 768px) {
  .rich-content-card {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }
  .rich-text-content-wrapper h2 {
    font-size: 1.5rem;
  }
  .rich-text-content-wrapper h3 {
    font-size: 1.25rem;
  }
}

/* Homepage Hero Conversion & Animation Enhancements */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content .hero-badge {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
}

.hero-content .hero-title {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.25s;
}

.hero-content .hero-description {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
}

.hero-content .hero-ctas {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.55s;
}

/* Pulsing Status Dot */
.marquee-dot {
  animation: pulse-dot 1.8s infinite ease-in-out;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 4px rgba(32, 214, 199, 0.7);
  }
  50% {
    transform: scale(1.25);
    box-shadow: 0 0 14px rgba(32, 214, 199, 1);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 4px rgba(32, 214, 199, 0.7);
  }
}

/* Primary WhatsApp CTA Pulse Ring Glow */
.hero-btn-whatsapp {
  position: relative;
  background-color: #25d366 !important; /* WhatsApp Green for maximum conversion visibility */
  color: #ffffff !important;
  border: 1px solid rgba(37, 211, 102, 0.3) !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-whatsapp:hover {
  background-color: #20ba5a !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4) !important;
}

/* Breathing pulse ring on the primary CTA */
@keyframes pulse-whatsapp-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.hero-btn-whatsapp {
  animation: pulse-whatsapp-ring 2.2s infinite;
}

/* Phone Call CTA Hover Glow */
.hero-btn-phone {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-phone:hover {
  border-color: var(--aqua-cyan) !important;
  box-shadow: 0 8px 20px rgba(32, 214, 199, 0.15);
  transform: translateY(-3px) scale(1.02) !important;
}

.hero-explore svg {
  animation: bounce-arrow 1.6s infinite ease-in-out;
}

@keyframes bounce-arrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* Homepage Hero Photo Display */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(32, 214, 199, 0.15);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.hero-pic-state {
  display: block;
  width: 100%;
  height: 100%;
}

/* Before state is the always-visible base layer */
.before-state {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.before-state img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(0.92) brightness(0.9) saturate(0.9);
}

/* After state sweeps over the before-state */
.after-state {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  animation: clarity-sweep 8s ease-in-out 1s infinite;
}

.after-state img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Directional gradient overlay for text readability */
.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  background: linear-gradient(to left, rgba(7, 20, 31, 0.55) 0%, rgba(7, 20, 31, 0.1) 60%, transparent 100%);
  pointer-events: none;
  border-radius: 20px;
}

/* Thin scan beam effect */
.hero-scan-beam {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--aqua-cyan);
  box-shadow: 0 0 12px var(--aqua-cyan), 0 0 24px rgba(32, 214, 199, 0.4);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: beam-sweep 8s ease-in-out 1s infinite;
}

@keyframes clarity-sweep {
  0%   { clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%); }
  35%  { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  65%  { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  100% { clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%); }
}

@keyframes beam-sweep {
  0%   { left: 0%;   opacity: 0; }
  3%   { left: 0%;   opacity: 0.9; }
  35%  { left: 100%; opacity: 0.9; }
  38%  { left: 100%; opacity: 0; }
  62%  { left: 100%; opacity: 0; }
  65%  { left: 100%; opacity: 0.9; }
  97%  { left: 0%;   opacity: 0.9; }
  100% { left: 0%;   opacity: 0; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .after-state {
    animation: none !important;
    clip-path: none !important;
  }
  .hero-scan-beam { display: none !important; }
  .before-state img { filter: none !important; }
}

/* Responsive hero visual */
@media (max-width: 992px) {
  .hero-visual-container {
    height: 450px;
    margin-top: 2rem;
  }
}
@media (max-width: 576px) {
  .hero-visual-container {
    height: 350px;
  }
}

/* ==========================================================================
   UPGRADED HOMEPAGE COMPONENTS & ENHANCEMENTS
   ========================================================================== */

/* 1. Top Contact Bar */
.top-bar {
  background-color: var(--navy-deep);
  border-bottom: 1px solid rgba(234, 247, 246, 0.05);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 1005;
}
.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  color: rgba(234, 247, 246, 0.7);
}
.top-bar-right {
  display: flex;
  gap: 1.5rem;
}
.top-bar-link {
  color: var(--white);
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}
.top-bar-link:hover {
  color: var(--aqua-cyan);
}
.top-bar-link.whatsapp {
  color: var(--aqua-cyan);
}
.top-bar-link.whatsapp:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .top-bar-right {
    gap: 1rem;
  }
}

/* Update Header position due to top contact bar */
.site-header {
  position: absolute;
  top: 36px;
}
.site-header.scrolled {
  position: fixed;
  top: 0;
}

@media (max-width: 768px) {
  .site-header {
    top: 66px;
  }
  .site-header.scrolled {
    top: 0;
  }
}

/* 2. Hero Background Elements */
.hero-abstract-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--aqua-cyan);
  border-radius: 50%;
  pointer-events: none;
  filter: drop-shadow(0 0 6px var(--aqua-cyan));
  opacity: 0.5;
  z-index: 2;
  animation: sparkle-float 6s infinite ease-in-out;
}
.hero-sparkle-1 { top: 15%; left: 10%; animation-delay: 0s; }
.hero-sparkle-2 { top: 45%; left: 8%; animation-delay: 1.5s; width: 4px; height: 4px; }
.hero-sparkle-3 { top: 75%; left: 15%; animation-delay: 3s; }
.hero-sparkle-4 { top: 25%; left: 85%; animation-delay: 0.5s; }
.hero-sparkle-5 { top: 55%; left: 92%; animation-delay: 2s; width: 5px; height: 5px; }
.hero-sparkle-6 { top: 80%; left: 88%; animation-delay: 3.5s; }

@keyframes sparkle-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 0.8; }
}

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(32, 214, 199, 0.15) 0%, rgba(7, 20, 31, 0) 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 1;
}

/* 3. Hero Trust Badges */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.hero-trust-badge {
  background-color: rgba(10, 38, 51, 0.4);
  border: 1px solid rgba(234, 247, 246, 0.05);
  border-radius: 50px;
  color: rgba(234, 247, 246, 0.85);
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-fast);
}
.hero-trust-badge:hover {
  background-color: rgba(32, 214, 199, 0.1);
  border-color: rgba(32, 214, 199, 0.2);
  color: var(--white);
  transform: translateY(-2px);
}

/* 4. Hero Floating Cards */
.hero-floating-card {
  background: rgba(10, 38, 51, 0.65);
  border: 1px solid rgba(234, 247, 246, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: absolute;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10;
  pointer-events: auto;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.hero-floating-card:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: rgba(32, 214, 199, 0.4);
}
.hfc-icon {
  font-size: 1.5rem;
}
.hfc-text {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.hfc-text strong {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}
.hfc-text span {
  color: rgba(234, 247, 246, 0.7);
  font-size: 0.75rem;
}

/* Positions of floating cards around hero image */
.hfc-1 { top: 12%; right: -5%; animation: float-1 8s infinite ease-in-out; }
.hfc-2 { bottom: 15%; right: -8%; animation: float-2 7s infinite ease-in-out; }
.hfc-3 { top: 25%; left: -6%; animation: float-3 9s infinite ease-in-out; }
.hfc-4 { bottom: 8%; left: -5%; animation: float-4 8.5s infinite ease-in-out; }

@keyframes float-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float-3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}
@keyframes float-4 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@media (max-width: 1200px) {
  .hero-floating-card {
    display: none; /* Hide cards on smaller screens to avoid overlapping */
  }
}

/* 5. Wave Divider */
.hero-wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}
.hero-wave-divider svg {
  position: relative;
  display: block;
  width: calc(140% + 1.3px);
  height: 60px;
  transform: rotateY(180deg);
}

/* 6. Quick Services Strip */
.quick-services-strip {
  background-color: var(--black-near);
  padding: 2.5rem 0 1rem;
  border-bottom: 1px solid rgba(234, 247, 246, 0.02);
}
.quick-services-title {
  color: var(--sand-warm);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.quick-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.quick-service-pill {
  background-color: rgba(10, 38, 51, 0.4);
  border: 1px solid rgba(234, 247, 246, 0.05);
  border-radius: 50px;
  color: rgba(234, 247, 246, 0.9);
  padding: 0.5rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}
.quick-service-pill:hover {
  background-color: rgba(32, 214, 199, 0.12);
  border-color: rgba(32, 214, 199, 0.25);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(32, 214, 199, 0.1);
}
.qsp-icon {
  font-size: 1.1rem;
}

/* 7. Stats Counter Section */
.stats-counter-section {
  background-color: var(--navy-deep);
  padding: 4rem 0;
  border-bottom: 1px solid rgba(234, 247, 246, 0.02);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-card {
  background-color: rgba(10, 38, 51, 0.3);
  border: 1px solid rgba(234, 247, 246, 0.03);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(32, 214, 199, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.stat-number {
  color: var(--aqua-cyan);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-family: system-ui, -apple-system, sans-serif;
}
.stat-label {
  color: rgba(234, 247, 246, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* 8. Service Card Upgrades */
.card-features-list {
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.card-features-list li {
  color: rgba(234, 247, 246, 0.75);
  font-size: 0.85rem;
  position: relative;
  padding-right: 1.25rem;
  text-align: right;
}
.card-features-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--aqua-cyan);
  font-weight: bold;
}
.card-actions-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  border-top: 1px solid rgba(234, 247, 246, 0.05);
  padding-top: 1rem;
}
.btn-card-detail {
  background-color: rgba(32, 214, 199, 0.1);
  border: 1px solid rgba(32, 214, 199, 0.2);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}
.btn-card-detail:hover {
  background-color: var(--aqua-cyan);
  color: var(--navy-deep);
}
.btn-card-detail svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
  transition: transform 0.2s ease;
}
.btn-card-detail:hover svg {
  transform: translateX(-4px);
}
.card-contact-icons {
  display: flex;
  gap: 0.5rem;
}
.card-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-fast);
}
.card-icon-btn.whatsapp {
  background-color: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
}
.card-icon-btn.whatsapp:hover {
  background-color: #25D366;
  color: var(--white);
  transform: scale(1.08);
}
.card-icon-btn.phone {
  background-color: rgba(216, 197, 161, 0.15);
  border: 1px solid rgba(216, 197, 161, 0.3);
  color: var(--sand-warm);
}
.card-icon-btn.phone:hover {
  background-color: var(--sand-warm);
  color: var(--navy-deep);
  transform: scale(1.08);
}
.card-icon-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* 9. Testimonials */
.testimonials-section {
  background-color: var(--black-near);
  border-bottom: 1px solid rgba(234, 247, 246, 0.02);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background-color: rgba(10, 38, 51, 0.3);
  border: 1px solid rgba(234, 247, 246, 0.03);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(32, 214, 199, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.testi-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  background-color: var(--aqua-cyan);
  color: var(--navy-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.testi-meta {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.testi-meta h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
}
.testi-meta span {
  color: rgba(234, 247, 246, 0.5);
  font-size: 0.75rem;
}
.testi-rating {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testi-text {
  color: rgba(234, 247, 246, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* 10. Neighborhood Chips */
.areas-chips-container {
  margin-top: 4rem;
  border-top: 1px solid rgba(234, 247, 246, 0.05);
  padding-top: 2.5rem;
}
.chips-title {
  color: var(--sand-warm);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}
.areas-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.areas-chips span {
  background-color: rgba(10, 38, 51, 0.4);
  border: 1px solid rgba(234, 247, 246, 0.03);
  border-radius: 6px;
  color: rgba(234, 247, 246, 0.75);
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
  transition: var(--transition-fast);
}
.areas-chips span:hover {
  background-color: rgba(32, 214, 199, 0.1);
  border-color: rgba(32, 214, 199, 0.2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 11. Tooltip for WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 990;
  width: 54px;
  height: 54px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
}
.floating-whatsapp .fw-tooltip {
  visibility: hidden;
  position: absolute;
  right: 65px;
  background-color: rgba(10, 38, 51, 0.95);
  color: var(--white);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border: 1px solid rgba(234, 247, 246, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-10px);
  pointer-events: none;
}
.floating-whatsapp .fw-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(10, 38, 51, 0.95);
}
.floating-whatsapp:hover .fw-tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

/* ZED Marketing Footer Credit Style */
.footer-credit {
  color: rgba(234, 247, 246, 0.5);
  font-size: 0.85rem;
}
.footer-credit a {
  transition: var(--transition-fast);
  text-decoration: none;
}
.footer-credit .zed-link {
  color: var(--sand-warm);
  font-weight: 600;
}
.footer-credit .zed-link:hover {
  color: var(--aqua-cyan);
}
.footer-credit .zed-whatsapp-link {
  color: rgba(234, 247, 246, 0.6);
  font-weight: 500;
  border-bottom: 1px dashed rgba(234, 247, 246, 0.3);
}
.footer-credit .zed-whatsapp-link:hover {
  color: #25D366;
  border-bottom-color: #25D366;
}
.footer-credit .zed-separator {
  color: rgba(234, 247, 246, 0.2);
  margin: 0 0.5rem;
}

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







