
:root {
  --primary: #ff5b2e;
  --primary-dark: #e14616;
  --accent: #004a7a;
  --accent-dark: #001d3d;
  --bg: #f5f7fb;
  --bg-soft: #ffffff;
  --border-soft: rgba(148, 163, 184, 0.35);
  --text: #0f172a;
  --muted: #6b7280;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 32px 65px rgba(15, 23, 42, 0.2);
  --nav-height: 70px;
  --video-height-mobile: 250px;
  --video-height-desktop: 280px;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffffff 0, #f5f7fb 35%, #e5ebf5 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 1.25rem;
  margin: 0 auto;
}

/* HEADER / NAVBAR (no top-bar anywhere) */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-container {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg,#0f172a,#020617);
  color: #f9fafb;
  box-shadow: 0 16px 32px rgba(15,23,42,0.45);
}

.brand-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0,#f97316,#b91c1c);
}

.brand-icon-wrap i {
  font-size: 1rem;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.06em;
}

.brand-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.7;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-link {
  position: relative;
  padding: 0.25rem 0;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg,var(--primary),#fb923c);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--primary {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg,var(--primary),#fb923c);
  color: #fff;
  box-shadow: 0 16px 32px rgba(248,113,113,0.45);
}

.nav-item.has-dropdown {
  position: relative;
}

.nav-link--dropdown i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.75rem;
  min-width: 260px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 920;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-scroll {
  max-height: 270px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.55rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: #111827;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.dropdown-link span {
  font-weight: 500;
}

.dropdown-link i {
  font-size: 0.7rem;
  color: var(--muted);
}

.dropdown-link:hover {
  background: radial-gradient(circle at 0 0, rgba(251,146,60,0.16),rgba(249,250,251,0.98));
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15,23,42,0.18);
}

/* Mobile navigation */

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  flex-direction: column;
  gap: 4px;
  padding: 0.35rem;
  border-radius: 999px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-toggle-line {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(15,23,42,0.05);
  box-shadow: 0 8px 18px rgba(15,23,42,0.25);
  transform: translateY(-1px);
}

body.nav-open .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body.nav-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 900;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
}

/* VIDEO BANNER – global for all pages */

.video-banner-wrapper {
  background: radial-gradient(circle at top left,rgba(15,23,42,0.04),rgba(15,23,42,0.02));
  padding: 0.7rem 0 0.25rem;
  border-bottom: 1px solid rgba(148,163,184,0.25);
}

.video-banner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.video-banner-shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #020617;
  box-shadow: var(--shadow-soft);
}

.video-banner-media {
  width: 100%;
  height: var(--video-height-desktop);
  overflow: hidden;
}

.video-banner-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.video-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0.9rem 1.1rem;
  pointer-events: none;
}

.video-banner-content {
  max-width: 360px;
  color: #f9fafb;
}

.video-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(12px);
}

.video-signal-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle,#22c55e,#16a34a);
  box-shadow: 0 0 0 0 rgba(34,197,94,0.7);
  animation: pulseSignal 1.6s ease-in-out infinite;
}

.video-banner-headline {
  margin-top: 0.55rem;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-shadow: 0 10px 22px rgba(15,23,42,0.9);
}

.video-banner-cta-row {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.video-banner-cta-row .btn {
  pointer-events: auto;
  padding-inline: 1.2rem;
  font-size: 0.8rem;
}

/* HERO */

.hero {
  padding: 2.4rem 0 2.4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(0,1fr);
  gap: 2.3rem;
  align-items: center;
}

.hero-content-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.95);
  color: #e5e7eb;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle,#22c55e,#16a34a);
}

.hero-title {
  font-size: clamp(2.1rem,4vw,2.7rem);
  margin: 1rem 0 0.55rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 30rem;
}

.hero-subtitle strong {
  font-weight: 600;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 0.6rem 1.2rem;
  margin: 1.4rem 0 1.6rem;
  font-size: 0.9rem;
}

.hero-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: #374151;
}

.hero-highlights i {
  margin-top: 0.16rem;
  font-size: 0.9rem;
  color: #22c55e;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.hero-meta {
  font-size: 0.82rem;
  color: #4b5563;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-meta span i {
  font-size: 0.8rem;
  color: #22c55e;
}

.hero-card {
  border-radius: 24px;
  background: radial-gradient(circle at top left,#f9fafb,#e5ebf5);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}

.hero-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
}

.hero-card-phone {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.35rem 0;
  letter-spacing: 0.06em;
  color: #0f172a;
}

.hero-card-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.hero-pill {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(15,23,42,0.03);
  color: #374151;
  border: 1px dashed rgba(148,163,184,0.8);
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.6rem;
}

.hero-badge {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(34,197,94,0.1);
  color: #15803d;
  font-weight: 600;
  font-size: 0.74rem;
}

.hero-image {
  margin-top: 1rem;
  position: relative;
}

.hero-image-main {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.7);
  box-shadow: var(--shadow-strong);
}

.hero-image-floating-card {
  position: absolute;
  right: -0.4rem;
  bottom: 1.1rem;
  padding: 0.65rem 0.95rem;
  border-radius: 18px;
  background: #020617;
  color: #f9fafb;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 18px 35px rgba(15,23,42,0.6);
}

.hero-image-floating-card i {
  color: #22c55e;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn i {
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg,var(--primary),#fb923c);
  color: #fff;
  box-shadow: 0 18px 35px rgba(248,113,113,0.45);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: var(--shadow-strong);
}

.btn-outline {
  background: rgba(15,23,42,0.02);
  color: #111827;
  border: 1px solid rgba(148,163,184,0.7);
  box-shadow: 0 12px 26px rgba(15,23,42,0.14);
}

.btn-outline:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-call {
  background: linear-gradient(135deg,var(--primary),#fb923c);
  color: #fff;
  box-shadow: 0 16px 32px rgba(248,113,113,0.55);
}

.btn-whatsapp {
  background: linear-gradient(135deg,#22c55e,#16a34a);
  color: #ecfdf5;
  box-shadow: 0 16px 32px rgba(22,163,74,0.55);
}

.btn-call:hover,
.btn-whatsapp:hover {
  transform: translateY(-1px) scale(1.02);
}

.btn-pulse {
  animation: pulseGlow 1.8s ease-in-out infinite;
}

/* SECTIONS */

.section {
  padding: 2.7rem 0;
}

.section-header {
  margin-bottom: 1.8rem;
}

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 600;
}

.section-title {
  margin: 0.4rem 0 0.3rem;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 32rem;
}

/* SERVICE CARDS */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1.4rem;
}

.service-card {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(145deg,#f9fafb,#e5ebf5);
  padding: 1.3rem 1.3rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left,rgba(248,113,113,0.12),transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px) rotateX(3deg) rotateY(-2deg);
  box-shadow: 0 28px 55px rgba(15,23,42,0.25);
  border-color: rgba(248,113,113,0.6);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0,#fee2e2,#fecaca);
  color: #b91c1c;
  margin-bottom: 0.75rem;
  box-shadow: 0 18px 32px rgba(248,113,113,0.45);
}

.service-title {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.service-text {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #4b5563;
}

.service-meta a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: var(--accent);
}

.service-meta a i {
  font-size: 0.8rem;
}

/* DISTRICT PILLS */

.district-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 0.85rem;
}

.district-pill {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.02);
  border: 1px solid rgba(148,163,184,0.75);
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.district-pill span {
  font-weight: 500;
}

.district-pill i {
  font-size: 0.65rem;
  color: var(--muted);
}

.district-pill:hover {
  background: radial-gradient(circle at 0 0,rgba(56,189,248,0.26),rgba(255,255,255,0.98));
  border-color: rgba(59,130,246,0.9);
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(59,130,246,0.35);
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.55);
  box-shadow: 0 18px 35px rgba(15,23,42,0.16);
}

/* INFO BOX */

.info-box {
  border-radius: 18px;
  padding: 1rem 1.15rem;
  background: #020617;
  color: #e5e7eb;
  font-size: 0.88rem;
  box-shadow: var(--shadow-soft);
}

.info-box strong {
  color: #fbbf24;
}

/* PAGE HEADERS / CONTENT */

.page-header-simple {
  padding: 2.2rem 0 1.6rem;
}

.breadcrumbs {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.breadcrumbs span {
  margin: 0 0.25rem;
}

.page-title {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: 0.94rem;
  color: var(--muted);
  max-width: 34rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
  gap: 2rem;
}

.content-block h2 {
  font-size: 1.15rem;
  margin: 1.2rem 0 0.4rem;
}

.content-block p {
  font-size: 0.92rem;
  color: #374151;
  margin-top: 0.25rem;
}

.content-block ul {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0.9rem;
}

.content-block ul li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.25rem;
}

.content-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle,var(--primary),#facc15);
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr);
  gap: 1.3rem;
}

.contact-card {
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.5rem;
}

.contact-list {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.contact-list i {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0,#dbeafe,#bfdbfe);
  color: #1d4ed8;
  font-size: 0.85rem;
  flex-shrink: 0;
}

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

.contact-cta-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* FLOATING CTA */

.floating-cta {
  position: fixed;
  bottom: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  z-index: 1100;
}

.floating-cta a {
  flex: 1;
}

/* FOOTER */

.site-footer {
  margin-top: 2.8rem;
  padding: 2.3rem 0 1.4rem;
  background: radial-gradient(circle at top left,#020617,#020617 40%,#020b1c 100%);
  color: #9ca3af;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) repeat(2,minmax(0,1fr));
  gap: 1.75rem;
  font-size: 0.85rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-brand .brand {
  box-shadow: none;
}

.footer-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #e5e7eb;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a {
  color: inherit;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: #e5e7eb;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.footer-contact-item i {
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(55,65,81,0.7);
  padding-top: 1rem;
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.footer-bottom span strong {
  color: #e5e7eb;
}

/* ANIMATIONS & REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@keyframes pulseGlow {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(248,113,113,0.45);
  }
  50% {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 0 0 14px rgba(248,113,113,0);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(248,113,113,0);
  }
}

@keyframes pulseSignal {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34,197,94,0.7);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 16px rgba(34,197,94,0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34,197,94,0);
  }
}

/* RESPONSIVE */

@media (min-width: 880px) {
  .floating-cta {
    left: auto;
    right: 1.8rem;
    bottom: 1.8rem;
    width: auto;
    max-width: 320px;
  }
  .floating-cta a {
    flex: 0 0 auto;
  }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0,1.3fr) minmax(0,1.1fr);
  }
  .two-column {
    grid-template-columns: minmax(0,1fr);
  }
  .service-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .district-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: calc(var(--nav-height) + 6px) 0 auto 0;
    background: rgba(255,255,255,0.99);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 25px 45px rgba(15,23,42,0.4);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
    padding: 0.75rem 0 1rem;
    max-height: calc(100vh - var(--nav-height) - 18px);
    overflow-y: auto;
    z-index: 920;
  }

  body.nav-open .main-nav {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.25rem 1.1rem 0.75rem;
  }

  .nav-link {
    padding: 0.55rem 0;
  }

  .nav-item.has-dropdown {
    border-radius: 16px;
    border: 1px solid rgba(148,163,184,0.7);
    padding: 0.15rem 0.75rem 0.25rem;
    background: rgba(248,250,252,0.96);
  }

  .nav-item.has-dropdown .dropdown-menu {
    position: static;
    margin-top: 0.4rem;
    box-shadow: none;
    border-radius: 14px;
    border: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-item.has-dropdown.is-open .dropdown-menu {
    max-height: 260px;
  }

  .video-banner-media {
    height: var(--video-height-mobile);
  }

  .hero-inner {
    grid-template-columns: minmax(0,1fr);
  }

  .hero-image {
    order: -1;
  }

  .hero {
    padding: 2.1rem 0 2.3rem;
  }

  .hero-highlights {
    grid-template-columns: minmax(0,1fr);
  }

  .service-grid {
    grid-template-columns: minmax(0,1fr);
  }

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

  .footer-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .floating-cta {
    bottom: 0.4rem;
  }
}

@media (max-width: 640px) {
  .video-banner-shell {
    border-radius: 18px;
  }
  .video-banner-overlay {
    padding: 0.8rem 0.8rem;
  }
  .video-banner-headline {
    font-size: 0.95rem;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-subtitle {
    font-size: 0.94rem;
  }
  .section {
    padding: 2.4rem 0;
  }
  .gallery-grid {
    grid-template-columns: minmax(0,1fr);
  }
}
