/* ============================================================
   AQUA PRO PRESSURE WASHING - Main Stylesheet
   Brand Colors: Navy #1B3B8C | Blue #2B5CB8 | Light #4A90D9
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --primary:        #1B3B8C;
  --primary-dark:   #132A66;
  --primary-light:  #2B5CB8;
  --accent:         #4A90D9;
  --accent-light:   #7FB3E8;
  --accent-glow:    rgba(74, 144, 217, 0.35);
  --white:          #FFFFFF;
  --off-white:      #F5F7FA;
  --gray-light:     #E8ECF4;
  --gray:           #9CA3AF;
  --gray-dark:      #6B7280;
  --text:           #0F1B3D;
  --text-light:     #4B5563;
  --success:        #10B981;
  --warning:        #374151;
  --danger:         #EF4444;
  --shadow-sm:      0 2px 8px rgba(27,59,140,0.12);
  --shadow-md:      0 8px 24px rgba(27,59,140,0.18);
  --shadow-lg:      0 16px 48px rgba(27,59,140,0.24);
  --shadow-xl:      0 24px 64px rgba(27,59,140,0.30);
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading:   'Montserrat', sans-serif;
  --font-body:      'Open Sans', sans-serif;
  --container-max:  1320px;
  --container-4k:   1800px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2vw, 1.35rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
  width: 92%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 90px 0;
}

.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(74, 144, 217, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

.bg-primary { background: var(--primary); }
.bg-light { background: var(--off-white); }
.bg-dark { background: var(--text); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}

.btn:hover::after { background: rgba(255,255,255,0.12); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(27,59,140,0.4);
  transform: perspective(600px) translateZ(0);
}

.btn-primary:hover {
  transform: perspective(600px) translateY(-3px) translateZ(8px);
  box-shadow: 0 8px 25px rgba(27,59,140,0.5);
  color: var(--white);
}

.btn-primary:active {
  transform: perspective(600px) translateY(0) translateZ(0);
  box-shadow: 0 2px 8px rgba(27,59,140,0.3);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(74,144,217,0.4);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74,144,217,0.5);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-icon { padding: 14px; border-radius: 50%; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  transition: padding var(--transition);
}

.navbar.scrolled {
  background: #ffffff;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.navbar.scrolled .navbar-inner { padding: 10px 0; }

.navbar .nav-link { color: #111111 !important; }
.navbar .nav-link:hover { color: var(--primary) !important; }
.navbar.scrolled .nav-link { color: #111111 !important; }
.navbar.scrolled .nav-link:hover { color: var(--primary) !important; }

.navbar-logo { display: flex; align-items: center; background: none; border-radius: 0; padding: 4px 0; }
.navbar-logo img { height: 52px; width: auto; object-fit: contain; }
.navbar-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary);
}
.navbar-logo .logo-text span { color: var(--accent); }
.navbar.scrolled .navbar-logo .logo-text { color: var(--primary); }
.navbar:not(.scrolled) .navbar-logo .logo-text { color: var(--white); }
.navbar:not(.scrolled) .navbar-logo .logo-text span { color: var(--accent-light); }

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

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover { background: rgba(74,144,217,0.1); }

.nav-link .chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-item:hover .chevron { transform: rotate(180deg); }

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  color: var(--white) !important;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(74,144,217,0.4);
  padding: 10px 22px !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(74,144,217,0.5);
  background: rgba(74,144,217,0.1) !important;
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-light);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  overflow: hidden;
}

.dropdown-menu.mega {
  min-width: 680px;
  left: auto;
  right: -180px;
  transform: translateY(-8px);
}

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

.dropdown:hover .dropdown-menu.mega {
  transform: translateY(0);
}

.dropdown-header {
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 12px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.dropdown-item:hover {
  background: var(--off-white);
  color: var(--primary);
  transform: translateX(4px);
}

.dropdown-item .dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Simple dropdown */
.dropdown-list {
  padding: 8px;
}

.dropdown-list li a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  transition: all var(--transition);
}

.dropdown-list li a:hover {
  background: var(--off-white);
  color: var(--primary);
  padding-left: 20px;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(74,144,217,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74,144,217,0.15) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(19,42,102,0.4) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent-light), #A8D8FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 540px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 36px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat-item { text-align: center; }
.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Hero Visual - 3D Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-card-3d {
  width: 100%;
  max-width: 440px;
  perspective: 1200px;
}

.hero-card-inner {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 32px;
  transform: rotateY(-8deg) rotateX(4deg);
  box-shadow:
    -20px 20px 60px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.1) inset;
  transition: transform 0.6s ease;
}

.hero-card-inner:hover {
  transform: rotateY(-2deg) rotateX(1deg);
}

.hero-card-logo {
  text-align: center;
  margin-bottom: 24px;
}

.hero-card-logo img {
  height: 110px;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.hero-card-logo .fallback-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
}

.hero-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-service-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
}

.hero-service-chip:hover {
  background: rgba(255,255,255,0.2);
  transform: translateX(4px);
}

.hero-service-chip svg {
  width: 16px;
  height: 16px;
  opacity: 0.8;
  flex-shrink: 0;
}

.hero-promo {
  margin-top: 20px;
  background: linear-gradient(135deg, #374151, #1F2937);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.hero-promo .promo-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.hero-promo .promo-text {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

/* --- Services Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateZ(0);
  cursor: default;
}

.service-card:hover {
  transform: perspective(800px) rotateX(-2deg) rotateY(3deg) translateZ(16px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-light);
}

.service-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover .service-card-image img { transform: scale(1.07); }

.service-card-image .service-icon-large {
  width: 72px;
  height: 72px;
  color: rgba(255,255,255,0.3);
  transition: transform var(--transition);
}

.service-card:hover .service-icon-large {
  transform: scale(1.15) rotate(-5deg);
  color: rgba(255,255,255,0.5);
}

.service-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(27,59,140,0.4));
}

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--warning);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 1;
}

.service-card-body { padding: 24px; }

.service-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(74,144,217,0.15), rgba(27,59,140,0.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all var(--transition);
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: color var(--transition);
}

.service-card:hover .service-card-icon svg { color: var(--white); }

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap var(--transition);
}

.service-card:hover .learn-more { gap: 10px; color: var(--accent); }

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.why-card:hover::before { transform: scaleX(1); }

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(74,144,217,0.12), rgba(27,59,140,0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.why-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: color var(--transition);
}

.why-card:hover .why-icon svg { color: var(--white); }

.why-card h4 { margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--text-light); }

/* --- Stats Banner --- */
.stats-banner {
  background: linear-gradient(rgba(8,18,46,0.78), rgba(8,18,46,0.78)), url('../images/company.jpg') center center / cover no-repeat;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
}

.stat-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span { color: var(--accent-light); }

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
  position: relative;
}

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

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--gray-light);
  font-family: Georgia, serif;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars svg {
  width: 18px;
  height: 18px;
  color: var(--warning);
  fill: var(--warning);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.author-location {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

/* --- Service Areas Preview --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.area-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}

.area-chip:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.area-chip svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  transition: color var(--transition);
}

.area-chip:hover svg { color: rgba(255,255,255,0.8); }

/* --- Promo Banner --- */
.promo-banner {
  background: linear-gradient(135deg, #374151, #1F2937);
  padding: 24px 0;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.promo-text-block { color: var(--white); }
.promo-amount { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; line-height: 1; }
.promo-desc { font-size: 1rem; opacity: 0.9; }

.promo-badge {
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  padding: 16px 28px;
  text-align: center;
  color: var(--white);
}

.promo-badge .badge-main { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 900; display: block; }
.promo-badge .badge-sub { font-size: 0.8rem; opacity: 0.85; display: block; margin-top: 4px; }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(rgba(10,22,55,0.78), rgba(10,22,55,0.78)), url('../images/cta-bg.jpg') center center / cover no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(74,144,217,0.18) 0%, transparent 70%);
}

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

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 540px; margin: 0 auto 36px; }

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(rgba(8,18,46,0.72), rgba(8,18,46,0.72)), url('../images/page-hero.jpg') center center / cover no-repeat;
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(74,144,217,0.15) 0%, transparent 60%);
}

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

.page-hero h1 { color: #ffffff; margin-bottom: 16px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.page-hero p { color: rgba(255,255,255,0.92); font-size: 1.1rem; max-width: 600px; margin: 0 auto 20px; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: 0.875rem;
  font-weight: 700;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s ease;
  box-shadow: var(--shadow-md);
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* --- Footer --- */
.footer {
  background: linear-gradient(rgba(8,18,46,0.88), rgba(8,18,46,0.88)), url('../images/footer-bg.jpg') center center / cover no-repeat;
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand { }
.footer-logo img { height: 90px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-logo .fallback { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.footer-logo .fallback span { color: var(--accent-light); }
.footer-desc { font-size: 0.92rem; line-height: 1.7; margin-bottom: 24px; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-light);
  flex-shrink: 0;
}
.footer-contact-item a { color: rgba(255,255,255,0.8); }
.footer-contact-item a:hover { color: var(--white); }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.footer-links a:hover::before { opacity: 1; }

.footer-areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}

.footer-areas-list a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-areas-list a:hover { color: var(--accent-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  font-size: 0.82rem;
}

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

/* --- Quote/Booking Form --- */
.booking-section {
  background: var(--off-white);
  padding: 80px 0;
}

.booking-wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.booking-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 36px 40px;
  color: var(--white);
}

.booking-header h2 { color: #ffffff; margin-bottom: 8px; }
.booking-header p { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; margin: 0; }

/* Step progress */
.booking-steps {
  display: flex;
  align-items: center;
  padding: 28px 40px;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
  gap: 0;
}

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

.booking-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 2px;
  background: var(--gray-light);
  transition: background var(--transition);
}

.booking-step.completed:not(:last-child)::after {
  background: var(--primary);
}

.step-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid var(--gray);
  background: var(--white);
  color: var(--gray-dark);
  transition: all var(--transition);
  z-index: 1;
}

.booking-step.active .step-bubble {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(27,59,140,0.15);
}

.booking-step.completed .step-bubble {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}

.step-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-top: 6px;
  text-align: center;
  white-space: nowrap;
}

.booking-step.active .step-label { color: var(--primary); }
.booking-step.completed .step-label { color: var(--success); }

/* Form body */
.booking-body { padding: 36px 40px; }

.form-step { display: none; }
.form-step.active { display: block; }

.form-step-title {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 6px;
}

.form-step-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

/* Service selection */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.service-select-card {
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  background: var(--white);
}

.service-select-card:hover {
  border-color: var(--accent);
  background: rgba(74,144,217,0.04);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-select-card.selected {
  border-color: var(--primary);
  background: rgba(27,59,140,0.05);
}

.service-select-card.selected::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.service-select-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(74,144,217,0.1), rgba(27,59,140,0.08));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all var(--transition);
}

.service-select-card.selected .service-select-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.service-select-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  transition: color var(--transition);
}

.service-select-card.selected .service-select-icon svg { color: var(--white); }

.service-select-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

/* Form fields */
.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.form-label .required { color: var(--danger); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27,59,140,0.1);
}

.form-control::placeholder { color: var(--gray); }

select.form-control { appearance: none; cursor: pointer; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Date/Time grid */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.time-slot {
  padding: 10px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.time-slot:hover, .time-slot.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

/* Summary box */
.quote-summary {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.quote-summary-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.9rem;
}

.summary-row:last-child { border-bottom: none; padding-bottom: 0; }
.summary-label { color: var(--text-light); font-weight: 500; }
.summary-value { color: var(--text); font-weight: 600; text-align: right; max-width: 60%; }

/* Form navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}

/* Success state */
.booking-success {
  text-align: center;
  padding: 60px 40px;
  display: none;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--success), #34D399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg { width: 36px; height: 36px; color: var(--white); }

.booking-success h3 { margin-bottom: 12px; color: var(--text); }
.booking-success p { color: var(--text-light); margin-bottom: 28px; }

/* --- Service Area Page --- */
.area-hero {
  background: linear-gradient(rgba(8,18,46,0.72), rgba(8,18,46,0.72)), url('../images/page-hero.jpg') center center / cover no-repeat;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.area-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(74,144,217,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(74,144,217,0.1) 0%, transparent 50%);
}

.area-hero h1 span { color: var(--accent-light); text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.area-hero p { color: rgba(255,255,255,0.92); font-size: 1.05rem; max-width: 540px; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }

.area-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.area-hero h1 { color: #ffffff; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }

.area-info-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 28px;
  color: var(--white);
}

.area-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}
.area-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.area-info-row svg { width: 18px; height: 18px; color: var(--accent-light); flex-shrink: 0; }
.area-info-row strong { color: var(--white); }
.area-info-row span { color: rgba(255,255,255,0.8); }

/* Services in area */
.area-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.area-service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}

.area-service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
  transform: translateY(-4px);
}

.area-service-card .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(74,144,217,0.12), rgba(27,59,140,0.08));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.area-service-card:hover .icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.area-service-card .icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  transition: color var(--transition);
}

.area-service-card:hover .icon svg { color: var(--white); }

.area-service-card h4 { margin-bottom: 6px; font-size: 1rem; }
.area-service-card p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* Nearby areas */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.nearby-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}

.nearby-card:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.nearby-card svg { width: 15px; height: 15px; color: var(--accent); transition: color var(--transition); }
.nearby-card:hover svg { color: rgba(255,255,255,0.8); }

/* --- About Page --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image-placeholder {
  height: 480px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  gap: 12px;
}

.about-image-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 160px;
}

.about-badge .big-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.about-badge .badge-label { font-size: 0.82rem; color: var(--text-light); font-weight: 600; }

.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.value-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(74,144,217,0.12), rgba(27,59,140,0.08));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg { width: 18px; height: 18px; color: var(--primary); }
.value-item h5 { margin-bottom: 4px; font-size: 0.95rem; }
.value-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.team-avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg { width: 80px; height: 80px; color: rgba(255,255,255,0.4); }

.team-card-body { padding: 20px; }
.team-card-name { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-card-role { font-size: 0.85rem; color: var(--accent); font-weight: 600; }

/* --- Services Page Details --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--gray-light);
}

.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-image {
  height: 360px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(0,0,0,0.15));
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.service-detail:hover .service-detail-image img { transform: scale(1.04); }

.service-detail-image svg {
  width: 100px;
  height: 100px;
  color: rgba(255,255,255,0.25);
}

.service-detail-content {}
.service-detail-tag {
  display: inline-block;
  background: rgba(74,144,217,0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.service-detail-content h3 { font-size: 2rem; margin-bottom: 16px; }
.service-detail-content p { color: var(--text-light); line-height: 1.75; margin-bottom: 20px; }

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.service-feature svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* --- Scroll to top --- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 900;
  cursor: pointer;
  border: none;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-light); transform: translateY(-4px); }

/* --- Mobile Drawer --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  visibility: hidden;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--transition);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(400px, 90vw);
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  padding: 80px 24px 40px;
}

.mobile-drawer.open { visibility: visible; }
.mobile-drawer.open .drawer-overlay { opacity: 1; }
.mobile-drawer.open .drawer-panel { transform: translateX(0); }

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--off-white);
  border: none;
  cursor: pointer;
  color: var(--text);
  transition: all var(--transition);
}

.drawer-close:hover { background: var(--primary); color: var(--white); }

.drawer-nav { display: flex; flex-direction: column; gap: 4px; }

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.drawer-link:hover { background: var(--off-white); color: var(--primary); }

.drawer-submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.drawer-submenu.open { max-height: 800px; }

.drawer-submenu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 6px 16px 12px;
}

.drawer-submenu-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-light);
  transition: all var(--transition);
}

.drawer-submenu-item:hover { background: var(--off-white); color: var(--primary); }
.drawer-submenu-item .dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

.drawer-divider { height: 1px; background: var(--gray-light); margin: 8px 0; }

.drawer-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Process Steps --- */
/* === HOW IT WORKS SECTION === */
.how-it-works-section {
  background: linear-gradient(rgba(8,18,46,0.80), rgba(8,18,46,0.80)), url('../images/how-it-works.jpg') center center / cover no-repeat;
  position: relative;
}

.how-it-works-section .section-header .label {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.how-it-works-section .section-header h2 {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.how-it-works-section .section-header p {
  color: rgba(255,255,255,0.88);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.6);
  position: relative;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.process-step:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,0.28); }

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,59,140,0.4);
}

.process-step h4 { margin-bottom: 10px; font-size: 1.05rem; color: var(--primary-dark); }
.process-step p { font-size: 0.875rem; color: var(--text-light); margin: 0; line-height: 1.6; }

/* === RESPONSIVE BREAKPOINTS === */

/* Ultra 4K */
@media (min-width: 2560px) {
  :root { font-size: 18px; --container-max: var(--container-4k); }
  .hero-title { font-size: 5rem; }
  .navbar-logo img { height: 68px; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { gap: 48px; }
  .footer-grid { gap: 64px; }
}

/* Large desktop */
@media (min-width: 1440px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Desktop */
@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 36px; }
  .dropdown-menu.mega { min-width: 580px; right: -120px; }
}

/* Laptop */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-content { padding: 100px 0 60px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-intro { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .service-detail-image { height: 280px; }
  .area-hero-content { grid-template-columns: 1fr; }
  .area-info-card { display: none; }
  .dropdown-menu.mega { min-width: 480px; right: -60px; }
}

/* Tablet */
@media (max-width: 768px) {
  :root { font-size: 15px; }
  .section { padding: 60px 0; }
  .section-lg { padding: 80px 0; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .booking-steps { padding: 20px 24px; gap: 0; }
  .booking-header { padding: 24px; }
  .booking-body { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .service-select-grid { grid-template-columns: repeat(2, 1fr); }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
  .hero-actions { gap: 10px; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .promo-inner { flex-direction: column; text-align: center; }
}

/* Mobile */
@media (max-width: 480px) {
  :root { font-size: 14px; }
  .section { padding: 48px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .service-select-grid { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 16px; }
  .hero-stat-number { font-size: 1.6rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
  .step-label { display: none; }
  .footer-areas-list { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-steps { overflow-x: auto; padding: 16px; }
}

/* ============================================================
   GOOGLE REVIEWS MARQUEE
   ============================================================ */
.reviews-marquee-section {
  padding: 64px 0;
  background: var(--off-white);
  overflow: hidden;
}

.reviews-marquee-section .section-header {
  margin-bottom: 40px;
}

.reviews-marquee-section .section-header .label {
  background: rgba(251,188,4,0.15);
  color: #B45309;
}

.reviews-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.reviews-overall {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.reviews-overall-stars { display: flex; gap: 3px; }
.reviews-overall-stars svg { width: 20px; height: 20px; fill: #FBBC04; }
.reviews-overall-score {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
}

/* Fade edges */
.reviews-marquee-wrap {
  position: relative;
  overflow: hidden;
}

.reviews-marquee-wrap::before,
.reviews-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white) 0%, transparent 100%);
}

.reviews-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white) 0%, transparent 100%);
}

/* The scrolling track */
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 12px 0;
  animation: reviews-scroll 90s linear infinite;
}

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

@keyframes reviews-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual card */
.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  width: 300px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(27,59,140,0.10);
  border: 1px solid var(--gray-light);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: default;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

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

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.reviewer-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.reviewer-location {
  font-size: 0.74rem;
  color: var(--gray-dark);
  margin-top: 1px;
}

/* Google G logo */
.google-g {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.review-stars svg {
  width: 15px;
  height: 15px;
  fill: #FBBC04;
}

.review-text {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-date {
  font-size: 0.73rem;
  color: var(--gray);
  margin-top: 10px;
}

@media (max-width: 768px) {
  .reviews-marquee-section { padding: 48px 0; }
  .review-card { width: 260px; padding: 18px 20px; }
  .reviews-marquee-wrap::before,
  .reviews-marquee-wrap::after { width: 40px; }
}
