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

/* --- Global Mobile-First Resets --- */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

section,
header,
footer,
main {
  max-width: 100%;
  overflow-x: clip;
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

/* --- 1. Core Variables & Design Tokens --- */
:root {
  /* Colors */
  --primary: #06233D;
  --primary-rgb: 6, 35, 61;
  --secondary: #00B8D9;
  --secondary-rgb: 0, 184, 217;
  --accent: #39D98A;
  --accent-rgb: 57, 217, 138;
  --bg-gradient: linear-gradient(135deg, #F7FBFD 0%, #EBF4F8 100%);
  --bg-light: #F7FBFD;
  --white: #FFFFFF;
  --text-dark: #102A43;
  --text-muted: #627D98;
  --whatsapp: #25D366;
  --phone: #00B8D9;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-dark: rgba(6, 35, 61, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-border-dark: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(6, 35, 61, 0.05);
  --card-shadow: 0 15px 35px -10px rgba(6, 35, 61, 0.08);
  --card-shadow-hover: 0 20px 40px -5px rgba(0, 184, 217, 0.15);
  
  /* Layout & Animations */
  --font-family: 'Cairo', sans-serif;
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --container-width: 1200px;
}

/* --- 2. CSS Resets & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

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

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

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

section {
  padding: 80px 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* --- 3. Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: var(--radius-pill);
  border: 2px solid var(--bg-light);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* --- 4. Utility Typography & Components --- */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 184, 217, 0.1);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  border: 1px solid rgba(0, 184, 217, 0.15);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 10px 20px -5px rgba(0, 184, 217, 0.3);
}

.btn-primary:hover {
  background: #02a3c0;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -5px rgba(0, 184, 217, 0.45);
}

.btn-secondary {
  background: rgba(6, 35, 61, 0.05);
  color: var(--primary);
  border: 1px solid rgba(6, 35, 61, 0.08);
}

.btn-secondary:hover {
  background: rgba(6, 35, 61, 0.1);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -5px rgba(37, 211, 102, 0.45);
}

.btn-phone {
  background: var(--phone);
  color: var(--white);
  box-shadow: 0 10px 20px -5px rgba(0, 184, 217, 0.3);
}

.btn-phone:hover {
  background: #02a3c0;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -5px rgba(0, 184, 217, 0.45);
}

/* Alt Phone Button - Second Line */
.btn-phone-alt {
  background: #1e3a5f;
  color: var(--white);
  box-shadow: 0 10px 20px -5px rgba(30, 58, 95, 0.3);
}
.btn-phone-alt:hover {
  background: #16304f;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -5px rgba(30, 58, 95, 0.45);
}

/* Glass Card Base Style */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

/* --- 5. Scroll Animations (Scroll Reveal) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: var(--transition-slow);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: var(--transition-slow);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Delay helpers for animations */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* --- 6. Sticky Header --- */
.header-wrapper {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: var(--container-width);
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 14px 24px;
  background: rgba(6, 35, 61, 0.35);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
}

/* Scrolled state */
.header-wrapper.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  padding: 10px 24px;
  background: rgba(6, 35, 61, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 184, 217, 0.15);
  box-shadow: 0 12px 30px -10px rgba(6, 35, 61, 0.3);
  transform: translateX(-50%) translateY(0);
}

.header-wrapper.scrolled .logo-container text {
  fill: var(--white);
}

.header-wrapper.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.header-wrapper.scrolled .nav-link:hover {
  color: var(--secondary);
}

.header-wrapper.scrolled .hamburger-line {
  background: var(--white);
}

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

.logo-container {
  width: 200px;
  height: 48px;
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}

.logo-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-container svg,
.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 8px 4px;
  transition: var(--transition-fast);
  letter-spacing: 0.2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: var(--radius-pill);
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(0, 184, 217, 0.5);
}

.nav-link:hover {
  color: var(--white);
  text-shadow: 0 0 10px rgba(0, 184, 217, 0.3);
  transform: scale(1.03);
}

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

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

.header-actions .btn {
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px -3px rgba(6, 35, 61, 0.1);
}

/* Hamburger menu button (Glass Circle) */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1005;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary);
  box-shadow: 0 0 15px rgba(0, 184, 217, 0.2);
  transform: scale(1.05);
}

.hamburger-line {
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-pill);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Asymmetric Hamburger Line Widths */
.hamburger-line:nth-child(1) {
  width: 18px;
}
.hamburger-line:nth-child(2) {
  width: 14px;
}
.hamburger-line:nth-child(3) {
  width: 22px;
}

/* Active hamburger icon states */
.hamburger.open {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}
.hamburger.open .hamburger-line {
  background: var(--white);
}
.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 20px;
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 20px;
}

/* Mobile drawer menu with glass backdrop */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(6, 35, 61, 0.45);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  z-index: 1001;
  display: flex;
  justify-content: flex-start;
  flex-direction: row-reverse; /* For sliding drawer from right in RTL */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, backdrop-filter 0.4s ease;
  overflow: hidden;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Mobile Nav Content (The Drawer panel) */
.mobile-nav-content {
  width: 380px;
  max-width: 85%;
  height: 100%;
  background: rgba(6, 35, 61, 0.96);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  padding: 30px;
  position: relative;
  right: -100%;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
}

.mobile-nav-content::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

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

/* Drawer Header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer-logo {
  height: 40px;
  display: flex;
  align-items: center;
}

.mobile-drawer-logo img {
  height: 100%;
  object-fit: contain;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
  transform: rotate(90deg);
}

/* Drawer Links */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: auto;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  right: -20px;
  opacity: 0;
}

.mobile-nav.open .mobile-nav-link {
  right: 0;
  opacity: 1;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--secondary);
  border-radius: var(--radius-pill);
  transition: height 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--secondary);
  background: rgba(0, 184, 217, 0.08);
  padding-right: 22px;
}

.mobile-nav-link:hover::before {
  height: 50%;
}

.mobile-nav-link.mobile-nav-pest {
  color: var(--accent);
  font-weight: 800;
}

.mobile-nav-link.mobile-nav-pest:hover {
  background: rgba(57, 217, 138, 0.08);
  color: var(--accent);
}

.mobile-nav-link.mobile-nav-pest::before {
  background: var(--accent);
}

/* Stagger transition delay injection via CSS for mobile-nav-links */
.mobile-nav.open .mobile-nav-link:nth-child(1) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s; }
.mobile-nav.open .mobile-nav-link:nth-child(2) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s; }
.mobile-nav.open .mobile-nav-link:nth-child(3) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s; }
.mobile-nav.open .mobile-nav-link:nth-child(4) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.25s; }
.mobile-nav.open .mobile-nav-link:nth-child(5) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s; }
.mobile-nav.open .mobile-nav-link:nth-child(6) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.35s; }
.mobile-nav.open .mobile-nav-link:nth-child(7) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s; }
.mobile-nav.open .mobile-nav-link:nth-child(8) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.45s; }
.mobile-nav.open .mobile-nav-link:nth-child(9) { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s; }

/* Drawer Footer */
.mobile-nav-footer {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
}

.mobile-nav.open .mobile-nav-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-footer-title {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.mobile-nav-actions .btn {
  width: 100%;
  padding: 12px;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav-actions .btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.mobile-nav-actions .btn-phone {
  background: rgba(0, 184, 217, 0.1);
  border: 1px solid rgba(0, 184, 217, 0.2);
  color: var(--secondary);
  box-shadow: none;
}

.mobile-nav-actions .btn-phone:hover {
  background: var(--secondary);
  color: var(--white);
}

.mobile-nav-actions .btn-phone-alt {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: none;
}

.mobile-nav-actions .btn-phone-alt:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* --- 7. Hero Section --- */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px 0;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Cinematic background with overlays */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.35;
  filter: saturate(1.1) brightness(0.9);
}

/* Colorful lighting gradients to make it feel premium */
.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle at 10% 20%, rgba(0, 184, 217, 0.15) 0%, transparent 60%),
              linear-gradient(to left, var(--primary) 30%, rgba(6, 35, 61, 0.8) 60%, transparent 100%);
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 184, 217, 0.15);
  border: 1px solid rgba(0, 184, 217, 0.25);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

/* Light Sweep sheen animation on title */
.hero-title span::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  animation: sheenSweep 6s infinite;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 14px 32px;
  font-size: 1rem;
}

.hero-actions .btn-secondary-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-actions .btn-secondary-white:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 20px;
}

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

.hero-link svg {
  transition: transform var(--transition-fast);
}

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

/* Micro trust points under buttons */
.hero-trust-bullets {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.hero-bullet svg {
  color: var(--accent);
}

/* Floating interactive cards on the left (RTL) */
.hero-visuals {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  padding: 20px;
  width: 250px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  border: 1px solid var(--glass-border-dark);
}

.floating-card-1 {
  top: 15%;
  right: 5%;
  background: var(--glass-bg-dark);
  animation-name: floatUp;
}

.floating-card-2 {
  bottom: 10%;
  left: 5%;
  background: rgba(0, 184, 217, 0.85);
  animation-name: floatDown;
  animation-delay: 1.5s;
}

.floating-card-3 {
  top: 50%;
  right: 35%;
  background: var(--glass-bg-dark);
  animation-name: floatSide;
  animation-delay: 3s;
  width: 200px;
  padding: 16px;
}

.floating-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.floating-card-2 h4 {
  color: var(--primary);
}

.floating-card p {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}

.floating-card-2 p {
  color: var(--white);
}

.floating-card span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-top: 4px;
}

.floating-card-2 span {
  color: rgba(6, 35, 61, 0.8);
}

.rating-stars {
  color: #FFD700;
  font-size: 1rem;
  margin-top: 4px;
}

/* Background Sparkle Particles */
.sparkle-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.sparkle {
  position: absolute;
  background: var(--white);
  border-radius: 50%;
  animation: shineParticle 4s infinite ease-in-out;
}

/* Animations */
@keyframes pulseGreen {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(57, 217, 138, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(57, 217, 138, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(57, 217, 138, 0); }
}

@keyframes floatUp {
  0% { transform: translateY(0px) rotate(1deg); }
  50% { transform: translateY(-15px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(1deg); }
}

@keyframes floatDown {
  0% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(15px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(-1deg); }
}

@keyframes floatSide {
  0% { transform: translate(0px, 0px); }
  50% { transform: translate(-10px, -10px); }
  100% { transform: translate(0px, 0px); }
}

@keyframes sheenSweep {
  0% { left: -100%; }
  20% { left: 150%; }
  100% { left: 150%; }
}

@keyframes shineParticle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

/* --- 8. Trust Bar --- */
.trust-bar {
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  z-index: 5;
  margin-top: -1px; /* seamless blending with hero background color */
}

.trust-bar-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.trust-item svg {
  color: var(--secondary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 0.85rem;
  display: block;
}

/* --- 9. Services Preview --- */
.services {
  background-color: var(--bg-light);
}

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

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 184, 217, 0.03) 0%, transparent 100%);
  z-index: -1;
}

/* Background image texture pattern */
.service-pattern {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  opacity: 0.03;
  z-index: -1;
  background-image: radial-gradient(var(--primary) 2px, transparent 2.5px);
  background-size: 10px 10px;
  transition: var(--transition);
}

.service-card:hover .service-pattern {
  transform: scale(1.2) rotate(10deg);
  opacity: 0.06;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(6, 35, 61, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin-bottom: 24px;
  border: 1px solid rgba(0, 184, 217, 0.15);
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 28px rgba(0, 184, 217, 0.25);
}

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

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

.service-btn {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.service-btn svg {
  transition: transform var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 184, 217, 0.35);
  box-shadow: var(--card-shadow-hover);
}

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

.service-card:hover .service-btn svg {
  transform: translateX(-6px);
}

/* --- 10. Why Choose Us --- */
.why-us {
  background-color: var(--bg-light);
  overflow: hidden;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.why-us-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 520px;
}

.why-us-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--primary) 10%, rgba(6, 35, 61, 0.4) 60%, transparent 100%);
}

.why-us-stat-card {
  position: absolute;
  bottom: 30px;
  right: 30px;
  left: 30px;
  padding: 24px;
}

.why-us-stat-card p {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.why-us-stat-card span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

/* Bento Grid for reasons list (6 cards) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bento-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 184, 217, 0.02) 0%, transparent 100%);
  z-index: -1;
}

/* Bento sizes */
.bento-col-2 {
  grid-column: span 2;
}

.bento-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 184, 217, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.25rem;
}

.bento-card:hover .bento-card-icon {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.1);
  transition: var(--transition);
}

.bento-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.bento-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 184, 217, 0.25);
  box-shadow: var(--card-shadow);
}

/* Connected vector trace lines */
.bento-grid {
  position: relative;
}

/* --- 11. BEFORE / AFTER Slider (Functional) --- */
/* --- 11. BEFORE / AFTER Slider (Grid & Premium Cards) --- */
.before-after {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.ba-global-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 16px 0 32px 0;
}

.ba-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(6, 35, 61, 0.06);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: 0 4px 10px rgba(6, 35, 61, 0.03);
}

.ba-badge .badge-icon {
  font-size: 1.05rem;
}

.ba-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  width: 100%;
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 35, 61, 0.05);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(6, 35, 61, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.ba-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(6, 35, 61, 0.08);
}

.ba-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ba-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

.ba-card-tag {
  background: rgba(0, 184, 217, 0.08);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.comparison-box {
  width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 35, 61, 0.04);
  touch-action: none; /* Disable default panning/pinch zoom on mobile to ensure drag is responsive */
  user-select: none;
}

.comparison-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

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

.image-after {
  z-index: 2;
  /* Clipped to match slider position */
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

/* Grime / Stain Overlays for realistic before states */
.dirty-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Sits on top of image-before (z-index 1) but below image-after (z-index 2) */
  pointer-events: none;
}

/* Sofa grime: brownish coffee/mud stains & overall fading */
.sofa-grime {
  background: radial-gradient(circle at 25% 35%, rgba(65, 45, 10, 0.22) 0%, transparent 40%),
              radial-gradient(circle at 75% 65%, rgba(50, 30, 5, 0.25) 0%, transparent 35%),
              radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.15) 0%, transparent 60%);
  mix-blend-mode: multiply;
}

/* Kitchen grime: yellowish oil splatters and dark soot around margins */
.kitchen-grime {
  background: radial-gradient(circle at 40% 30%, rgba(120, 100, 20, 0.25) 0%, transparent 45%),
              radial-gradient(circle at 80% 40%, rgba(90, 75, 10, 0.3) 0%, transparent 35%),
              radial-gradient(circle at 15% 70%, rgba(100, 90, 20, 0.2) 0%, transparent 50%),
              linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
  mix-blend-mode: multiply;
}

/* Bathroom scale: soap scum and dull grey water marks */
.bathroom-scale {
  background: radial-gradient(circle at 35% 45%, rgba(255, 255, 255, 0.25) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(245, 245, 245, 0.28) 0%, transparent 45%),
              radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  mix-blend-mode: screen; /* brightens up spots representing whitish soap scum / limescale */
  opacity: 0.85;
}

/* Construction dust: chalky grey-white dust coatings and plaster spots */
.construction-dust {
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.25) 0%, transparent 55%),
              radial-gradient(circle at 50% 40%, rgba(240, 240, 240, 0.3) 0%, transparent 70%),
              linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.15) 100%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.slider-handle-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: var(--white);
  z-index: 3;
  pointer-events: none;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--secondary);
  border: 3px solid var(--white);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 184, 217, 0.3);
  transition: background-color 0.2s, transform 0.2s;
}

.comparison-box:hover .slider-handle-button {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--primary);
}

.image-label {
  position: absolute;
  bottom: 12px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  z-index: 3;
  color: var(--white);
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.label-before {
  right: 12px;
  background: rgba(6, 35, 61, 0.85);
}

.label-after {
  left: 12px;
  background: rgba(0, 184, 217, 0.9);
}

.drag-hint {
  position: absolute;
  top: 12px;
  right: 50%;
  transform: translateX(50%);
  background: rgba(6, 35, 61, 0.7);
  backdrop-filter: blur(4px);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 3;
  pointer-events: none;
  animation: pulse-hint 2s infinite;
  transition: opacity 0.3s;
}

.comparison-box:hover .drag-hint {
  opacity: 0;
}

@keyframes pulse-hint {
  0% { opacity: 0.85; transform: translateX(50%) scale(1); }
  50% { opacity: 0.4; transform: translateX(50%) scale(0.97); }
  100% { opacity: 0.85; transform: translateX(50%) scale(1); }
}

.ba-card-body {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.ba-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ba-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.red-dot {
  background-color: #e57373;
  box-shadow: 0 0 6px #e57373;
}

.green-dot {
  background-color: #81c784;
  box-shadow: 0 0 6px #81c784;
}

.state-label {
  font-weight: 700;
  color: var(--primary);
  min-width: 35px;
}

.state-text {
  color: var(--text-muted);
}

.btn-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  background: var(--white);
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
}

.btn-card-cta:hover {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 6px 15px rgba(0, 184, 217, 0.25);
  transform: translateY(-1px);
}

.btn-card-cta .cta-icon {
  transition: transform 0.3s;
}

.btn-card-cta:hover .cta-icon {
  transform: rotate(10deg) scale(1.1);
}

@media (max-width: 768px) {
  .ba-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ba-card {
    padding: 16px;
  }
}


/* --- 12. Booking Steps --- */
.steps {
  background-color: var(--bg-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

/* Visual timeline connector line on desktop */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 15%;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 184, 217, 0.15) 50%, transparent 100%);
  z-index: 0;
}

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

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0, 184, 217, 0.25);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 24px;
  transition: var(--transition);
}

.step-card:hover .step-number {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 184, 217, 0.25);
}

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

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
}

/* --- 13. Fast Offer CTA --- */
.quick-cta {
  background-color: var(--primary);
  padding: 80px 0;
  overflow: hidden;
}

.quick-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 80%, rgba(0, 184, 217, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.quick-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.quick-cta-content {
  color: var(--white);
  max-width: 650px;
}

.quick-cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.quick-cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
}

.quick-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.quick-cta-actions .btn {
  padding: 14px 32px;
}

/* --- 14. Jeddah Neighborhoods (SEO Section) --- */
.neighborhoods {
  background-color: var(--bg-light);
}

.tabs-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text-muted);
  border: 1px solid rgba(6, 35, 61, 0.08);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  background: rgba(0, 184, 217, 0.05);
  color: var(--secondary);
}

.tab-btn.active {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 8px 20px -5px rgba(0, 184, 217, 0.3);
  border-color: var(--secondary);
}

.neighborhoods-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

.neighborhoods-pane.active {
  display: block;
}

.tags-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.neighborhood-tag {
  background: var(--white);
  border: 1px solid rgba(6, 35, 61, 0.06);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.neighborhood-tag::before {
  content: '📍';
  font-size: 0.8rem;
}

.neighborhood-tag:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--glass-shadow);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- 15. Reviews Section --- */
.reviews {
  background-color: var(--white);
}

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

.review-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-stars {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 24px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 184, 217, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.review-user-info h5 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}

.review-user-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- 16. FAQ Section --- */
.faq {
  background-color: var(--bg-light);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 22px 28px;
  background: var(--white);
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid rgba(6, 35, 61, 0.05);
  border-radius: var(--radius-md);
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
}

.faq-chevron {
  transition: transform var(--transition);
  font-weight: 800;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.faq-content p {
  padding: 0 28px 22px 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ Active state */
.faq-item.active .faq-trigger {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: rgba(0, 184, 217, 0.15);
}

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

.faq-item.active .faq-content {
  max-height: 200px;
  border-color: rgba(0, 184, 217, 0.15);
}

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

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

.footer-logo-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 190px;
  height: 62px;
  display: block;
}

.footer-logo svg,
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo svg text {
  fill: var(--white);
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

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

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

.social-icon:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

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

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-right: 6px;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item svg {
  color: var(--secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

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

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-trust-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

/* --- 18. Sticky CTA & Floating Buttons --- */
.floating-desktop-ctas {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 998;
}

.floating-cta {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
}

.floating-whatsapp {
  background: var(--whatsapp);
  animation: pulseGreenGlow 2s infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
}

.floating-phone {
  background: var(--phone);
}

.floating-phone:hover {
  transform: translateY(-4px) scale(1.05);
}

.floating-phone-alt {
  background: #1e3a5f;
}
.floating-phone-alt:hover {
  transform: translateY(-4px) scale(1.05);
}

.floating-cta svg {
  font-size: 1.5rem;
}

/* Pulsing glow animation for WhatsApp floating button */
@keyframes pulseGreenGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Sticky Bottom CTA Bar */
/* Mobile Sticky Bottom CTA Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(6, 35, 61, 0.08);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  z-index: 1010;
}

/* Hide mobile bottom bar when drawer menu is active */
body.menu-open .mobile-sticky-bar {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.mobile-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.mobile-cta-grid .btn {
  min-width: 0;
  width: 100%;
  height: 52px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  padding: 0 4px;
  box-shadow: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-cta-grid .btn:active {
  transform: scale(0.97);
}

.mobile-cta-grid .btn-phone {
  background: rgba(0, 184, 217, 0.1);
  color: var(--secondary);
}

.mobile-cta-grid .btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.mobile-cta-grid .btn-price {
  background: var(--accent);
  color: var(--primary);
}

/* Hide desktop floating cta on mobile, show mobile cta */
@media (max-width: 768px) {
  .floating-desktop-ctas {
    display: none !important;
  }
  .mobile-sticky-bar {
    display: block;
  }
  body {
    padding-bottom: 88px;
  }
}

/* --- 18.1 Pest Control Sections --- */

/* Pest Control Main Section */
.pest-control-section {
  padding: 80px 0;
  background: var(--bg-gradient);
  position: relative;
  overflow: hidden;
}

.pest-control-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(57, 217, 138, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(0, 184, 217, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.pest-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.pest-content {
  position: relative;
  z-index: 1;
}

.pest-intro {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pest-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.pest-service-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.pest-service-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--accent);
}

.pest-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(57, 217, 138, 0.1), rgba(0, 184, 217, 0.1));
  border-radius: var(--radius-sm);
}

.pest-service-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.pest-service-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Pest Visual */
.pest-visual {
  position: relative;
}

.pest-hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(6, 35, 61, 0.12);
  object-fit: cover;
}

.pest-info-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.pest-info-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.pest-info-card:hover {
  border-color: var(--accent);
}

.pest-info-card svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Pest Problems Section */
.pest-problems {
  padding: 80px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.pest-problems::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 184, 217, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.pest-problems .section-tag,
.pest-problems .section-title,
.pest-problems .section-subtitle {
  color: var(--white);
}

.pest-problems .section-title span {
  color: var(--accent);
}

.pest-problems .section-tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--accent);
}

.pest-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.pest-problem-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.pest-problem-card:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--accent) !important;
  transform: translateY(-4px);
}

.pest-problem-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.pest-problem-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.6;
}

/* Pest Steps Section */
.pest-steps {
  padding: 80px 0;
  background: var(--bg-gradient);
  position: relative;
}

.pest-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.pest-step {
  position: relative;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid rgba(6, 35, 61, 0.06);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  text-align: center;
}

.pest-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--secondary);
}

.pest-step-number {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(0, 184, 217, 0.25);
}

.pest-step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.pest-step-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Service Card Pest Accent */
.service-card-pest .service-icon-box {
  background: linear-gradient(135deg, rgba(57, 217, 138, 0.15), rgba(0, 184, 217, 0.15));
}

.service-card-pest .service-icon-box svg {
  color: var(--accent);
}

/* Nav link pest accent */
.nav-link-pest {
  position: relative;
}

.nav-link-pest::after {
  content: '🛡️';
  font-size: 0.75rem;
  position: absolute;
  top: -2px;
  left: -12px;
}

.mobile-nav-pest {
  color: var(--accent) !important;
  font-weight: 700 !important;
}

/* --- 19. Responsive Media Queries --- */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tags-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .pest-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pest-services-list {
    grid-template-columns: 1fr 1fr;
  }
  .pest-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust-bullets {
    justify-content: center;
  }
  .hero-visuals {
    height: 380px;
    width: 100%;
  }
  .floating-card-1 {
    top: 5%;
    right: 15%;
  }
  .floating-card-2 {
    bottom: 5%;
    left: 15%;
  }
  .floating-card-3 {
    right: 40%;
  }
  .trust-bar-slider {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 24px;
    padding: 0 10px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .trust-bar-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar for smooth ticker-feel */
  }
  .trust-item {
    flex-shrink: 0;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .why-us-image-box {
    height: 350px;
    order: -1;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps-grid::before {
    display: none;
  }
  .quick-cta-box {
    text-align: center;
    justify-content: center;
  }
  .quick-cta-content {
    max-width: 100%;
  }
  .quick-cta-actions {
    justify-content: center;
    width: 100%;
  }
  .tags-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .logo-container {
    width: 140px;
    height: 49px;
  }
  .nav-menu {
    display: none;
  }
  .header-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-col-2 {
    grid-column: span 1;
  }
  .tags-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .pest-split-grid {
    grid-template-columns: 1fr;
  }
  .pest-services-list {
    grid-template-columns: 1fr;
  }
  .pest-problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pest-timeline {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .floating-card {
    width: 180px;
    padding: 12px;
  }
  .floating-card-1 {
    right: 5%;
  }
  .floating-card-2 {
    left: 5%;
  }
  .floating-card-3 {
    display: none; /* Hide 3rd floating card on very small mobile screens */
  }
  .floating-card-4 {
    display: none;
  }
  .pest-problems-grid {
    grid-template-columns: 1fr;
  }
  .tags-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 20. Advanced Visual & Interactive Upgrades --- */

/* Gradient Mesh Animated Background */
.bg-gradient-mesh {
  position: relative;
  background: var(--bg-light);
  overflow: hidden;
}
.bg-gradient-mesh::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(0, 184, 217, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 70% 80%, rgba(57, 217, 138, 0.08) 0%, transparent 40%);
  animation: meshRotate 20s infinite linear;
  pointer-events: none;
  z-index: 0;
}
@keyframes meshRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Water Ripple Floating Bubbles */
.water-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.bubble {
  position: absolute;
  background: rgba(0, 184, 217, 0.1);
  border: 1px solid rgba(0, 184, 217, 0.15);
  border-radius: 50%;
  bottom: -100px;
  animation: floatBubble 12s infinite ease-in;
}
@keyframes floatBubble {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) scale(1.2); opacity: 0; }
}

/* Cinematic Cleaning Strip (Marquee Slider) */
.cinematic-strip {
  background: var(--primary);
  padding: 30px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
  gap: 20px;
}
@keyframes marqueeScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
.marquee-item {
  width: 260px;
  height: 150px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.marquee-item:hover img {
  transform: scale(1.1);
}
.marquee-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 35, 61, 0.85) 20%, rgba(6, 35, 61, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  transition: var(--transition);
}
.marquee-item:hover .marquee-overlay {
  background: linear-gradient(to top, rgba(0, 184, 217, 0.9) 20%, rgba(6, 35, 61, 0.4) 100%);
}
.marquee-item:hover .marquee-text {
  color: var(--primary);
}
.marquee-text {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Bento Services Grid */
.bento-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 30px;
}
.bento-service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--glass-border);
  z-index: 1;
}
.bento-service-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: var(--transition-slow);
}
.bento-service-card:hover img {
  transform: scale(1.08);
}
.bento-service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 35, 61, 0.95) 20%, rgba(6, 35, 61, 0.6) 60%, rgba(6, 35, 61, 0.2) 100%);
  z-index: -1;
  transition: var(--transition);
}
.bento-service-card:hover .bento-service-overlay {
  background: linear-gradient(to top, rgba(6, 35, 61, 0.98) 30%, rgba(6, 35, 61, 0.7) 70%, rgba(6, 35, 61, 0.3) 100%);
}
.bento-service-wide {
  grid-column: span 2;
}
.bento-service-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(0, 184, 217, 0.15);
  border: 1px solid rgba(0, 184, 217, 0.25);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  transition: var(--transition);
}
.bento-service-card:hover .bento-service-icon {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}
.bento-service-title {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.bento-service-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 90%;
  display: none;
}
.bento-service-card:hover .bento-service-desc {
  display: block;
  animation: slideUpFade 0.3s ease forwards;
}
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.bento-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: var(--secondary);
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  width: fit-content;
  box-shadow: 0 4px 10px rgba(0, 184, 217, 0.2);
  transition: var(--transition);
  opacity: 0.9;
}
.bento-service-btn:hover {
  background: var(--accent);
  color: var(--primary);
  opacity: 1;
}

/* Why Choose Us: Orbital Layout */
.why-us-orbit-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  width: 100%;
}
.why-us-orbit {
  position: relative;
  width: 600px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-ring {
  position: absolute;
  border: 2px dashed rgba(0, 184, 217, 0.15);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: orbitRotate 80s infinite linear;
  pointer-events: none;
}
@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.orbit-center {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #0d385a 100%);
  border: 4px solid var(--secondary);
  box-shadow: 0 15px 35px rgba(6, 35, 61, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 10;
  text-align: center;
  padding: 10px;
}
.orbit-center svg {
  color: var(--secondary);
  font-size: 2.25rem;
  margin-bottom: 8px;
  animation: pulseNode 2s infinite ease-in-out;
}
.orbit-center h4 {
  font-size: 0.95rem;
  font-weight: 800;
}
.orbit-node {
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(6, 35, 61, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 8;
  transition: var(--transition-fast);
  cursor: default;
}
.orbit-node:hover {
  transform: scale(1.05) translateY(-2px);
  border-color: var(--secondary);
  box-shadow: var(--card-shadow-hover);
}
.orbit-node-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 184, 217, 0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.orbit-node:hover .orbit-node-icon {
  background: var(--secondary);
  color: var(--white);
}
.orbit-node span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* Fallback list for mobile orbit */
.why-us-mobile-list {
  display: none;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Process Timeline Section */
.journey-section {
  background-color: var(--white);
}
.journey-container {
  max-width: 900px;
  margin: 40px auto 0 auto;
  position: relative;
  padding-right: 40px; /* spacing for vertical line */
}
.journey-line {
  position: absolute;
  top: 0;
  right: 15px;
  width: 4px;
  height: 100%;
  background: rgba(0, 184, 217, 0.12);
  border-radius: var(--radius-pill);
}
.journey-progress-line {
  position: absolute;
  top: 0;
  right: 15px;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--secondary) 0%, var(--accent) 100%);
  border-radius: var(--radius-pill);
  transition: height 0.5s ease-out;
}
.journey-step {
  position: relative;
  margin-bottom: 50px;
  opacity: 0.3;
  transform: translateX(20px);
  transition: var(--transition-slow);
}
.journey-step.active {
  opacity: 1;
  transform: translateX(0);
}
.journey-dot {
  position: absolute;
  right: -33px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid rgba(0, 184, 217, 0.3);
  z-index: 5;
  transition: var(--transition);
}
.journey-step.active .journey-dot {
  background: var(--secondary);
  border-color: var(--white);
  box-shadow: 0 0 0 5px rgba(0, 184, 217, 0.25);
}
.journey-card {
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid rgba(6, 35, 61, 0.05);
  box-shadow: var(--glass-shadow);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.journey-step:nth-child(even) .journey-card {
  background: var(--white);
  border-color: rgba(0, 184, 217, 0.08);
}
.journey-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 184, 217, 0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.journey-step.active .journey-card-icon {
  background: var(--secondary);
  color: var(--white);
}
.journey-card-text h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.journey-card-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* Before / After meta styling */
.ba-meta-box {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.ba-meta-item {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(6, 35, 61, 0.03);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}

/* Quote Box form styling */
.quote-box-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.quote-form-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}
.quote-image-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--card-shadow);
  position: relative;
}
.quote-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 35, 61, 0.8) 10%, transparent 80%);
}

/* Bottom mobile bar tweak cleaned */

/* Pricing Packages Section */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 20px;
}
.package-card {
  display: flex;
  flex-direction: column;
  padding: 35px 25px;
  height: 100%;
  position: relative;
  border-radius: var(--radius-md);
  overflow: visible;
}
.package-card.featured {
  border: 2px solid var(--secondary);
  transform: scale(1.03);
  box-shadow: 0 20px 40px -10px rgba(0, 184, 217, 0.15);
}
.package-featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 184, 217, 0.3);
}
.package-header {
  text-align: center;
  margin-bottom: 24px;
}
.package-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.package-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
  flex-grow: 1;
  padding-right: 0;
}
.package-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
}
.package-feature-item svg {
  color: var(--accent);
  flex-shrink: 0;
}
.package-card .btn {
  width: 100%;
  padding: 12px;
  font-size: 0.9rem;
  margin-top: auto;
}
.package-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 30px;
  text-align: center;
  font-weight: 500;
}

/* Quality Guarantee Checklist */
.guarantee-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.guarantee-content {
  display: flex;
  flex-direction: column;
}
.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  padding-right: 0;
  list-style: none;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(6, 35, 61, 0.04);
  box-shadow: 0 4px 12px rgba(6, 35, 61, 0.02);
  transition: var(--transition);
}
.check-item:hover {
  transform: translateX(-4px);
  border-color: rgba(0, 184, 217, 0.15);
  box-shadow: var(--card-shadow);
}
.check-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(57, 217, 138, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.check-text-box h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary);
}
.check-text-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.guarantee-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--card-shadow);
}
.guarantee-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guarantee-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--primary) 10%, transparent 80%);
}
.quality-badge {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  padding: 20px;
  text-align: center;
}
.quality-badge p {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.quality-badge span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Final CTA Form */
.cta-form-container {
  width: 100%;
  max-width: 650px;
  margin: 40px auto 0 auto;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
}
.quick-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}
.form-input, .form-select {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(6, 35, 61, 0.08);
  font-family: var(--font-family);
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
  transition: var(--transition-fast);
  width: 100%;
}
.form-input:focus, .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(0, 184, 217, 0.1);
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23627D98' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 18px center;
  background-size: 16px;
  padding-left: 45px;
}
.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: var(--glass-shadow);
}

/* Count Up number sizing */
.count-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary);
  display: block;
}

/* Responsiveness overrides for new components */
@media (max-width: 992px) {
  .bento-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-service-wide {
    grid-column: span 2;
  }
  .why-us-orbit {
    display: none;
  }
  .why-us-mobile-list {
    display: flex;
  }
  .quote-box-container {
    grid-template-columns: 1fr;
  }
  .quote-image-box {
    display: none;
  }
  .bento-service-desc {
    display: block;
  }
}

@media (max-width: 768px) {
  .bento-services-grid {
    grid-template-columns: 1fr;
  }
  .bento-service-wide {
    grid-column: span 1;
  }
  .bento-service-card {
    height: 280px;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .journey-container {
    padding-right: 25px;
  }
  .journey-line, .journey-progress-line {
    right: 8px;
  }
  .journey-dot {
    right: -15px;
    width: 16px;
    height: 16px;
    top: 6px;
  }
  .journey-card {
    padding: 16px;
    gap: 12px;
  }
  .journey-card-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
}

/* ========================================================
   CRITICAL MOBILE-FIRST RESPONSIVE OVERHAULS (max-width: 768px)
   ======================================================== */
@media (max-width: 768px) {
  /* Force global resets to prevent any horizontal overflow */
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-bottom: 88px !important; /* Safe padding for Sticky Bottom CTA Bar */
  }

  /* Force container padding */
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Force clip/hidden overflow on all layout blocks */
  section, header, footer, main, div, .hero, .why-us, .services, .pest-control-section, .pest-problems, .packages-grid {
    max-width: 100% !important;
    overflow-x: clip !important;
  }

  /* Mobile Header Overhaul */
  .header-wrapper, .header-wrapper.scrolled {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 76px !important;
    padding: 0 16px !important;
    background: rgba(6, 35, 61, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15) !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

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

  .logo-container {
    width: auto !important;
    max-width: 150px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .logo-picture {
    display: block !important;
    height: 100% !important;
    width: 100% !important;
  }

  .logo-picture img {
    height: 100% !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .nav-menu, .header-actions {
    display: none !important; /* Hide desktop nav and desktop actions */
  }

  .hamburger {
    display: flex !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Mobile Hero Overhaul */
  .hero {
    min-height: auto !important;
    height: auto !important;
    padding: 110px 16px 60px 16px !important; /* Fixed side paddings */
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
  }

  .hero-content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  .hero-badge {
    font-size: 0.8rem !important;
    padding: 6px 14px !important;
    max-width: 100% !important;
    width: fit-content !important;
    margin-inline: auto !important;
    white-space: normal !important;
    text-align: center !important;
    margin-bottom: 16px !important;
  }

  .hero-title {
    font-size: clamp(32px, 9vw, 42px) !important;
    line-height: 1.2 !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    margin-bottom: 16px !important;
    text-align: center !important;
  }

  .hero-title span {
    display: inline-block !important;
  }

  .hero-subtitle {
    font-size: clamp(16px, 4.5vw, 19px) !important;
    line-height: 1.8 !important;
    max-width: 100% !important;
    margin-bottom: 24px !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 28px !important;
    margin-bottom: 100px !important; /* Safe padding before bottom sticky bar */
  }

  .hero-actions .btn {
    width: 100% !important;
    min-height: 54px !important;
    justify-content: center !important;
    border-radius: 16px !important;
    font-size: 17px !important;
    margin: 0 !important;
    white-space: normal !important;
    text-align: center !important;
    padding: 12px 16px !important;
    height: auto !important;
  }

  .hero-actions .hero-link {
    justify-content: center !important;
    margin-left: 0 !important;
    margin-top: 8px !important;
    font-size: 15px !important;
  }

  .hero-visuals {
    display: none !important; /* Hide the visual column with floating cards to prevent massive overflow on mobile */
  }

  .hero-trust-bullets {
    justify-content: center !important;
    gap: 10px 16px !important;
    width: 100% !important;
  }

  .hero-bullet {
    font-size: 0.8rem !important;
  }

  /* Disable parallax, large translates, and floating animations on mobile */
  .parallax, .floating-card, .reveal-left, .reveal-right, .why-us-orbit-container, .why-us-orbit {
    transform: none !important;
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Hide decorative assets that bleed outside container */
  .decorative-shape, .sparkle-particles, .water-bubbles, .desktop-only-floating, .sparkle, .bubble {
    display: none !important;
  }

  /* Section Typography Overrides */
  .section-tag {
    font-size: 0.8rem !important;
    padding: 4px 12px !important;
    margin-bottom: 12px !important;
  }

  .section-title {
    font-size: clamp(26px, 7vw, 34px) !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }

  .section-desc {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 32px !important;
  }

  /* Collapse all grids to 1 column on mobile */
  .services-grid, .bento-grid, .areas-grid, .pricing-grid, .reviews-grid, .footer-top,
  .pest-services-list, .pest-split-grid, .why-us-grid, .steps-grid, .packages-grid,
  .guarantee-grid, .ba-cards-grid, .form-row-2 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .bento-col-2 {
    grid-column: span 1 !important;
  }

  /* Trust Bar Touch scrolling styling */
  .trust-bar-slider {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 16px !important;
    justify-content: flex-start !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 10px !important;
  }

  .trust-item {
    flex-shrink: 0 !important;
    width: 260px !important;
    padding: 12px !important;
    border-radius: var(--radius-sm) !important;
  }

  /* Before/After component responsive fix */
  .comparison-box {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    max-width: 100% !important;
  }

  /* Quote Box responsive fix */
  .quote-box-container {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }
  .quote-image-box {
    display: none !important;
  }

  /* FAQ items fit */
  .faq-item {
    padding: 14px 18px !important;
  }
  .faq-trigger span:first-child {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
  }

  /* Footer bottom alignment */
  .footer-bottom {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center !important;
  }

  /* Mobile Drawer Menu sizing */
  .mobile-nav-content {
    width: 100% !important;
    max-width: 320px !important;
    padding: 24px 20px !important;
  }
  
  .mobile-nav-close {
    width: 40px !important;
    height: 40px !important;
  }

  .mobile-nav-links {
    gap: 8px !important;
  }

  .mobile-nav-link {
    font-size: 1.05rem !important;
    padding: 8px 12px !important;
  }

  .mobile-nav-footer {
    margin-top: 24px !important;
    padding-top: 16px !important;
  }

  /* Enforce bottom sticky bar style rules on mobile */
  .floating-desktop-ctas {
    display: none !important;
  }

  .mobile-sticky-bar {
    display: block !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12) !important;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)) !important;
    z-index: 9999 !important;
    border-top: 1px solid rgba(6, 35, 61, 0.08) !important;
  }

  .mobile-cta-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .mobile-cta-grid .btn {
    min-width: 0 !important;
    width: 100% !important;
    height: 52px !important;
    border-radius: 14px !important;
    font-size: 14px !important; /* Slightly smaller to prevent text overlap */
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    white-space: nowrap !important;
    padding: 0 4px !important;
    box-shadow: none !important;
    border: none !important;
    text-transform: none !important;
  }
}
