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

/* --- 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: 0 auto;
  padding: 0 24px;
}

/* --- 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);
}

/* 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: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
  background: rgba(6, 35, 61, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Scrolled state */
.header-wrapper.scrolled {
  padding: 10px 0;
  background: rgba(6, 35, 61, 0.85);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.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;
}

.logo-container {
  width: 220px;
  height: 55px;
  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: 15px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition-fast);
}

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

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

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

.header-actions .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Hamburger menu button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
  padding: 8px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

/* Mobile drawer menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--primary);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 40px;
}

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

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

/* Stagger navigation item display on open */
.mobile-nav.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.open .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.open .mobile-nav-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.open .mobile-nav-link:nth-child(7) { transition-delay: 0.4s; }
.mobile-nav.open .mobile-nav-link:nth-child(8) { transition-delay: 0.45s; }

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 300px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
}

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

.mobile-nav-actions .btn {
  width: 100%;
  padding: 14px;
}

/* Active hamburger icon states */
.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--white);
}

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

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--white);
}

/* --- 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-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-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -10px 30px rgba(6, 35, 61, 0.12);
  border-top: 1px solid rgba(6, 35, 61, 0.05);
  padding: 10px 16px;
  z-index: 999;
}

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

.mobile-cta-grid .btn {
  padding: 12px 6px;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  gap: 4px;
}

.mobile-cta-grid .btn svg {
  font-size: 1rem;
}

/* 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: 70px; /* Add bottom padding so sticky bar doesn't overlay bottom content */
  }
}

/* --- 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;
  }
  .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;
  }
}

@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 */
  }
  .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 */
.mobile-sticky-bar {
  padding: 8px 12px;
}
.mobile-cta-grid .btn-price {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 8px 15px rgba(57, 217, 138, 0.25);
}

/* 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;
  }
}
