/* ===== PREMIUM COLOR PALETTE & ROOT VARIABLES ===== */
:root {
  /* Primary Colors - Deep Ocean Blue/Teal (Professional & Clean) */
  --primary-50: #f0fdfa;
  --primary-100: #ccfbf1;
  --primary-200: #99f6e4;
  --primary-300: #5eead4;
  --primary-400: #2dd4bf;
  --primary-500: #14b8a6;
  --primary-600: #0d9488;
  --primary-700: #0f766e;
  --primary-800: #115e59;
  --primary-900: #134e4a;

  /* Accent Colors - Vibrant Emerald (Fresh & Growth) */
  --accent-50: #ecfdf5;
  --accent-100: #d1fae5;
  --accent-200: #a7f3d0;
  --accent-300: #6ee7b7;
  --accent-400: #34d399;
  --accent-500: #10b981;
  --accent-600: #059669;
  --accent-700: #047857;
  --accent-800: #065f46;
  --accent-900: #064e3b;

  /* CTA Colors - Warm Amber/Orange (Action & Energy) */
  --cta-50: #fffbeb;
  --cta-100: #fef3c7;
  --cta-200: #fde68a;
  --cta-300: #fcd34d;
  --cta-400: #fbbf24;
  --cta-500: #f59e0b;
  --cta-600: #d97706;
  --cta-700: #b45309;
  --cta-800: #92400e;
  --cta-900: #78350f;

  /* Neutral Colors - Sophisticated Navy & Grays */
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-500: #64748b;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  /* Gradient Definitions */
  --gradient-primary: linear-gradient(135deg, var(--primary-600), var(--primary-400));
  --gradient-accent: linear-gradient(135deg, var(--accent-600), var(--accent-400));
  --gradient-sunset: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-ocean: linear-gradient(135deg, #0EA5E9 0%, #14b8a6 50%, #10b981 100%);
  --gradient-premium: linear-gradient(135deg, #1e3a8a 0%, #0f766e 50%, #047857 100%);
  --gradient-aurora: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #4facfe);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-premium: 0 30px 60px -15px rgba(14, 165, 233, 0.3);
  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.4);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--neutral-50);
  color: var(--neutral-900);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--neutral-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  border: 2px solid var(--neutral-100);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-700);
}

/* Selection */
::selection {
  background-color: var(--primary-500);
  color: white;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--gradient-ocean);
  z-index: 9999;
  transition: width var(--transition-fast);
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.5);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.navbar.transparent {
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  border-bottom-color: transparent;
}

.navbar.transparent nav ul li a {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  padding: 10px 60px;
  box-shadow: var(--shadow-xl);
}

.logo img {
  height: 50px;
  transition: transform var(--transition-bounce);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Match logo color to teal accent */
.logo img,
footer .footer-logo img {
  filter: brightness(0) saturate(100%) invert(67%) sepia(20%) saturate(1440%) hue-rotate(120deg) brightness(92%) contrast(92%) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 45px;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: var(--neutral-800);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-base);
  position: relative;
  padding: 8px 12px;
  border-radius: var(--radius-md);
}

nav ul li a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background: var(--gradient-ocean);
  transition: all var(--transition-base);
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

nav ul li a:hover::before,
nav ul li a.active::before {
  width: 80%;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-600);
}

nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 253, 250, 0.98));
  padding: 12px 0;
  list-style: none;
  min-width: 260px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(16, 185, 129, 0.3);
  margin-top: 8px;
  border: 2px solid rgba(16, 185, 129, 0.3);
  z-index: 10000;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul li:hover ul {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: slideDown var(--transition-base);
}

nav ul li ul li {
  padding: 0;
}

nav ul li ul li a {
  color: var(--neutral-900);
  font-size: 0.95rem;
  padding: 14px 24px;
  display: block;
  border-radius: 8px;
  margin: 4px 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
}

nav ul li ul li a::before {
  content: '→';
  position: absolute;
  left: 12px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--primary-600);
  font-weight: bold;
}

nav ul li ul li a:hover {
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  color: var(--primary-800);
  padding-left: 36px;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

nav ul li ul li a:hover::before {
  opacity: 1;
  left: 16px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('Our Service.jpg') center/cover no-repeat fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(14, 165, 233, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
  animation: gradientShift 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 30s linear infinite;
}

.hero > div {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.hero p {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 1.2rem;
  color: var(--neutral-100);
  line-height: 1.8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.btn-primary,
.btn-outline,
.btn-secondary {
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-ocean);
  color: white;
  box-shadow: var(--shadow-premium);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.5);
}

.btn-primary:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: white;
  color: var(--primary-700);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* ===== FLOATING PARTICLES EFFECT ===== */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.8), transparent);
  border-radius: 50%;
  animation: float 20s infinite;
}

/* ===== TRUST BADGES ===== */
.trust-bar {
  background: linear-gradient(135deg, var(--neutral-50) 0%, var(--primary-50) 100%);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid var(--primary-200);
  border-bottom: 1px solid var(--primary-200);
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
  animation: shimmerBg 3s infinite;
}

.trust-badges {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-800);
  font-weight: 700;
  font-size: 1rem;
  opacity: 1;
  padding: 12px 24px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.trust-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-300);
}

.trust-badge svg {
  width: 36px;
  height: 36px;
  fill: var(--primary-600);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.3));
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--gradient-premium);
  padding: 80px 20px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 40s linear infinite;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, var(--accent-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--neutral-100);
  font-weight: 600;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 20px;
  animation: fadeIn 0.8s ease;
  position: relative;
}

.section-dark {
  background: var(--neutral-900);
  color: white;
}

.section-gradient {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-50) 100%);
}

.section h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--neutral-900);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-ocean);
  border-radius: var(--radius-full);
}

.section-dark h2 {
  color: white;
}

.section p.lead {
  text-align: center;
  color: var(--neutral-600);
  max-width: 800px;
  margin: 30px auto 60px;
  font-size: 1.15rem;
  line-height: 1.8;
}

.section-dark p.lead {
  color: var(--neutral-300);
}

/* ===== SERVICE CARDS ===== */
.service-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.service-card {
  background: white;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 2px solid var(--neutral-200);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-ocean);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-400);
}

.service-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover img {
  transform: scale(1.1) rotate(1deg);
}

.service-card .content {
  padding: 28px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: var(--neutral-900);
  font-weight: 700;
}

.service-card p {
  color: var(--neutral-600);
  font-size: 1rem;
  line-height: 1.7;
}

.service-card .learn-more {
  margin-top: auto;
  color: var(--primary-600);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-base);
}

.service-card:hover .learn-more {
  gap: 12px;
}

/* ===== SPLIT SECTIONS ===== */
.split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 60px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  transition: all var(--transition-slow);
  border: 4px solid white;
}

.split img:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 30px 60px rgba(14, 165, 233, 0.3);
}

.pill {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--gradient-ocean);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

.checklist {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  list-style: none;
  padding: 0;
}

.checklist li {
  display: flex;
  align-items: center;
  padding: 12px;
  background: var(--primary-50);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.checklist li:hover {
  background: var(--primary-100);
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.checklist li span {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: var(--neutral-800);
  font-weight: 500;
}

.checklist li span::before {
  content: '✓';
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--gradient-ocean);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  margin-right: 16px;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

/* ===== CTA SECTION ===== */
.cta {
  background: var(--gradient-premium);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

.cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmerBg 4s infinite;
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
}

.cta h2::after {
  background: linear-gradient(90deg, transparent, white, transparent);
}

.cta p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--neutral-100);
  font-size: 1.15rem;
  line-height: 1.8;
}

/* ===== TESTIMONIALS ===== */
.testimonial-strip {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.quote {
  background: white;
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.quote::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 5rem;
  color: var(--primary-100);
  opacity: 0.5;
  font-family: Georgia, serif;
  line-height: 1;
}

.quote::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--gradient-ocean);
  transition: height var(--transition-base);
}

.quote:hover::after {
  height: 100%;
}

.quote:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-300);
}

.quote p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--neutral-700);
  position: relative;
  z-index: 1;
  font-style: italic;
}

.quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote strong {
  color: var(--primary-700);
  font-weight: 700;
}

/* Star Rating */
.stars {
  color: var(--cta-500);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* ===== BANNER MINI ===== */
.banner-mini {
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('az homes.jpg') center/cover no-repeat fixed;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-mini::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.2), transparent 70%);
}

.banner-mini > * {
  position: relative;
  z-index: 1;
}

.banner-mini h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  font-weight: 800;
  color: white;
}

.banner-mini h2::after {
  background: linear-gradient(90deg, transparent, white, transparent);
}

.banner-mini p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--neutral-100);
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-ocean);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
  box-shadow: var(--shadow-premium);
  border: 2px solid white;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-8px) scale(1.1) rotate(360deg);
  box-shadow: var(--shadow-glow);
}

/* ===== FOOTER ===== */
footer {
  position: relative;
  color: white;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  background: var(--neutral-900);
}

footer .footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95)), url('footer.jpeg') no-repeat center center;
  background-size: cover;
  z-index: 1;
}

footer .footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  gap: 50px;
}

footer .footer-column {
  flex: 1 1 280px;
}

footer .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

footer .footer-logo img {
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

footer h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gradient-ocean);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2.2;
}

footer ul li a {
  color: var(--neutral-300);
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-block;
}

footer ul li a:hover {
  color: var(--primary-300);
  transform: translateX(5px);
}

footer .social-links {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

footer .social-links a {
  transition: all var(--transition-base);
  opacity: 0.9;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 2px solid transparent;
}

footer .social-links a:hover {
  transform: translateY(-5px) scale(1.1);
  opacity: 1;
  background: var(--gradient-ocean);
  border-color: white;
}

footer .social-links img {
  height: 22px;
  width: 22px;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 28px 0;
  font-size: 0.95rem;
  z-index: 2;
  position: relative;
  color: var(--neutral-400);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1100;
  position: absolute;
  top: 22px;
  right: 20px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-400);
}

.hamburger div {
  width: 28px;
  height: 3px;
  background-color: var(--neutral-800);
  transition: all var(--transition-base);
  border-radius: var(--radius-full);
}

.navbar.transparent .hamburger div {
  background-color: white;
}

.hamburger.active div:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
  background-color: var(--primary-600);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
  background-color: var(--primary-600);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes shimmerBg {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes gradientShift {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }
  25% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-200px) translateX(-30px);
    opacity: 1;
  }
  75% {
    transform: translateY(-100px) translateX(-80px);
    opacity: 0.6;
  }
}

/* ===== LOADING ANIMATION ===== */
.fade-in-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1000px) {
  .navbar {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .navbar nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 253, 250, 0.98));
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 100px 30px 30px;
    display: flex;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 50px rgba(0,0,0,0.2);
  }

  .navbar nav ul.show {
    right: 0;
  }

  .navbar nav ul li a {
    color: var(--neutral-800);
    font-size: 1.1rem;
  }

  .navbar nav ul li ul {
    position: static;
    box-shadow: none;
    background: linear-gradient(135deg, var(--primary-50), rgba(240, 253, 250, 0.8));
    margin-top: 10px;
    margin-left: 20px;
    border: 2px solid var(--primary-200);
    border-radius: var(--radius-lg);
    padding: 8px 0;
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .navbar nav ul li ul li a {
    color: var(--neutral-900);
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .navbar nav ul li ul li a:hover {
    background: var(--primary-100);
    color: var(--primary-800);
    padding-left: 28px;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 80vh;
    padding: 120px 20px 60px;
  }

  .section {
    padding: 70px 20px;
  }

  .trust-badges {
    gap: 25px;
  }

  .split {
    gap: 40px;
  }

  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .section h2 {
    font-size: 1.9rem;
  }

  .btn-primary,
  .btn-outline,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
  }

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

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  footer .footer-content {
    padding: 60px 20px;
    gap: 40px;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }
}

/* ===== PAGE-SPECIFIC HERO BACKGROUNDS ===== */
.hero.airbnb-hero {
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('airbnb.jpg') center/cover no-repeat fixed;
}

.hero.commercial-hero {
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('Commercial Cleaning .jpg') center/cover no-repeat fixed;
  min-height: 70vh;
}

.hero.residential-hero {
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('Residential Cleaning.jpg') center/cover no-repeat fixed;
}

.hero.commercial-hero {
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('Commercial Cleaning .jpg') center/cover no-repeat fixed;
}

.hero.postconstruction-hero {
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('Post-Construction Cleanup.jpg') center/cover no-repeat fixed;
}

/* ===== PRICING TABLES - DYNAMIC & PREMIUM ===== */
.table-wrap {
  margin: 40px auto;
  max-width: 900px;
  overflow-x: auto;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,253,250,0.95));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
}

.table-wrap thead {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  color: white;
  position: relative;
}

.table-wrap thead::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-400), var(--accent-500), var(--primary-400));
}

.table-wrap thead th {
  padding: 20px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.table-wrap tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.table-wrap tbody tr:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(14, 165, 233, 0.05));
  transform: scale(1.01);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.table-wrap tbody td {
  padding: 20px 24px;
  color: var(--neutral-700);
  font-size: 1rem;
  position: relative;
}

.table-wrap tbody td:first-child {
  font-weight: 600;
  color: var(--neutral-800);
}

.table-wrap tbody td:not(:first-child) {
  font-weight: 700;
  color: var(--primary-700);
  font-size: 1.1rem;
}

/* Animate table rows on load */
@keyframes slideInTable {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.table-wrap tbody tr {
  animation: slideInTable 0.5s ease forwards;
  opacity: 0;
}

.table-wrap tbody tr:nth-child(1) { animation-delay: 0.1s; }
.table-wrap tbody tr:nth-child(2) { animation-delay: 0.2s; }
.table-wrap tbody tr:nth-child(3) { animation-delay: 0.3s; }
.table-wrap tbody tr:nth-child(4) { animation-delay: 0.4s; }
.table-wrap tbody tr:nth-child(5) { animation-delay: 0.5s; }

/* ===== PRIVACY POLICY CONTENT - PROFESSIONAL DESIGN ===== */
.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,253,250,0.95));
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.content h2 {
  color: var(--primary-700);
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary-200);
  position: relative;
}

.content h2::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-600), var(--accent-500));
}

.content h2:first-of-type {
  margin-top: 0;
}

.content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--neutral-700);
  margin-bottom: 24px;
}

.content ul {
  margin: 24px 0;
  padding-left: 24px;
}

.content ul li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: var(--neutral-700);
}

/* ===== JOB APPLICATION FORM ===== */
.application-form {
  max-width: 800px;
  margin: 50px auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,253,250,0.95));
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.application-form h3 {
  color: var(--primary-700);
  font-size: 1.6rem;
  margin-bottom: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--neutral-800);
  background: white;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.form-actions {
  margin-top: 32px;
  text-align: center;
}

.form-actions .btn-primary {
  min-width: 200px;
}

/* ===== JOB LISTINGS ===== */
.job-list {
  max-width: 900px;
  margin: 40px auto;
}

.job {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,253,250,0.95));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
}

.job:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-400);
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(240,253,250,0.98));
}

.job h3 {
  color: var(--primary-700);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.job span {
  color: var(--neutral-600);
  font-size: 0.95rem;
  font-style: italic;
}

/* Fix dropdown menu z-index to ensure visibility */
nav ul li ul {
  z-index: 9999;
}

/* Ensure dropdown is visible on desktop */
@media (min-width: 769px) {
  nav ul li {
    position: relative;
  }

  nav ul li ul {
    display: none;
    position: absolute;
  }

  nav ul li:hover > ul {
    display: block;
  }
}

/* Mobile table responsiveness */
@media (max-width: 768px) {
  .table-wrap {
    border-radius: var(--radius-lg);
  }

  .table-wrap thead th,
  .table-wrap tbody td {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .content {
    padding: 28px 20px;
  }

  .application-form {
    padding: 28px 20px;
  }

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