* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: #4a5568; line-height: 1.6; overflow-x: hidden; }

:root {
  --primary-teal: #00BCD4; --dark-navy: #0f1f3d; --light-gray: #f7f8fc;
  --white: #ffffff; --medium-gray: #4a5568; --light-border: #e2e8f0;
  --red-emergency: #c0392b; --green-success: #27ae60;
}

/* Emergency Banner */
.emergency-banner {
  background: var(--red-emergency); color: var(--white); padding: 14px 20px;
  text-align: center; font-weight: 600; font-size: 14px;
  animation: pulse-text 2s ease-in-out infinite;
}
.emergency-banner a { color: var(--white); text-decoration: none; font-weight: 700; }
.emergency-banner a:hover { text-decoration: underline; }
@keyframes pulse-text { 0%,100%{opacity:1} 50%{opacity:0.85} }

/* Nav */
nav {
  background: var(--white); padding: 16px 40px; display: flex;
  justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 56px; width: auto; }
.logo-text h2 {
  font-family: 'Montserrat', sans-serif; color: var(--dark-navy);
  font-size: 20px; font-weight: 800; margin: 0; line-height: 1;
}
.logo-text p {
  font-size: 10px; color: var(--primary-teal); font-weight: 600;
  margin: 2px 0 0 0; letter-spacing: 0.5px;
}
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-links a {
  color: var(--dark-navy); text-decoration: none; font-weight: 500;
  font-size: 14px; transition: all 0.3s ease; position: relative;
}
.nav-links a:hover { color: var(--primary-teal); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary-teal); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--primary-teal); color: var(--white); padding: 10px 20px;
  border-radius: 25px; text-decoration: none; font-weight: 600; font-size: 13px;
  transition: all 0.3s ease; border: 2px solid var(--primary-teal);
}
.nav-cta:hover { background: transparent; color: var(--primary-teal); transform: translateY(-2px); }
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 6px; }
.hamburger span { width: 24px; height: 3px; background: var(--dark-navy); border-radius: 2px; }
@media(max-width:768px) {
  .nav-links { display: none; position: absolute; top: 80px; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 20px; gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .logo-img { height: 44px; }
}

/* Hero */
.hero {
  min-height: 600px; background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    var(--accent-gradient);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; color: var(--white); position: relative; overflow: hidden;
  padding: 120px 40px 80px;
}
.hero-content { max-width: 900px; animation: fadeInUp 1s ease-out; }
.hero-badge {
  display: inline-block; border: 2px solid var(--primary-teal); color: var(--primary-teal);
  padding: 8px 20px; border-radius: 25px; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; margin-bottom: 24px; text-transform: uppercase;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif; font-size: 56px; font-weight: 900;
  margin-bottom: 20px; line-height: 1.2;
}
.hero-subtitle { font-size: 18px; margin-bottom: 40px; opacity: 0.95; max-width: 650px; margin-left: auto; margin-right: auto; font-weight: 300; }
.hero-badges-row { display: flex; gap: 16px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.hero-badge-item { background: rgba(255,255,255,0.95); color: var(--dark-navy); padding: 10px 20px; border-radius: 25px; font-weight: 600; font-size: 13px; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary-teal); color: var(--white); padding: 14px 32px;
  border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 16px;
  border: 2px solid var(--primary-teal); cursor: pointer; transition: all 0.3s ease; display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,188,212,0.3); }
.btn-secondary {
  background: transparent; color: var(--white); padding: 14px 32px;
  border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 16px;
  border: 2px solid var(--white); cursor: pointer; transition: all 0.3s ease; display: inline-block;
}
.btn-secondary:hover { background: var(--white); color: var(--primary-teal); transform: translateY(-2px); }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@media(max-width:768px) { .hero h1 { font-size: 36px; } .hero { min-height: 500px; padding: 100px 20px 60px; } }

/* Section Base */
.section { padding: 80px 40px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-label { display: inline-block; color: var(--primary-teal); font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 800; color: var(--dark-navy); margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--medium-gray); max-width: 600px; margin: 0 auto; }

/* Service Cards */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1100px; margin: 0 auto; }
.service-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: all 0.3s ease; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(0,0,0,0.15); border-top: 4px solid var(--primary-teal); }
.service-media {
  width: 100%; height: 180px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.service-media { background: var(--accent-gradient); }
.service-media svg { width: 64px; height: 64px; stroke: rgba(255,255,255,0.9); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; position: relative; z-index: 2; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25)); }
.service-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.service-card-title { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: var(--dark-navy); margin-bottom: 10px; }
.service-card-desc { font-size: 14px; color: var(--medium-gray); margin-bottom: 16px; flex-grow: 1; line-height: 1.6; }
@media(max-width:768px) { .cards-grid { grid-template-columns: 1fr; } }

/* Process */
.process { background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.process-step { text-align: center; }
.step-number { width: 56px; height: 56px; background: var(--primary-teal); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 700; margin: 0 auto 16px; }
.step-title { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: var(--dark-navy); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--medium-gray); line-height: 1.6; }
@media(max-width:768px) { .process-steps { grid-template-columns: 1fr; gap: 30px; } }

/* CTA */
.cta { background: var(--dark-navy); color: var(--white); text-align: center; }
.cta .section-title { color: var(--white); }
.cta .section-subtitle { color: rgba(255,255,255,0.8); }
.cta-phone { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 800; color: var(--primary-teal); margin: 24px 0 8px; }
.cta-phone a { color: var(--primary-teal); text-decoration: none; }
.cta-note { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }

/* Footer */
footer { background: var(--dark-navy); border-top: 1px solid rgba(255,255,255,0.1); padding: 40px 40px 30px; color: rgba(255,255,255,0.7); }
.footer-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 30px; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--white); margin-bottom: 14px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; transition: all 0.3s ease; }
.footer-col a:hover { color: var(--primary-teal); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; font-size: 12px; }
@media(max-width:768px) { .footer-content { grid-template-columns: repeat(2, 1fr); } .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }
