/* SALT Plumbing Air & Electric - Refined Authority */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #00283d;
  --primary-light: #003a57;
  --accent: #ffcc29;
  --accent-dark: #e6b800;
  --cream: #e9dec3;
  --cream-light: #f5f0e4;
  --dark: #001a2b;
  --light: #f8f5ef;
  --white: #ffffff;
  --text: #2d3748;
  --text-light: #718096;
  --gold-gradient: linear-gradient(135deg, #ffcc29, #f0a500);
  --navy-gradient: linear-gradient(180deg, #00283d 0%, #001a2b 100%);
  --shadow-sm: 0 2px 8px rgba(0,40,61,0.08);
  --shadow-md: 0 8px 24px rgba(0,40,61,0.12);
  --shadow-lg: 0 16px 48px rgba(0,40,61,0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { max-width: 72ch; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--accent-dark); }

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

/* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
  display: inline-block;
}

.section-label--light { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.btn--primary {
  background: var(--gold-gradient);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(255,204,41,0.3);
}
.btn--primary:hover {
  box-shadow: 0 6px 24px rgba(255,204,41,0.45);
  color: var(--primary);
}

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

.btn--dark {
  background: var(--primary);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--primary-light);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: rgba(0,40,61,0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header__logo img {
  height: 52px;
  width: auto;
}

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

.header__nav a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.15s ease;
  position: relative;
  text-decoration: none;
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--accent);
  background: rgba(255,204,41,0.08);
}

.header__nav .has-dropdown { position: relative; }
.header__nav .has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 100;
}
.header__nav .has-dropdown:hover .dropdown { display: block; }
.header__nav .dropdown a {
  display: block;
  color: var(--text);
  padding: 10px 20px;
  font-size: 0.88rem;
  border-radius: 0;
}
.header__nav .dropdown a:hover {
  background: var(--cream-light);
  color: var(--primary);
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  margin-left: 16px;
}
.header__phone:hover { color: var(--white); }
.header__phone svg { width: 18px; height: 18px; }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--navy-gradient);
  padding-top: 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--dark));
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,204,41,0.12);
  border: 1px solid rgba(255,204,41,0.25);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s var(--transition) both;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s var(--transition) 0.1s both;
}
.hero h1 .accent { color: var(--accent); }

.hero__text {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s var(--transition) 0.2s both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s var(--transition) 0.3s both;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.6s var(--transition) 0.4s both;
}

.hero__trust-item {
  text-align: center;
}
.hero__trust-item .number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}
.hero__trust-item .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-top: 4px;
}
.hero__trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ============ SERVICES OVERVIEW ============ */
.services-overview {
  padding: 100px 0;
  background: var(--white);
}

.services-overview__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.services-overview__header p {
  margin: 16px auto 0;
  color: var(--text-light);
  font-size: 1.05rem;
}

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

.dept-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--primary);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s var(--transition), box-shadow 0.3s ease;
}
.dept-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dept-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.4s var(--transition);
}
.dept-card:hover .dept-card__img {
  opacity: 0.35;
  transform: scale(1.03);
}

.dept-card__content {
  position: relative;
  z-index: 2;
  padding: 32px;
  background: linear-gradient(transparent, rgba(0,26,43,0.95));
}

.dept-card__count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dept-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.dept-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.dept-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 16px;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.dept-card__link:hover { gap: 10px; color: var(--accent); }

/* ============ WHY CHOOSE US ============ */
.why-us {
  padding: 100px 0;
  background: var(--cream-light);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--transition), box-shadow 0.3s ease;
  border-top: 3px solid transparent;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--accent);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(0,40,61,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 1.5rem;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--primary);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,204,41,0.04);
}

.stats-bar__inner {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  position: relative;
}
.stat-item__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-item__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.03em;
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 80px 0;
  background: var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/modern-home.jpg') center/cover no-repeat;
  opacity: 0.1;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-section .btn { margin: 0 8px; }

/* ============ ABOUT PAGE ============ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--navy-gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,204,41,0.06) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.about-intro {
  padding: 80px 0;
  background: var(--white);
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-intro__text h2 { margin-bottom: 20px; }
.about-intro__text p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-intro__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Awards & Badges */
.awards {
  padding: 80px 0;
  background: var(--cream-light);
}

.awards__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 48px;
}

.award-badge {
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary);
  border-left: 3px solid var(--accent);
}
.award-badge svg {
  width: 24px;
  height: 24px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

/* Locations */
.locations {
  padding: 80px 0;
  background: var(--white);
}

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

.location-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,40,61,0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.location-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.location-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.location-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}
.location-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.92rem;
}
.location-card__phone:hover { color: var(--accent-dark); }

/* ============ SERVICE PAGE ============ */
.service-page-intro {
  padding: 80px 0;
  background: var(--white);
}

.service-page-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-page-intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-page-intro__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.service-page-intro h2 { margin-bottom: 16px; }
.service-page-intro p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Service Cards Grid */
.services-grid-section {
  padding: 80px 0;
  background: var(--cream-light);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--transition), box-shadow 0.3s ease;
  border-left: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--primary);
}

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

.service-card__points {
  list-style: none;
  padding: 0;
}
.service-card__points li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 4px 0 4px 20px;
  position: relative;
}
.service-card__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============ REVIEWS PAGE ============ */
.reviews-hero {
  text-align: center;
}

.aggregate-rating {
  max-width: 500px;
  margin: 0 auto 48px;
  text-align: center;
}
.aggregate-rating__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}
.aggregate-rating__stars svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}
.aggregate-rating__score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.aggregate-rating__count {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 4px;
}

.rating-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.rating-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--accent);
}
.rating-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.rating-card__stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 8px;
  color: var(--accent);
}
.rating-card__stars svg { width: 20px; height: 20px; }
.rating-card__score {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}
.rating-card__count {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* ============ CONTACT ============ */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-form {
  background: var(--cream-light);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--primary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,40,61,0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,204,41,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

#form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  display: none;
}
#form-status.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
#form-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--accent-dark);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-detail p {
  font-size: 0.92rem;
  color: var(--text);
}
.contact-detail a {
  color: var(--primary);
  font-weight: 600;
}
.contact-detail a:hover { color: var(--accent-dark); }

/* Map */
.map-section {
  padding: 80px 0;
  background: var(--cream-light);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

#map {
  height: 450px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}

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

.footer__brand img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.15s ease;
}
.footer__social a:hover {
  background: var(--accent);
  color: var(--primary);
}
.footer__social a svg { width: 18px; height: 18px; }

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.footer__links {
  list-style: none;
  padding: 0;
}
.footer__links li { margin-bottom: 8px; }
.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.15s ease;
}
.footer__links a:hover { color: var(--accent); }

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}
.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal--right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}
.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.08s); }

/* ============ KEYFRAMES ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .rating-locations { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 4px;
    transition: right 0.3s var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .header__nav.open { right: 0; }
  .header__nav a { font-size: 1rem; padding: 12px 0; width: 100%; }
  .header__nav .has-dropdown .dropdown {
    display: none;
    position: static;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    box-shadow: none;
    padding: 4px 0;
    margin-top: 4px;
  }
  .header__nav .has-dropdown.open-sub .dropdown { display: block; }
  .header__nav .dropdown a { color: rgba(255,255,255,0.7); padding: 8px 16px; }

  .header__phone { display: none; }

  .hero { min-height: 75vh; }
  .hero__content { padding: 48px 0; }
  .hero__trust { flex-wrap: wrap; gap: 16px; }
  .hero__trust-divider { display: none; }

  .dept-grid { grid-template-columns: 1fr; }
  .dept-card { min-height: 260px; }

  .why-us__grid { grid-template-columns: 1fr; }

  .stats-bar__inner { gap: 32px; }

  .about-intro__grid { grid-template-columns: 1fr; gap: 32px; }
  .service-page-intro__grid { grid-template-columns: 1fr; gap: 32px; }

  .locations__grid { grid-template-columns: 1fr; }
  .rating-locations { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .services-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
}

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