@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  --primary: #0a0f1e;
  --secondary: #111827;
  --accent: #00b4d8;
  --accent2: #0077b6;
  --spark: #00e5ff;
  --steel: #1e2d40;
  --white: #ffffff;
  --light: #f0f4f8;
  --muted: #94a3b8;
  --danger: #ef4444;
  --success: #22c55e;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1200px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --glow: 0 0 20px rgba(0, 180, 216, 0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--primary);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ============================================================
   PASSWORD GATE
   ============================================================ */
#password-gate {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
#password-gate .gate-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#password-gate .gate-box {
  background: var(--steel);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 40px rgba(0,180,216,0.1);
}
#password-gate h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}
#password-gate p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
#password-gate input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0,180,216,0.3);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  outline: none;
  transition: border 0.2s;
}
#password-gate input:focus { border-color: var(--accent); }
#password-gate .gate-btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.1s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#password-gate .gate-btn:hover { background: var(--spark); transform: translateY(-1px); }
#password-gate .gate-error {
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}
#password-gate .gate-note {
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 1rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,180,216,0.15);
  transition: all 0.3s;
}
.nav.scrolled {
  background: rgba(10,15,30,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo .logo-sub {
  font-size: 0.65rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(0,180,216,0.1);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}
.nav-phone:hover { color: var(--spark); }
.nav-btn {
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.1s;
}
.nav-btn:hover { background: var(--spark); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(10,15,30,0.98);
  border-top: 1px solid rgba(0,180,216,0.15);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover { color: var(--white); background: rgba(0,180,216,0.1); }
.mobile-nav .mobile-cta {
  margin-top: 0.75rem;
  padding: 0.85rem;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1b2a 50%, #0a0f1e 100%);
  padding-top: 72px;
}
#spark-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .line2 { display: block; }
.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,180,216,0.3);
}
.btn-primary:hover {
  background: var(--spark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,229,255,0.4);
}
.btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--danger);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  animation: emergency-pulse 3s infinite;
}
@keyframes emergency-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(239,68,68,0); }
}
.btn-emergency:hover { background: #dc2626; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
/* Hero visual side */
.hero-visual {
  position: relative;
}
.hero-card {
  background: var(--steel);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow), var(--glow);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.availability-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
}
.availability-banner .pulse {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pill {
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent);
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}
.stars { color: #fbbf24; font-size: 1.1rem; }
.rating-text { font-size: 0.85rem; color: var(--muted); }
.rating-text strong { color: var(--white); }

/* ============================================================
   SECTIONS — shared styles
   ============================================================ */
section { padding: 5rem 1.5rem; }
.container { max-width: var(--max-width); margin: 0 auto; }
.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-title .accent { color: var(--accent); }
.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}
.section-header { margin-bottom: 3rem; }
.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--secondary); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--steel);
  border: 1px solid rgba(0,180,216,0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover {
  border-color: rgba(0,180,216,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,180,216,0.1);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,180,216,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0,180,216,0.2);
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(0,180,216,0.2);
  box-shadow: 0 0 20px rgba(0,180,216,0.3);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.service-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s, color 0.2s;
}
.service-card:hover .service-link { gap: 0.6rem; color: var(--spark); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--primary); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--steel);
  border-radius: 10px;
  border: 1px solid rgba(0,180,216,0.08);
  transition: border-color 0.2s;
}
.why-item:hover { border-color: rgba(0,180,216,0.25); }
.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,180,216,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.why-item p { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.why-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.area-tag {
  background: rgba(0,180,216,0.08);
  border: 1px solid rgba(0,180,216,0.15);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-family: var(--font-heading);
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--secondary); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--primary);
  border: 1px solid rgba(0,180,216,0.1);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover { border-color: rgba(0,180,216,0.25); transform: translateY(-2px); }
.review-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.review-location { font-size: 0.75rem; color: var(--muted); }
.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  padding: 1rem 2rem;
  background: var(--primary);
  border: 1px solid rgba(0,180,216,0.15);
  border-radius: 12px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.google-badge .g-logo { font-size: 1.5rem; }
.google-badge .g-text { font-size: 0.9rem; color: var(--muted); }
.google-badge .g-rating { font-family: var(--font-heading); font-weight: 700; color: var(--white); font-size: 1rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--accent2) 0%, var(--accent) 100%);
  padding: 4rem 1.5rem;
}
.cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.cta-text p { color: rgba(10,15,30,0.7); font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.btn-cta-dark:hover { background: var(--secondary); transform: translateY(-2px); }
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  border: 2px solid rgba(10,15,30,0.2);
}
.btn-cta-white:hover { background: rgba(255,255,255,0.35); transform: translateY(-2px); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 8rem 1.5rem 4rem;
  border-bottom: 1px solid rgba(0,180,216,0.1);
}
.page-hero .container { max-width: var(--max-width); margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { opacity: 0.4; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p { color: var(--muted); font-size: 1.05rem; max-width: 580px; line-height: 1.7; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-visual-block {
  background: var(--steel);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(0,180,216,0.15);
  position: relative;
  overflow: hidden;
}
.about-visual-block::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(0,180,216,0.1) 0%, transparent 70%);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-stat {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}
.about-stat .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}
.about-stat .label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--steel);
  border: 1px solid rgba(0,180,216,0.1);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s;
}
.value-card:hover { border-color: rgba(0,180,216,0.3); transform: translateY(-3px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.value-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }
.accreditations-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.accred-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--steel);
  border: 1px solid rgba(0,180,216,0.15);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
}
.accred-badge .check { color: var(--success); font-size: 1rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  padding: 4rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-detail:nth-child(even) { background: var(--secondary); }
.service-detail-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail:nth-child(even) .service-detail-inner { direction: rtl; }
.service-detail:nth-child(even) .service-detail-inner > * { direction: ltr; }
.service-detail-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.service-detail-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-features { list-style: none; margin-bottom: 2rem; }
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.service-features li::before {
  content: '⚡';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.service-visual {
  background: var(--steel);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(0,180,216,0.15);
  text-align: center;
}
.service-visual .big-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 20px rgba(0,180,216,0.4));
}
.service-visual h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.service-visual p { color: var(--muted); font-size: 0.85rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--steel);
  border-radius: 10px;
  border: 1px solid rgba(0,180,216,0.1);
}
.contact-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(0,180,216,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.contact-item-value { color: var(--white); font-size: 0.95rem; font-weight: 500; }
.contact-form {
  background: var(--steel);
  border: 1px solid rgba(0,180,216,0.15);
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--steel); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  margin-top: 0.5rem;
}
.submit-btn:hover { background: var(--spark); transform: translateY(-1px); }
.map-placeholder {
  background: var(--steel);
  border: 1px solid rgba(0,180,216,0.1);
  border-radius: 12px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.map-placeholder .map-icon { font-size: 2rem; }

/* ============================================================
   SERVICE AREAS SECTION
   ============================================================ */
.areas-section { background: var(--secondary); }
.areas-intro { max-width: 600px; margin-bottom: 2.5rem; }
.areas-intro p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050810;
  border-top: 1px solid rgba(0,180,216,0.1);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 1rem 0;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
  color: var(--muted);
}
.social-btn:hover { background: rgba(0,180,216,0.1); border-color: rgba(0,180,216,0.3); color: var(--accent); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: var(--muted); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--muted); font-size: 0.8rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================================
   FLOATING PHONE BUTTON
   ============================================================ */
.floating-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.floating-call-btn {
  width: 60px;
  height: 60px;
  background: var(--danger);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(239,68,68,0.4);
  animation: emergency-pulse 2.5s infinite;
  transition: transform 0.2s;
  color: var(--white);
  text-decoration: none;
}
.floating-call-btn:hover { transform: scale(1.1); }
.floating-call-label {
  background: var(--steel);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border: 1px solid rgba(0,180,216,0.2);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.2s;
  pointer-events: none;
}
.floating-call:hover .floating-call-label { opacity: 1; transform: translateX(0); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-inner { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 1.5rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 3.5rem 1.25rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-emergency, .btn-outline { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
}
