/* ============================================================
   AL JUMEERIAH PLUMBING DUBAI — Design System
   Premium local-service website CSS
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Brand Colors */
  --primary: #00a859;
  --primary-dark: #008f4c;
  --primary-darker: #00703c;
  --primary-light: #e8f8f0;
  --primary-lighter: #f2faf5;
  
  /* Accent */
  --accent: #25D366;
  --accent-dark: #20ba59;
  --accent-light: #dcf8c6;
  
  /* Semantic */
  --success: #10B981;
  --success-light: #D1FAE5;
  --danger: #EF4444;
  --danger-light: #FEE2E2;
  --warning: #F97316;
  
  /* Neutrals */
  --dark: #0F172A;
  --dark-secondary: #1E293B;
  --text-primary: #1E293B;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-dark: #0F172A;
  --bg-dark-secondary: #1E293B;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Font Sizes (Fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.775rem + 0.25vw, 0.875rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  --text-lg: clamp(1.0625rem, 1rem + 0.3vw, 1.125rem);
  --text-xl: clamp(1.1875rem, 1.1rem + 0.4vw, 1.25rem);
  --text-2xl: clamp(1.375rem, 1.2rem + 0.6vw, 1.5rem);
  --text-3xl: clamp(1.625rem, 1.4rem + 1vw, 1.875rem);
  --text-4xl: clamp(2rem, 1.6rem + 1.5vw, 2.5rem);
  --text-5xl: clamp(2.5rem, 2rem + 2vw, 3.25rem);
  --text-6xl: clamp(3rem, 2.2rem + 3vw, 4rem);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* Layout */
  --container-max: 1200px;
  --container-narrow: 900px;
  --container-wide: 1400px;
  
  /* Borders */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
  --shadow-primary: 0 4px 14px rgba(10, 94, 176, 0.3);
  --shadow-accent: 0 4px 14px rgba(245, 158, 11, 0.3);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-overlay: 400;
  --z-modal: 500;
  --z-toast: 600;
  
  /* Header */
  --header-height: 80px;
  --header-height-mobile: 64px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--dark);
  font-weight: 700;
}

h1 { font-size: var(--text-5xl); margin-bottom: var(--space-lg); }
h2 { font-size: var(--text-4xl); margin-bottom: var(--space-lg); }
h3 { font-size: var(--text-2xl); margin-bottom: var(--space-md); }
h4 { font-size: var(--text-xl); margin-bottom: var(--space-md); }

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--text-primary); }

::selection {
  background-color: var(--primary);
  color: white;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: var(--space-5xl) 0;
}

.section--sm {
  padding: var(--space-3xl) 0;
}

.section--lg {
  padding: var(--space-5xl) 0;
}

.section--light {
  background-color: var(--bg-light);
}

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

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: white;
}

.section--dark p {
  color: var(--text-light);
}

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

.section--primary h2,
.section--primary h3 {
  color: white;
}

.section--primary p {
  color: rgba(255,255,255,0.85);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-3xl);
}

.section-header .label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
  background: var(--primary-light);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
}

.section-header .label svg {
  width: 16px;
  height: 16px;
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid--4,
  .grid--3,
  .grid--2 { grid-template-columns: 1fr; }
  
  .container { padding: 0 var(--space-md); }
  .section { padding: var(--space-3xl) 0; }
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   4. HEADER & NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
  height: var(--header-height);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}

.logo-image {
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.footer__logo .logo-image {
  height: 44px;
}


.header__logo svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.header__logo span {
  color: var(--dark);
}

.header__logo .logo-accent {
  color: var(--accent);
}

/* Desktop Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav__item:hover .nav__link svg {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-sm);
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--transition-base);
  z-index: var(--z-dropdown);
}

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

.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav__dropdown a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.nav__dropdown a svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.nav__dropdown a:hover svg {
  color: var(--primary);
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--dark);
  text-decoration: none;
}

.header__phone svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: var(--z-fixed);
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  z-index: var(--z-overlay);
  padding: calc(var(--header-height-mobile) + var(--space-xl)) var(--space-xl) var(--space-xl);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav__submenu {
  display: none;
  padding-left: var(--space-lg);
  padding-bottom: var(--space-md);
}

.mobile-nav__submenu.active {
  display: block;
}

.mobile-nav__submenu a {
  display: block;
  padding: var(--space-sm) 0;
  font-size: var(--text-base);
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .nav, .header__actions .btn--primary, .header__phone {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .header {
    height: var(--header-height-mobile);
  }
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1.4;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 94, 176, 0.4);
}

.btn--accent {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

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

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

.btn--outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}

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

.btn--white {
  background: white;
  color: var(--primary);
  border-color: white;
}

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

.btn--danger {
  background: var(--danger);
  color: white;
  border-color: var(--danger);
}

.btn--danger:hover {
  background: #DC2626;
  border-color: #DC2626;
  color: white;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 16px;
}

.btn--ghost:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.btn--lg {
  padding: 16px 36px;
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}

.btn--sm {
  padding: 8px 18px;
  font-size: var(--text-xs);
}

.btn--full {
  width: 100%;
}

.btn--icon-only {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

@media (max-width: 640px) {
  .btn-group {
    flex-direction: column;
  }
  .btn-group .btn {
    width: 100%;
  }
}

/* ============================================================
   6. HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-darker) 50%, var(--primary-dark) 100%);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  color: white;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  color: white;
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__text {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  max-width: 520px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
}

.hero__trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

.hero__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.hero__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Floating stats card on hero image */
.hero__stat-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hero__stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero__stat-card .stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.3;
}

/* Service page hero (smaller) */
.hero--service {
  min-height: auto;
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
}

.hero--service .hero__inner {
  grid-template-columns: 1.2fr 0.8fr;
}

.hero--service .hero__image img {
  height: 380px;
}

/* Emergency hero variant */
.hero--emergency {
  background: linear-gradient(135deg, #7F1D1D 0%, #991B1B 50%, var(--danger) 100%);
}

.hero--emergency .hero__badge {
  background: rgba(255,255,255,0.15);
  color: #FCA5A5;
}

/* Guide/Area page hero */
.hero--compact {
  min-height: auto;
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
}

.hero--compact .hero__inner {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero--compact .hero__text {
  margin: 0 auto var(--space-xl);
}

@media (max-width: 1024px) {
  .hero__inner,
  .hero--service .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero__text {
    margin: 0 auto var(--space-xl);
  }
  
  .hero__image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero__trust {
    justify-content: center;
  }
  
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height-mobile) + var(--space-3xl));
  }
  
  .btn-group {
    justify-content: center;
  }
}

/* ============================================================
   7. CARDS
   ============================================================ */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

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

.card:hover .card__icon {
  background: var(--primary);
}

.card:hover .card__icon svg {
  color: white;
}

.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
}

.card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.card:hover .card__link svg {
  transform: translateX(4px);
}

/* Service Card with image */
.card--service {
  padding: 0;
  overflow: hidden;
}

.card--service .card__image {
  height: 200px;
  overflow: hidden;
}

.card--service .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card--service:hover .card__image img {
  transform: scale(1.05);
}

.card--service .card__body {
  padding: var(--space-xl);
}

/* Area Card */
.card--area {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  text-decoration: none;
}

.card--area .card__area-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.card--area h4 {
  font-size: var(--text-base);
  margin-bottom: 2px;
}

.card--area p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin: 0;
}

/* Stat Card */
.stat-card {
  text-align: center;
  padding: var(--space-xl);
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-card__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ============================================================
   8. BREADCRUMBS
   ============================================================ */
.breadcrumb {
  padding: var(--space-md) 0;
  margin-top: var(--header-height);
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
}

.breadcrumb__item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb__item a:hover {
  color: var(--primary);
}

.breadcrumb__separator {
  color: var(--text-light);
  font-size: 12px;
}

.breadcrumb__item:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .breadcrumb {
    margin-top: var(--header-height-mobile);
  }
}

/* ============================================================
   9. FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: all var(--transition-fast);
  width: 100%;
  text-align: left;
  border: none;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer__inner {
  padding: 0 var(--space-xl) var(--space-xl);
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-answer__inner p {
  margin-bottom: var(--space-md);
}

.faq-answer__inner ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-xl);
  list-style: disc;
}

.faq-answer__inner ul li {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

/* ============================================================
   10. FORMS
   ============================================================ */
.form {
  display: grid;
  gap: var(--space-lg);
}

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

.form--2col .form__full {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .form--2col {
    grid-template-columns: 1fr;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.form__input,
.form__select,
.form__textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--bg-white);
  transition: all var(--transition-fast);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-light);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__note {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* Form Card */
.form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

.form-card__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.form-card__subtitle {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

/* ============================================================
   11. CTA SECTIONS
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-strip__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-strip h2 {
  color: white;
  margin-bottom: var(--space-md);
}

.cta-strip p {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
}

.cta-strip .btn-group {
  justify-content: center;
}

/* Inline CTA */
.cta-inline {
  background: var(--primary-light);
  border: 1px solid rgba(10, 94, 176, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  margin: var(--space-3xl) 0;
}

.cta-inline h3 {
  margin-bottom: var(--space-sm);
}

.cta-inline p {
  margin: 0;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .cta-inline {
    flex-direction: column;
    text-align: center;
  }
}

/* Emergency CTA */
.cta-emergency {
  background: linear-gradient(135deg, #7F1D1D 0%, var(--danger) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  color: white;
  margin: var(--space-3xl) 0;
}

.cta-emergency h3 {
  color: white;
  margin-bottom: var(--space-sm);
}

.cta-emergency p {
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-lg);
}

/* ============================================================
   12. TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-light);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-strip__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-strip__item svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

/* ============================================================
   13. PROCESS / STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-primary);
  border: 4px solid var(--bg-white);
}

.process-step h4 {
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   14. TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  fill: var(--accent);
}

.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: var(--text-lg);
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: var(--text-sm);
}

.testimonial-card__location {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   15. GALLERY / BEFORE-AFTER
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay span {
  color: white;
  font-size: var(--text-sm);
  font-weight: 500;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: var(--space-4xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xl);
  color: white;
  text-decoration: none;
  margin-bottom: var(--space-lg);
}

.footer__logo svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.footer__brand p {
  color: var(--text-light);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  color: var(--text-light);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.footer__contact-item a:hover {
  color: var(--accent);
}

.footer__col h4 {
  color: white;
  font-size: var(--text-base);
  margin-bottom: var(--space-lg);
  position: relative;
}

.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--text-light);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer__links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer__bottom {
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__bottom p {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.footer__legal a:hover {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   17. STICKY MOBILE CTA
   ============================================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: var(--space-sm) var(--space-md);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}

.mobile-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-sm);
}

.mobile-cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-cta__btn svg {
  width: 22px;
  height: 22px;
}

.mobile-cta__btn--call {
  background: var(--primary);
  color: white;
}

.mobile-cta__btn--whatsapp {
  background: #25D366;
  color: white;
}

.mobile-cta__btn--book {
  background: var(--accent);
  color: var(--dark);
}

@media (max-width: 768px) {
  .mobile-cta {
    display: block;
  }
  
  body {
    padding-bottom: 80px;
  }
}

/* ============================================================
   18. FLOATING CALL BUTTON (Desktop)
   ============================================================ */
.floating-call {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: var(--z-fixed);
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
  transition: all var(--transition-base);
  text-decoration: none;
  animation: pulse-ring 2s ease-out infinite;
}

.floating-call:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
  color: white;
}

.floating-call svg {
  width: 28px;
  height: 28px;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(10, 94, 176, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(10, 94, 176, 0); }
  100% { box-shadow: 0 0 0 0 rgba(10, 94, 176, 0); }
}

@media (max-width: 768px) {
  .floating-call {
    display: none;
  }
}

/* ============================================================
   19. WHY CHOOSE US / FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature {
  text-align: center;
  padding: var(--space-xl);
}

.feature__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-light), #D4E8FC);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.feature__icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.feature h4 {
  margin-bottom: var(--space-sm);
}

.feature p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   20. CONTENT SECTIONS (Service Pages)
   ============================================================ */
.content-section {
  padding: var(--space-3xl) 0;
}

.content-section + .content-section {
  border-top: 1px solid var(--border-light);
}

.content-section h2 {
  margin-bottom: var(--space-lg);
}

.content-section h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.content-section p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.content-section ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-xl);
}

.content-section ul li {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: var(--space-lg);
  color: var(--text-secondary);
}

.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.content-with-image--reverse {
  direction: rtl;
}

.content-with-image--reverse > * {
  direction: ltr;
}

.content-with-image__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.content-with-image__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .content-with-image,
  .content-with-image--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* Service checklist */
.service-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--text-base);
  color: var(--text-secondary);
  padding: 0;
}

.service-checklist li::before {
  display: none;
}

.service-checklist li svg {
  width: 22px;
  height: 22px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 640px) {
  .service-checklist {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   21. MAP / CONTACT SECTION
   ============================================================ */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 400px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--text-light);
}

/* ============================================================
   22. SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   23. GUIDE / ARTICLE PAGES
   ============================================================ */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.article-content h2 {
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-light);
}

.article-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.article-content h3 {
  margin-top: var(--space-xl);
}

.article-content p {
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.article-content ul,
.article-content ol {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.article-content blockquote {
  border-left: 4px solid var(--primary);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) 0;
  background: var(--primary-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.article-content img {
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

/* Article sidebar for internal links */
.article-sidebar {
  background: var(--primary-light);
  border: 1px solid rgba(10, 94, 176, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.article-sidebar h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.article-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-sidebar li {
  margin-bottom: var(--space-sm);
}

.article-sidebar a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: 500;
}

.article-sidebar a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   24. LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.legal-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal-content h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-xl);
}

.legal-content p {
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-xl);
  margin: var(--space-md) 0;
}

.legal-content li {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

/* ============================================================
   25. THANK YOU PAGE
   ============================================================ */
.thank-you {
  text-align: center;
  padding: calc(var(--header-height) + var(--space-5xl)) 0 var(--space-5xl);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you__icon {
  width: 100px;
  height: 100px;
  background: var(--success-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
}

.thank-you__icon svg {
  width: 48px;
  height: 48px;
  color: var(--success);
}

.thank-you h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

.thank-you p {
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  color: var(--text-secondary);
}

/* ============================================================
   26. SERVICE AREAS GRID
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

@media (max-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   27. PRINT STYLES
   ============================================================ */
@media print {
  .header, .footer, .mobile-cta, .floating-call,
  .cta-strip, .cta-inline, .cta-emergency {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  .hero {
    background: none !important;
    color: #000 !important;
    padding-top: 20px !important;
    min-height: auto !important;
  }
  
  .hero h1 { color: #000 !important; }
}

/* ============================================================
   28. ACCESSIBILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: var(--space-sm) var(--space-md);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
  color: white;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .fade-in, .fade-in-left, .fade-in-right {
    opacity: 1;
    transform: none;
  }
}


/* GREEN REFERENCE DESIGN OVERHAUL */
:root {
  --primary: #00a651;
  --primary-dark: #008f46;
  --primary-darker: #00743a;
  --primary-light: #e8fff2;
  --primary-lighter: #f4fff8;
  --accent: #22c55e;
  --accent-dark: #16a34a;
  --accent-light: #dcfce7;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --shadow-primary: 0 8px 18px rgba(0, 166, 81, 0.22);
}
body { background: #fff; color: #263238; }
.site-topbar { position: fixed; inset: 0 0 auto 0; z-index: 301; height: 30px; background: #00a651; color: #fff; font-size: 12px; }
.topbar__inner { height: 30px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.site-topbar a { color: #fff; font-weight: 700; }
.header { top: 30px; height: 58px; border-bottom: 1px solid #e8f3ec; box-shadow: 0 2px 12px rgba(15, 23, 42, .06); }
.header__inner { height: 58px; max-width: 1120px; }
.header__logo { font-size: 17px; color: #18231c; }
.header__logo svg { display: none; }
.logo-mark { width: 34px; height: 34px; border: 2px solid #00a651; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #00a651 !important; font-size: 12px; font-weight: 800; background: #fff; }
.logo-accent { color: #00a651 !important; }
.nav { gap: 2px; }
.nav__link { font-size: 13px; padding: 8px 11px; color: #27332b; border-radius: 999px; }
.nav__link:hover, .nav__link.active { color: #00a651; background: #edfff5; }
.btn { border-radius: 6px; font-weight: 800; }
.btn--primary, .btn--accent { background: #22c55e; border-color: #22c55e; color: #fff; box-shadow: none; }
.btn--primary:hover, .btn--accent:hover { background: #16a34a; border-color: #16a34a; box-shadow: 0 8px 20px rgba(0, 166, 81, .24); }
.btn--white { background: #fff; color: #00a651; border-color: #fff; }
.btn--outline { color: #00a651; border-color: #00a651; background: #fff; }
.section { padding: 58px 0; }
.section--tight { padding: 52px 0; }
.section--muted { background: #f4f4f4; }
.section-header.compact { max-width: 640px; margin: 0 auto 30px; text-align: center; }
.section-header.compact h2 { font-size: 28px; margin-bottom: 8px; }
.section-header.compact h2::after { content: ''; display: block; width: 54px; height: 3px; background: #00a651; margin: 10px auto 0; border-radius: 99px; }
.section-header.compact p { font-size: 14px; color: #66736b; }
.home-hero { padding: 120px 0 48px; background: radial-gradient(circle at 96% 8%, rgba(255,255,255,.11) 0 145px, transparent 146px), #00a651; color: #fff; }
.home-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; max-width: 1050px; }
.hero-pill { display: inline-flex; align-items: center; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.14); color: #d9ffe9; font-weight: 800; font-size: 12px; margin-bottom: 16px; }
.home-hero h1 { color: #fff; font-size: clamp(38px, 5vw, 56px); line-height: 1.02; margin-bottom: 16px; }
.home-hero p { color: rgba(255,255,255,.92); max-width: 620px; font-size: 17px; line-height: 1.65; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 30px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: 580px; }
.hero-stats strong { display: block; color: #fff; font-size: 27px; line-height: 1; }
.hero-stats span { color: rgba(255,255,255,.8); font-size: 11px; }
.home-hero__media img { width: 100%; aspect-ratio: 1.08 / .86; object-fit: cover; border-radius: 10px; box-shadow: 0 22px 48px rgba(0,0,0,.24); border: 1px solid rgba(255,255,255,.18); }
.trust-ribbon { background: #fff; border-bottom: 1px solid #edf1ee; }
.trust-ribbon__inner { min-height: 42px; display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; align-items: center; color: #6b766f; font-size: 12px; }
.trust-ribbon span::before { content: '✓'; color: #22c55e; font-weight: 900; margin-right: 6px; }
.home-brief-hub { background: #fff; }
.home-brief-hub .section-header.compact { max-width: 860px; }
.brief-grid { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.brief-grid article { background: #fff; border: 1px solid #e1ece6; border-radius: 7px; padding: 20px; box-shadow: 0 5px 14px rgba(15, 23, 42, .04); }
.brief-grid article:first-child { grid-column: 1 / -1; }
.brief-grid h2 { font-size: 21px; margin-bottom: 9px; }
.brief-grid p { font-size: 14px; color: #59655e; line-height: 1.65; }
.brief-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 16px; }
.brief-cards div { background: #f5fff9; border: 1px solid #d8f5e4; border-radius: 6px; padding: 14px; }
.brief-cards h3 { font-size: 16px; margin-bottom: 6px; }
.brief-cards p { font-size: 12px; margin: 0; }
.home-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 880px; margin: 0 auto 26px; }
.home-service-card { border: 1px solid #dfe9e3; border-radius: 7px; text-align: center; padding: 26px 20px 20px; background: #fff; box-shadow: 0 4px 12px rgba(15, 23, 42, .035); transition: .2s ease; }
.home-service-card:hover, .home-service-card.is-emergency { border-color: #00a651; box-shadow: 0 12px 26px rgba(0, 166, 81, .15); transform: translateY(-2px); }
.service-icon { width: 42px; height: 42px; margin: 0 auto 14px; border-radius: 50%; background: #18bd63; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900; }
.is-emergency .service-icon { background: #ef4444; }
.home-service-card h3 { font-size: 17px; margin-bottom: 9px; }
.home-service-card p { min-height: 68px; font-size: 13px; line-height: 1.55; color: #69756e; }
.mini-whatsapp { display: block; width: 100%; background: #22c55e; color: #fff; border-radius: 5px; padding: 9px 10px; font-size: 12px; font-weight: 800; }
.mini-whatsapp:hover { color: #fff; background: #16a34a; }
.centered { text-align: center; }
.warranty-card { max-width: 540px; margin: 0 auto; text-align: center; background: #fff; border-left: 4px solid #00a651; border-radius: 8px; padding: 34px 44px; box-shadow: 0 10px 28px rgba(15,23,42,.08); }
.warranty-card strong { display: block; color: #00a651; font-size: 39px; line-height: 1; }
.warranty-card h3 { margin: 6px 0 10px; font-size: 19px; }
.why-grid { max-width: 850px; margin: 0 auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.why-item { min-height: 76px; background: #fff; border: 1px solid #edf1ee; border-radius: 6px; display: flex; flex-direction: column; gap: 8px; align-items: center; justify-content: center; font-size: 12px; text-align: center; color: #334139; }
.why-item span { color: #00a651; font-weight: 900; }
.process-line { max-width: 920px; margin: 0 auto 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.process-mini b { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: #00a651; color: #fff; margin-bottom: 12px; }
.process-mini h3 { font-size: 17px; margin-bottom: 8px; }
.process-mini p { font-size: 13px; color: #6b766f; }
.team-note { max-width: 870px; margin: 0 auto; background: #fff; border: 1px solid #e2eee6; border-left: 4px solid #00a651; border-radius: 8px; padding: 24px; display: flex; gap: 22px; box-shadow: 0 8px 22px rgba(15,23,42,.06); }
.team-avatar { width: 54px; height: 54px; border-radius: 50%; background: #00a651; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900; flex: 0 0 auto; }
.team-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.team-tags span { font-size: 12px; color: #00a651; background: #edfff5; border-radius: 99px; padding: 4px 9px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 930px; margin: 0 auto 24px; }
.review-card { background: #fff; border: 1px solid #e5ece8; border-radius: 7px; padding: 20px; box-shadow: 0 5px 15px rgba(15,23,42,.05); }
.review-head { display: grid; grid-template-columns: 38px 1fr auto; gap: 10px; align-items: center; margin-bottom: 14px; }
.review-head span { width: 38px; height: 38px; border-radius: 50%; background: #00a651; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900; }
.review-head small { display: block; color: #7b8780; font-size: 11px; }
.review-head em { color: #f59e0b; font-style: normal; font-size: 12px; }
.review-card p { font-size: 13px; color: #59655e; }
.review-card a { color: #00a651; font-size: 12px; font-weight: 800; }
.work-grid { max-width: 870px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.work-card { position: relative; overflow: hidden; border-radius: 7px; height: 168px; color: #fff; box-shadow: 0 6px 18px rgba(15,23,42,.12); }
.work-card img { width: 100%; height: 100%; object-fit: cover; }
.work-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.72)); }
.work-card div { position: absolute; left: 16px; right: 16px; bottom: 12px; z-index: 1; }
.work-card h3 { color: #fff; font-size: 16px; margin: 0 0 2px; }
.work-card p { color: rgba(255,255,255,.82); font-size: 12px; margin: 0; }
.area-pills { max-width: 820px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.area-pills a { border: 1px solid #dce7e1; border-radius: 5px; padding: 10px 16px; text-align: center; color: #445049; background: #fff; font-size: 12px; font-weight: 700; white-space: nowrap; }
.area-pills a:hover { border-color: #00a651; color: #00a651; background: #f3fff7; }
.home-faq .faq-item { border-radius: 4px; background: #fff; border-color: #e4e9e6; margin-bottom: 10px; }
.home-faq .faq-question { font-size: 14px; padding: 14px 18px; }
.home-faq .faq-answer p { padding: 0 18px 18px; margin: 0; font-size: 13px; }
.home-bottom-cta { background: #00a651; color: #fff; text-align: center; padding: 58px 0; }
.home-bottom-cta h2 { color: #fff; font-size: 30px; margin-bottom: 8px; }
.home-bottom-cta p { color: rgba(255,255,255,.88); margin-bottom: 14px; }
.home-bottom-cta strong { display: block; font-size: 24px; margin-bottom: 18px; }
.home-bottom-cta a { color: #000000; }
.recent-projects-strip { background: #343434; padding: 44px 0; color: #fff; }
.recent-projects-strip h2 { color: #fff; }
.project-thumbs { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.project-thumbs img { width: 118px; height: 72px; object-fit: cover; border-radius: 5px; }
.footer { background: #2f2f2f; padding-top: 44px; }
.footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 34px; }
.footer h3, .footer h4, .footer__logo { color: #fff; }
.footer p, .footer a, .footer__links a { color: #d0d0d0; }
.footer a:hover { color: #22c55e; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 500; width: 50px; height: 50px; border-radius: 50%; background: #22c55e; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 900; box-shadow: 0 8px 24px rgba(0,0,0,.24); }
.whatsapp-float:hover, .whatsapp-float-inline:hover { color: #fff; background: #16a34a; }
.whatsapp-float-inline { display: inline-flex; padding: 8px 12px; border-radius: 5px; background: #22c55e; color: #fff !important; font-size: 12px; font-weight: 800; }
.hero { background: #00a651; padding-top: 130px; min-height: 470px; }
.hero__grid, .hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 38px; align-items: center; }
.hero__lead, .hero__text { color: rgba(255,255,255,.9); }
.hero__image img { border-radius: 9px; height: 360px; object-fit: cover; }
.service-grid .service-card, .cards-grid .card { border-radius: 7px; box-shadow: 0 5px 16px rgba(15,23,42,.05); border-color: #e0ebe5; }
@media (max-width: 980px) {
  .home-hero__grid, .hero__grid, .hero__inner { grid-template-columns: 1fr; }
  .home-service-grid, .review-grid, .work-grid { grid-template-columns: repeat(2, 1fr); }
  .home-service-grid .home-service-card:last-child { grid-column: span 2; }
  .brief-grid { grid-template-columns: 1fr; }
  .brief-cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .process-line { grid-template-columns: repeat(2, 1fr); }
  .topbar__inner span:nth-child(2) { display: none; }
}
@media (max-width: 720px) {
  .site-topbar { display: none; }
  .header { top: 0; }
  .home-hero { padding-top: 92px; }
  .hero-stats, .home-service-grid, .review-grid, .work-grid, .why-grid, .process-line { grid-template-columns: 1fr; }
  .home-service-grid .home-service-card:last-child { grid-column: auto; }
  .brief-cards { grid-template-columns: 1fr; }
  .team-note { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* Heading Compliance & EEAT Overrides */
.service-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  font-size: 17px;
  margin-bottom: 9px;
}
.service-card .service-card-title {
  font-size: 18px;
  margin-bottom: 10px;
}
.cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: white;
  font-size: 30px;
  margin-bottom: 8px;
}
.step-title-styled {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.section-title-styled {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}
.footer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xs);
}
.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: white;
  margin-bottom: 20px;
}
.tech-bio-link-block a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
}
.tech-bio-link-block a:hover {
  color: var(--primary-dark);
}

/* Hero Image Carousel Styles */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 360px; /* Default height for services pages */
  border-radius: 9px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero__image.hero-carousel {
  height: 360px;
  width: 100%;
}
.home-hero__media.hero-carousel {
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
}
.content-with-image__image.hero-carousel {
  height: 400px;
  max-width: 560px;
  border-radius: var(--radius-lg);
}
.hero-carousel__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-carousel__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}
.hero-carousel__slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-carousel__dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 12px;
  border-radius: 20px;
  align-items: center;
}
.hero-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-carousel__dot.active {
  background: #ffffff;
  transform: scale(1.2);
}
@media (max-width: 980px) {
  .hero-carousel {
    height: 300px;
  }
  .content-with-image__image.hero-carousel {
    max-width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 720px) {
  .home-hero__media.hero-carousel {
    height: 280px;
    min-height: auto;
  }
}

/* Reviews Carousel Styles */
.reviews-carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  min-height: 240px;
}
.reviews-carousel__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.reviews-carousel__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}
.reviews-carousel__slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  position: relative;
}
.reviews-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.reviews-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 166, 81, 0.3) !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.reviews-carousel__dot.active {
  background: #00a651 !important;
  transform: scale(1.2);
}

/* ============================================================
   Redesign / Layout Customizations (Premium Green Format)
   ============================================================ */

/* Topbar Header styling */
.site-topbar {
  background: var(--primary-dark);
  color: white;
  font-size: var(--text-xs);
  padding: 8px 0;
  font-weight: 500;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-topbar .topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.site-topbar a {
  color: white;
  font-weight: 600;
}
.site-topbar a:hover {
  text-decoration: underline;
}

/* Two-column layout grid */
.layout-grid {
  display: grid;
  grid-template-columns: 2.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.main-content-col {
  min-width: 0; /* prevent grid blowouts */
}

.sidebar-col {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* WhatsApp CTA Card */
.whatsapp-cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.whatsapp-cta-card h3 {
  color: white;
  margin-bottom: var(--space-sm);
  font-size: var(--text-xl);
}
.whatsapp-cta-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}
.whatsapp-cta-card .btn-whatsapp {
  background-color: var(--accent);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 700;
  width: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}
.whatsapp-cta-card .btn-whatsapp:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  color: white;
}
.whatsapp-cta-card .call-link {
  display: block;
  margin-top: var(--space-md);
  color: white;
  font-weight: 600;
  font-size: var(--text-sm);
}
.whatsapp-cta-card .call-link a {
  color: white;
  text-decoration: underline;
}

/* Services Menu Widget */
.services-menu-widget {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.services-menu-widget h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--primary);
}
.services-menu-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.services-menu-item {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-weight: 500;
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}
.services-menu-item:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  transform: translateX(4px);
}
.services-menu-item-icon {
  margin-right: 12px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Checkmark List */
.checkmark-list {
  margin: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.checkmark-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-secondary);
  font-size: var(--text-base);
  margin-bottom: 8px;
}
.checkmark-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
  font-size: 18px;
}

/* Team Bio Card */
.team-bio-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-sm);
}
.team-bio-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.team-bio-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  font-weight: 700;
  overflow: hidden;
}
.team-bio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-bio-meta h4 {
  margin-bottom: 2px;
  font-size: var(--text-lg);
}
.team-bio-meta .title {
  color: var(--primary);
  font-size: var(--text-sm);
  font-weight: 600;
}
.team-bio-badges {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.team-bio-badge {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: var(--text-xs);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* Service Grid Card */
.service-grid-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-grid-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 28px;
}
.service-grid-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}
.service-grid-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}
.service-grid-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.service-grid-btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  padding: 8px var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  font-size: var(--text-sm);
  text-align: center;
}
.service-grid-btn-outline:hover {
  background: var(--primary);
  color: white;
}
.service-grid-btn-solid {
  background: var(--accent);
  color: white;
  font-weight: 700;
  padding: 10px var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  text-align: center;
}
.service-grid-btn-solid:hover {
  background: var(--accent-dark);
  color: white;
}

@media (max-width: 1024px) {
  .layout-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .sidebar-col {
    position: static;
  }
}

/* Global Content-Brief Checkmark Lists Override */
.content-brief ul, .content-brief ol {
  margin: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  list-style: none !important;
  padding-left: 0 !important;
}
.content-brief ul li, .content-brief ol li {
  position: relative;
  padding-left: 28px !important;
  color: var(--text-secondary);
  font-size: var(--text-base);
  margin-bottom: 8px;
  list-style: none !important;
}
.content-brief ul li::before, .content-brief ol li::before {
  content: '✓' !important;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
  font-size: 18px;
}





