:root {
  --blue: #89CFF0;
  --blue-dark: #5BA3D9;
  --blue-deep: #3A7BC8;
  --black: #111111;
  --black-soft: #1A1A2E;
  --orange: #FF6B35;
  --orange-dark: #E85A25;
  --white: #FFFFFF;
  --light: #F4F8FC;
  --gray: #6B7280;
  --border: #E2E8F0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* ── NAV ── */
nav {
  background: var(--black-soft);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--orange);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  padding: 8px 0;
  text-decoration: none;
}
.nav-logo img { height: 70px; width: 70px; border-radius: 50%; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 0; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 20px 18px;
  letter-spacing: 0.3px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--white); border-bottom: 3px solid var(--orange); }
.nav-links a.cta-nav {
  background: var(--orange);
  color: var(--white);
  margin-left: 8px;
  border-radius: 0;
}
.nav-links a.cta-nav:hover { background: var(--orange-dark); }
.nav-emergency {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
  50% { box-shadow: 0 0 12px 4px rgba(255,107,53,0.3); }
}
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 6px 0; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--black-soft) 0%, #0f1629 60%, var(--black) 100%);
  color: var(--white);
  padding: 100px 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(137,207,240,0.08);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,107,53,0.06);
}
.hero-content { max-width: 700px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--blue); }
.hero h1 .accent { color: var(--orange); }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 550px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--blue); }
.btn-secondary:hover { background: var(--blue); color: var(--black); }
.btn-outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .num { font-size: 32px; font-weight: 800; color: var(--blue); }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--blue);
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}
.trust-icon {
  width: 28px;
  height: 28px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ── SECTIONS ── */
.section {
  padding: 80px 60px;
}
.section.alt { background: var(--light); }
.section-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 8px;
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--black-soft);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── PAGE HEADER (for inner pages) ── */
.page-header {
  background: linear-gradient(135deg, var(--black-soft) 0%, #0f1629 100%);
  color: var(--white);
  padding: 60px 60px 48px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(137,207,240,0.08);
}
.page-header h1 {
  font-size: 42px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.page-header h1 .highlight { color: var(--blue); }
.page-header h1 .accent { color: var(--orange); }
.page-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 550px;
  position: relative;
  z-index: 1;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(137,207,240,0.15);
  transform: translateY(-2px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-soft);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* ── EMERGENCY BANNER ── */
.emergency-banner {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.emergency-text h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.emergency-text p { font-size: 16px; opacity: 0.9; }
.btn-emergency {
  background: var(--white);
  color: var(--orange);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-emergency:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

/* ── PRICING ── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.2s;
}
.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(255,107,53,0.12);
  position: relative;
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-card h3 { font-size: 16px; font-weight: 700; color: var(--gray); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.price-amount { font-size: 48px; font-weight: 800; color: var(--black-soft); line-height: 1; margin-bottom: 4px; }
.price-desc { font-size: 14px; color: var(--gray); margin-bottom: 24px; }
.price-detail {
  font-size: 13px;
  color: var(--gray);
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.price-note {
  margin-top: 24px;
  background: var(--light);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--gray);
}

/* ── ABOUT ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: 16px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-text h2 { font-size: 32px; font-weight: 800; color: var(--black-soft); margin-bottom: 20px; }
.about-text p { color: var(--gray); margin-bottom: 16px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black-soft);
}
.about-check {
  width: 24px; height: 24px;
  background: rgba(137,207,240,0.2);
  color: var(--blue-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── SERVICE AREA ── */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.area-pill {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black-soft);
}
.area-pill.home {
  background: var(--blue);
  color: var(--black);
  border-color: var(--blue);
}

/* ── QUOTE FORM ── */
.form-container {
  max-width: 700px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--black-soft);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-submit {
  margin-top: 24px;
  text-align: center;
}
.form-submit .btn { width: 100%; padding: 18px; font-size: 16px; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}
.contact-icon {
  width: 56px; height: 56px;
  background: rgba(137,207,240,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}
.contact-card h3 { font-size: 16px; font-weight: 700; color: var(--black-soft); margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--gray); margin: 0; }
.contact-card a { color: var(--blue-deep); text-decoration: none; font-weight: 600; }

/* ── HOURS ── */
.hours-bar {
  background: var(--black-soft);
  border-radius: 12px;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.hours-bar h3 { color: var(--white); font-size: 18px; }
.hours-schedule { display: flex; gap: 32px; }
.hours-day { text-align: center; }
.hours-day .day { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.hours-day .time { font-size: 14px; color: var(--blue); font-weight: 700; }
.hours-note { color: rgba(255,255,255,0.6); font-size: 13px; }

/* ── PAYMENT ── */
.payment-methods {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}
.payment-badge {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--black-soft);
}

/* ── FOOTER ── */
footer {
  background: var(--black-soft);
  color: var(--white);
  padding: 48px 60px 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { max-width: 300px; }
.footer-brand h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.footer-brand h3 span { color: var(--orange); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-links h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.footer-links a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; margin-bottom: 8px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { padding: 60px 24px 48px; }
  .hero h1 { font-size: 36px; }
  .page-header { padding: 40px 24px 32px; }
  .page-header h1 { font-size: 32px; }
  .section { padding: 48px 24px; }
  .services-grid, .pricing-cards, .contact-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-image { height: 250px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .form-grid { grid-template-columns: 1fr; }
  .hours-schedule { flex-direction: column; gap: 12px; }
  .emergency-banner { text-align: center; justify-content: center; }
  .footer-top { flex-direction: column; }
}
