/* Dr. Clean Exterior Services — dark/rich theme (experimental) */

:root {
  --navy: #071a30;
  --blue: #017ef4;
  --blue-light: #4fa6ff;
  --red: #d7263d;
  --red-dark: #b81f34;
  --gold: #d9b567;
  --ink: #f3f6fb;
  --muted: #9aa8c2;
  --bg: #060b14;
  --bg-alt: #0b1220;
  --card: rgba(255, 255, 255, 0.045);
  --card-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.1);
  --radius: 14px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.55);
  --glow-blue: 0 0 50px rgba(1, 126, 244, 0.25);
  --glow-red: 0 0 50px rgba(215, 38, 61, 0.22);
  --glow-gold-text: 0 0 10px rgba(217, 181, 103, 0.7), 0 0 22px rgba(217, 181, 103, 0.35);
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  position: relative;
}

/* Ambient glow orbs fixed behind everything for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(650px 550px at 8% -5%, rgba(1, 126, 244, 0.18), transparent 60%),
    radial-gradient(550px 500px at 100% 15%, rgba(215, 38, 61, 0.14), transparent 60%),
    radial-gradient(600px 550px at 0% 55%, rgba(217, 181, 103, 0.06), transparent 60%),
    radial-gradient(750px 650px at 100% 85%, rgba(1, 126, 244, 0.13), transparent 60%),
    radial-gradient(700px 600px at 50% 115%, rgba(215, 38, 61, 0.1), transparent 60%);
  pointer-events: none;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: var(--blue); color: #fff; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: "Segoe UI Semibold", "Inter", system-ui, sans-serif;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  background: linear-gradient(120deg, #ffffff 30%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { color: var(--muted); margin: 0 0 16px; }

.eyebrow {
  display: inline-block;
  color: var(--gold);
  text-shadow: var(--glow-gold-text);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  background: linear-gradient(120deg, #ffffff 40%, var(--blue-light) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head p { margin: 0; color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(215, 38, 61, 0.4);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(215, 38, 61, 0.5); }

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); }

.btn-secondary {
  background: linear-gradient(135deg, var(--blue) 0%, #0161bd 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(1, 126, 244, 0.35);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(1, 126, 244, 0.45); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 11, 20, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
}

.nav-logo {
  height: 60px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(1, 126, 244, 0.25));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: #fff; }

.nav-links a.active { color: var(--blue-light); }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-phone {
  font-weight: 700;
  color: var(--blue-light);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}

/* Medical stripe — refined shimmer line */
.medical-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue), var(--gold), var(--red));
  background-size: 300% 100%;
  animation: shimmer 8s linear infinite;
}

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

/* Hero */
.hero {
  background: radial-gradient(120% 140% at 15% 0%, #0f4c8f 0%, var(--navy) 55%, var(--bg) 100%);
  color: #fff;
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(1, 126, 244, 0.35), transparent 70%);
}

.hero::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(215, 38, 61, 0.22), transparent 70%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: var(--glow-gold-text);
  margin-bottom: 20px;
}

.hero h1 { color: #fff; -webkit-text-fill-color: initial; background: none; }
.hero p.lead { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 520px; }

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--gold);
  text-shadow: 0 0 6px rgba(217, 181, 103, 0.35);
}
.hero-stat span { font-size: 0.85rem; color: rgba(217, 181, 103, 0.75); }

.hero-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg), var(--glow-blue);
}

.hero-card img {
  border-radius: 8px;
  margin-bottom: 18px;
}

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

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow), var(--glow-blue);
  border-color: rgba(1, 126, 244, 0.35);
  background: var(--card-hover);
}

.service-photo {
  aspect-ratio: 1;
  margin: -28px -28px 20px -28px;
  position: relative;
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6,11,20,0.5));
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  box-shadow: 0 10px 26px rgba(1, 126, 244, 0.35);
}

.service-icon svg { width: 26px; height: 26px; }

.service-card p { margin-bottom: 12px; }

.service-card a.learn-more {
  color: var(--blue-light);
  font-weight: 700;
  font-size: 0.9rem;
}

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

.reason-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reason-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.reason-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(1, 126, 244, 0.14);
  border: 1px solid rgba(1, 126, 244, 0.35);
  color: var(--blue-light);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Service area */
.area-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
}

.area-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(215, 38, 61, 0.6);
  flex-shrink: 0;
}

.area-map-placeholder {
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  padding: 24px;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(94%) hue-rotate(180deg) brightness(0.95) contrast(0.92);
}

/* Maintenance plans */
.plans-section {
  background: radial-gradient(120% 140% at 15% 0%, #0f4c8f 0%, var(--navy) 55%, var(--bg) 100%);
  color: #fff;
  padding: 96px 0;
}

.plans-section .section-head h2 {
  background: linear-gradient(120deg, #ffffff 40%, var(--blue-light) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plans-section .section-head p { color: rgba(255, 255, 255, 0.72); }

.plan-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0 auto 56px;
  max-width: 980px;
}

.plan-step { text-align: center; }

.plan-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(215, 38, 61, 0.4);
}

.plan-step h4 { color: #fff; margin-bottom: 8px; font-size: 1rem; }
.plan-step p { color: rgba(255, 255, 255, 0.6); font-size: 0.88rem; margin: 0; }

.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.plan-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-card:hover { transform: translateY(-4px); }

.plan-card.popular {
  border-color: var(--red);
  background: linear-gradient(160deg, rgba(215,38,61,0.14), rgba(255,255,255,0.03));
  box-shadow: var(--glow-red);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(215, 38, 61, 0.5);
}

.plan-name {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: var(--glow-gold-text);
  margin-bottom: 8px;
}

.plan-frequency {
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.plan-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.plan-features li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.plan-features li:last-child { border-bottom: none; }

.plan-features li::before {
  content: "\2713";
  color: var(--blue-light);
  font-weight: 800;
  flex-shrink: 0;
}

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

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

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.35s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.testimonial-card.fade { opacity: 0; }

.stars { color: var(--gold); text-shadow: var(--glow-gold-text); letter-spacing: 2px; margin-bottom: 12px; }

.testimonial-name { font-weight: 700; color: var(--blue-light); margin-top: 12px; }

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.google-rating-badge .stars {
  margin-bottom: 0;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.google-rating-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-blue);
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--blue) 0%, var(--red) 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% -50%, rgba(255,255,255,0.25), transparent 70%);
}

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

.cta-band h2 { color: #fff; margin-bottom: 12px; -webkit-text-fill-color: #fff; background: none; }
.cta-band p { color: rgba(255,255,255,0.92); }

/* Contact / quote form */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-info-card {
  background: radial-gradient(120% 140% at 15% 0%, #0f4c8f 0%, var(--navy) 55%, var(--bg) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.contact-info-card h3 { color: #fff; }
.contact-info-card p { color: rgba(255,255,255,0.7); }

.contact-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info-row .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-row a, .contact-info-row span { color: #fff; font-weight: 600; }

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

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

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.field select option { background: var(--bg-alt); color: var(--ink); }

.field input::placeholder,
.field textarea::placeholder { color: rgba(154, 168, 194, 0.6); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--blue-light);
  outline-offset: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
}

.field-checkbox input { width: auto; margin-top: 3px; }

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 12px;
}

.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Gallery — "The Operating Room" case files */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.case-file {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-file:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg), var(--glow-blue); }

.case-file-header {
  background: linear-gradient(120deg, var(--navy), #0c3f75);
  color: #fff;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-file-header .case-cross {
  color: var(--red);
  margin-right: 6px;
}

.case-file-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.case-file-photos:not(.single)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--red) 0 8px, transparent 8px 16px);
  transform: translateX(-1px);
}

.case-file-photos.single {
  display: block;
}

.case-file-photos.single img {
  width: 100%;
  height: auto;
  display: block;
}

.case-file-photo {
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  position: relative;
}

.case-file-photo img { width: 100%; height: 100%; object-fit: cover; }

.case-file-photo .tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
}

.case-file-photo.after .tag { background: var(--red); }

.case-file-body { padding: 18px 20px 20px; }

.case-file-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.case-file-row:last-child { margin-bottom: 0; }

.case-file-label {
  font-weight: 800;
  color: var(--blue-light);
  min-width: 84px;
  flex-shrink: 0;
}

.case-file-value { color: var(--ink); }

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px dashed var(--border);
  background: var(--card);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  padding: 16px;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* Page hero (interior pages) */
.page-hero {
  background: radial-gradient(120% 140% at 15% 0%, #0f4c8f 0%, var(--navy) 55%, var(--bg) 100%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 8px; -webkit-text-fill-color: initial; background: none; }
.page-hero p { color: rgba(255,255,255,0.72); margin: 0; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.breadcrumb a { color: var(--gold); text-shadow: var(--glow-gold-text); font-weight: 700; }

/* About page */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Footer */
.site-footer {
  background: radial-gradient(120% 140% at 15% 0%, #0f4c8f 0%, var(--navy) 55%, var(--bg) 100%);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 28px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: #fff; }

.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.55); max-width: 320px; }

.footer-logo {
  height: 84px;
  width: auto;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 16px rgba(1, 126, 244, 0.25));
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .area-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 11, 20, 0.98);
    backdrop-filter: blur(14px);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
  }
  .form-row { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
