/* Restoration Medix - Main Styles */

:root {
  /* Mascot-inspired color palette */
  --blue-dark: #1a3a5c;
  --blue-primary: #2d5a87;
  --blue-light: #4a90c2;
  --blue-pale: #e8f4fc;

  --orange-primary: #f5a623;
  --orange-dark: #d4880c;
  --orange-light: #ffc857;
  --orange-pale: #fff8eb;

  --teal-primary: #5bcece;
  --teal-dark: #3ba8a8;
  --teal-light: #a8e6e6;
  --teal-pale: #e8fafa;

  --navy: #0d2137;
  --text: #1a2a3a;
  --muted: #5a6a7a;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #d0dde8;

  --success: #22c55e;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 40px -10px rgb(0 0 0 / 0.2);
}

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

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, .brand {
  font-family: 'Space Grotesk', sans-serif;
}

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

/* ========== EMERGENCY BANNER ========== */
.emergency-banner {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
  color: var(--navy);
  text-align: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.emergency-banner .mascot-mini {
  height: 32px;
  width: auto;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.emergency-banner span {
  background: var(--navy);
  color: var(--orange-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== HEADER ========== */
.header {
  background: linear-gradient(180deg, var(--navy) 0%, var(--blue-dark) 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

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

.brand {
  color: white;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand span {
  color: var(--orange-primary);
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--teal-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-primary);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: white;
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}

.phone-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--success) 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  animation: ring 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

@keyframes ring {
  0%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(-8deg); }
  20%, 40% { transform: rotate(8deg); }
  50% { transform: rotate(0); }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.5);
}

.btn-secondary {
  background: white;
  color: var(--blue-dark);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--teal-primary);
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  color: white;
  box-shadow: 0 6px 20px rgba(91, 206, 206, 0.4);
}

.btn-teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(91, 206, 206, 0.5);
}

.btn-large {
  padding: 18px 36px;
  font-size: 16px;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 40%, var(--blue-primary) 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(91, 206, 206, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.1) 0%, transparent 40%);
}

/* Water drop pattern */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-8 12-15 20-15 28a15 15 0 0030 0c0-8-7-16-15-28z' fill='%235bcece' fill-opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.6;
}

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

.hero-left {
  padding-right: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(91, 206, 206, 0.15);
  border: 2px solid rgba(91, 206, 206, 0.4);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--teal-light);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
}

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

.hero h1 {
  color: white;
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 .highlight {
  color: var(--orange-primary);
  position: relative;
}

.hero h1 .highlight-teal {
  color: var(--teal-primary);
}

.hero-text {
  color: var(--teal-light);
  font-size: 18px;
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.hero-feature-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero mascot area */
.hero-mascot-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mascot {
  position: relative;
  z-index: 2;
}

.hero-mascot img {
  height: 380px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.mascot-speech {
  position: absolute;
  top: 10px;
  right: -20px;
  background: white;
  padding: 16px 24px;
  border-radius: 20px;
  border-bottom-right-radius: 4px;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
  z-index: 3;
}

.mascot-speech p {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.mascot-speech span {
  color: var(--orange-primary);
}

/* Hero form card */
.hero-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
  border: 3px solid var(--teal-pale);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--teal-primary), var(--orange-primary));
  border-radius: 26px;
  z-index: -1;
  opacity: 0.3;
}

.hero-card h3 {
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-card h3 img {
  height: 40px;
  width: auto;
}

.hero-card-subtitle {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 15px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.2s;
  background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(91, 206, 206, 0.15);
}

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

/* ========== TRUST BAR ========== */
.trust-bar {
  background: white;
  padding: 28px 0;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-pale), var(--teal-pale));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 2px solid var(--border);
}

/* ========== CONTACT FORM SECTION ========== */
.contact-form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  position: relative;
}

.form-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.form-section-text {
  color: white;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.form-section-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.form-section-text h2 span {
  color: var(--orange-primary);
}

.form-section-text p {
  font-size: 18px;
  color: var(--teal-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.form-benefit span {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.form-section-mascot {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.form-section-mascot img {
  height: 380px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  animation: float 4s ease-in-out infinite;
}

.form-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-xl);
}

.form-card h3 {
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-card-subtitle {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 15px;
}

/* ========== SECTIONS COMMON ========== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal-pale), var(--blue-pale));
  color: var(--blue-dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  border: 2px solid var(--teal-light);
}

.section-badge img {
  height: 24px;
  width: auto;
}

.section-title {
  font-size: 44px;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-title span {
  color: var(--orange-primary);
}

.section-subtitle {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== SERVICES ========== */
.services {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 2px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-primary), var(--blue-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-light);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--teal-pale), var(--blue-pale));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  border: 2px solid var(--teal-light);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--navy);
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ========== RESULTS ========== */
.results {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  color: white;
}

.results .section-badge {
  background: rgba(91, 206, 206, 0.2);
  border-color: rgba(91, 206, 206, 0.4);
  color: var(--teal-light);
}

.results .section-title {
  color: white;
}

.results .section-subtitle {
  color: var(--teal-light);
}

.results-slider-main {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: var(--shadow-xl);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.results-slider-main iframe {
  display: block;
  width: 100%;
  height: 500px;
}

.results-cta {
  text-align: center;
}

/* ========== PROCESS ========== */
.process {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}

/* Connector line */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -12px;
  width: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-primary), rgba(245, 166, 35, 0.3));
  border-radius: 2px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  margin: 0 auto 24px;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--navy);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 3px solid rgba(245, 166, 35, 0.3);
  border-radius: 50%;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--navy);
}

.process-step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ========== WHY US ========== */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  color: white;
  position: relative;
}

.why-us .section-badge {
  background: rgba(91, 206, 206, 0.2);
  border-color: rgba(91, 206, 206, 0.4);
  color: var(--teal-light);
}

.why-us .section-title {
  color: white;
}

.why-us .section-subtitle {
  color: var(--teal-light);
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.why-mascot {
  text-align: center;
}

.why-mascot img {
  height: 400px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

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

.why-card {
  background: rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 28px;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  gap: 18px;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: var(--orange-primary);
  background: rgba(255,255,255,0.15);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-primary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.why-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: white;
}

.why-content p {
  color: var(--teal-light);
  font-size: 14px;
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--teal-pale) 0%, var(--light) 100%);
}

.google-reviews-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--teal-light);
}

/* ========== CTA ========== */
.cta {
  padding: 100px 0;
  background: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-mascot {
  margin-bottom: 32px;
}

.cta-mascot img {
  height: 150px;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
  animation: float 3s ease-in-out infinite;
}

.cta h2 {
  color: var(--navy);
  font-size: 48px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta h2 span {
  color: var(--orange-primary);
}

.cta p {
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta .phone-display {
  color: var(--navy);
  font-size: 36px;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta .phone-display span {
  font-size: 28px;
}

/* ========== LOCATION PAGE SPECIFIC ========== */
.breadcrumb {
  padding: 16px 0;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 14px;
}

.breadcrumb-list a {
  color: var(--blue-primary);
  text-decoration: none;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-list .separator {
  color: var(--muted);
}

.breadcrumb-list .current {
  color: var(--muted);
}

.location-intro {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

.location-intro-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-intro h1 {
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}

.location-intro h1 span {
  color: var(--orange-primary);
}

.location-intro p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.location-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.location-stat {
  text-align: center;
}

.location-stat .number {
  font-size: 36px;
  font-weight: 800;
  color: var(--teal-primary);
  font-family: 'Space Grotesk', sans-serif;
}

.location-stat .label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.location-mascot img {
  height: 350px;
  width: auto;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
}

.local-info {
  padding: 80px 0;
  background: white;
}

.local-info h2 {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 24px;
}

.local-info h2 span {
  color: var(--orange-primary);
}

.local-info-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.local-info-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.local-highlights {
  background: var(--teal-pale);
  border-radius: 20px;
  padding: 32px;
  border: 2px solid var(--teal-light);
}

.local-highlights h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 20px;
}

.local-highlights ul {
  list-style: none;
}

.local-highlights li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(91, 206, 206, 0.3);
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.local-highlights li:last-child {
  border-bottom: none;
}

.nearby-areas {
  padding: 80px 0;
  background: var(--light);
}

.nearby-areas h2 {
  font-size: 32px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.nearby-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 2px solid var(--border);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.nearby-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}

.nearby-card p {
  font-size: 14px;
  color: var(--muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    padding-right: 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-text {
    margin: 0 auto 28px;
  }

  .hero-features {
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-mascot-section {
    display: none;
  }

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

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

  .process-step:nth-child(2)::after {
    display: none;
  }

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

  .why-mascot {
    order: -1;
  }

  .why-mascot img {
    height: 250px;
  }

  .location-intro-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .location-mascot {
    order: -1;
  }

  .location-mascot img {
    height: 250px;
  }

  .location-stats {
    justify-content: center;
  }

  .local-info-content {
    grid-template-columns: 1fr;
  }

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

  .form-section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-section-text {
    text-align: center;
  }

  .form-section-text h2 {
    font-size: 32px;
  }

  .form-benefits {
    align-items: center;
  }
}

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

  .hero {
    padding: 50px 0 80px;
  }

  .hero h1 {
    font-size: 32px;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none !important;
  }

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

  .trust-items {
    gap: 24px;
  }

  .section-title {
    font-size: 32px;
  }

  .cta h2 {
    font-size: 32px;
  }

  html, body {
    overflow-x: hidden;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .phone-link {
    font-size: 16px;
  }

  .phone-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

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

  .location-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* ========================================
   HAMBURGER MENU - Mobile Navigation
   ======================================== */

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-line:nth-child(2) {
  margin: 5px 0;
}

/* Hamburger animation when open */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1000;
  display: none;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Header - Static Top */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.mobile-menu-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-menu-header .logo img {
  width: 45px;
  height: 45px;
}

.mobile-menu-header .brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.mobile-menu-header .brand span {
  color: var(--primary);
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Nav - Scrollable Middle */
.mobile-menu-nav {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-nav a {
  display: block;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
  background: #f5f5f5;
}


/* Mobile menu section label (Services header) */
.mobile-menu-section-label {
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

/* Service sub-links - indented */
.mobile-menu-section-label + a,
.mobile-menu-section-label + a + a,
.mobile-menu-section-label + a + a + a,
.mobile-menu-section-label + a + a + a + a {
  padding-left: 40px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
}

/* Mobile menu divider */
.mobile-menu-divider {
  height: 1px;
  background: #eee;
  margin: 8px 20px;
}

/* Mobile Menu Footer - Static Bottom */
.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}

.mobile-menu-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 700;
}

/* Show hamburger on mobile, hide desktop nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }
}

/* Body scroll lock when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ========================================
   SERVICES DROPDOWN - Desktop Navigation
   ======================================== */

/* Desktop Dropdown Container */
.nav-item-dropdown {
  position: relative;
}

.nav-link-dropdown {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
}

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

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
  margin-top: 10px;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

/* ========================================
   MOBILE MENU - Expandable Services
   ======================================== */

.mobile-menu-item-expandable {
  display: flex;
  flex-direction: column;
}

.mobile-menu-expand-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.mobile-menu-expand-btn:hover,
.mobile-menu-expand-btn:active {
  background: #f5f5f5;
}

.expand-arrow {
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.mobile-menu-expand-btn.active .expand-arrow {
  transform: rotate(45deg);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  overflow: hidden;
}

.mobile-submenu.active {
  display: flex;
}

.mobile-submenu a {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mobile-submenu a:hover,
.mobile-submenu a:active {
  background: #f5f5f5;
}

/* ========================================
   SERVICE CARDS - Clickable 4-Grid Layout
   ======================================== */

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

.service-card-link {
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-link-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 20px;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-card-link:hover .service-link-arrow {
  opacity: 1;
  transform: translateX(5px);
}

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

@media (max-width: 600px) {
  .services-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Fix nav dropdown vertical alignment */
.nav {
  align-items: center;
}

.nav-item-dropdown {
  display: flex;
  align-items: center;
}

/* Override nav styles for dropdown menu links */
.nav .dropdown-menu a {
  color: var(--text);
}

.nav .dropdown-menu a:hover {
  color: var(--text);
  background: #f5f5f5;
}

/* Mobile menu section label and divider */
