/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #222; line-height: 1.6; background: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === COLORS === */
:root {
  --navy: #0d1b2a;
  --navy-light: #1b2d45;
  --orange: #e8650a;
  --orange-hover: #cf5a09;
  --white: #ffffff;
  --gray-light: #f4f6f8;
  --gray: #6b7280;
  --gray-dark: #374151;
}

/* === UTILITY === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }
.section { padding: 60px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-gray { background: var(--gray-light); }
.section-title { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.section-subtitle { font-size: 1.1rem; color: var(--gray); margin-bottom: 40px; }
.section-dark .section-subtitle { color: #b0bec5; }

/* === HEADER === */
.site-header {
  background: var(--navy);
  color: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.header-top {
  background: var(--orange);
  padding: 6px 0;
  text-align: center;
  font-size: .9rem;
  font-weight: 600;
}
.header-top a { color: var(--white); text-decoration: underline; }
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.logo { font-size: 1.25rem; font-weight: 800; line-height: 1.2; }
.logo span { color: var(--orange); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: .95rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--orange); }
.nav-links .btn { padding: 10px 20px; font-size: .9rem; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-label { cursor: pointer; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-light);
  border-radius: 6px;
  min-width: 200px;
  padding: 8px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  z-index: 50;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 8px 18px; font-size: .9rem; }
.dropdown-menu a:hover { background: var(--orange); color: var(--white); }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 0 70px;
  text-align: center;
}
.hero h1 { font-size: 2.6rem; font-weight: 900; line-height: 1.15; margin-bottom: 18px; }
.hero h1 .highlight { color: var(--orange); }
.hero p { font-size: 1.15rem; max-width: 640px; margin: 0 auto 30px; color: #c5cdd6; }
.hero-badges { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 30px; }
.hero-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
}

/* === LEAD FORM === */
.lead-form-section { padding: 60px 0; }
.lead-form-wrap {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 36px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.lead-form-wrap h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; color: var(--navy); }
.lead-form-wrap .form-sub { color: var(--gray); margin-bottom: 24px; font-size: .95rem; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 4px; color: var(--gray-dark); }
.form-row input,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  background: #fafbfc;
  transition: border-color .2s;
}
.form-row input:focus,
.form-row select:focus { outline: none; border-color: var(--orange); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form-wrap .btn { width: 100%; padding: 16px; font-size: 1.1rem; margin-top: 8px; }
.form-note { text-align: center; font-size: .8rem; color: var(--gray); margin-top: 12px; }

/* === FEATURES / SERVICES GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border: 1px solid #e8ecf1;
}
.feature-icon { font-size: 2.2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.feature-card p { font-size: .93rem; color: var(--gray); }

/* === TRUST BAR === */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 30px 0;
}
.trust-item { text-align: center; }
.trust-number { font-size: 2rem; font-weight: 900; color: var(--orange); }
.trust-label { font-size: .85rem; color: var(--gray); font-weight: 600; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border: 1px solid #e8ecf1;
}
.testimonial-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 10px; }
.testimonial-card p { font-size: .93rem; color: var(--gray-dark); margin-bottom: 12px; font-style: italic; }
.testimonial-author { font-weight: 700; font-size: .88rem; color: var(--navy); }

/* === CTA BANNER === */
.cta-banner {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 50px 20px;
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.cta-banner p { font-size: 1.05rem; margin-bottom: 24px; opacity: .95; }
.cta-banner .btn { background: var(--navy); color: var(--white); }
.cta-banner .btn:hover { background: var(--navy-light); }

/* === LOCATION PAGE === */
.location-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.location-service {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  border: 1px solid #e8ecf1;
}
.location-service h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.location-service p { font-size: .93rem; color: var(--gray); }

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border: 1px solid #e8ecf1;
  transition: transform .2s;
}
.blog-card:hover { transform: translateY(-3px); }
.blog-card-img { background: var(--navy-light); height: 160px; }
.blog-card-body { padding: 22px; }
.blog-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.blog-card-body p { font-size: .88rem; color: var(--gray); margin-bottom: 14px; }
.blog-card-body .read-more { color: var(--orange); font-weight: 700; font-size: .9rem; }

/* Blog article */
.blog-article { max-width: 760px; margin: 0 auto; padding: 50px 20px; }
.blog-article h1 { font-size: 2.2rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.blog-meta { color: var(--gray); font-size: .9rem; margin-bottom: 32px; }
.blog-article h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.blog-article h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.blog-article p { margin-bottom: 16px; color: var(--gray-dark); }
.blog-article ul, .blog-article ol { margin: 0 0 16px 24px; color: var(--gray-dark); }
.blog-article li { margin-bottom: 6px; }
.blog-article ul { list-style: disc; }
.blog-article ol { list-style: decimal; }
.blog-article blockquote {
  border-left: 4px solid var(--orange);
  padding: 14px 20px;
  margin: 20px 0;
  background: var(--gray-light);
  color: var(--gray-dark);
  font-style: italic;
}
.blog-cta {
  background: var(--navy);
  color: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 40px;
}
.blog-cta h3 { font-size: 1.3rem; margin-bottom: 8px; }
.blog-cta p { color: #b0bec5; margin-bottom: 16px; }

/* === ABOUT PAGE === */
.about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 30px; }
.about-value { padding: 24px; border-left: 4px solid var(--orange); background: var(--gray-light); border-radius: 0 8px 8px 0; }
.about-value h3 { font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.about-value p { font-size: .93rem; color: var(--gray); }

.team-section { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-avatar {
  width: 100px;
  height: 100px;
  background: var(--navy-light);
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
}
.team-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.team-card p { font-size: .88rem; color: var(--gray); }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 36px;
}
.contact-info-card h2 { font-size: 1.5rem; margin-bottom: 20px; }
.contact-detail { margin-bottom: 20px; }
.contact-detail .label { font-size: .85rem; color: #8899aa; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.contact-detail .value { font-size: 1.05rem; font-weight: 600; }
.contact-detail a { color: var(--orange); }
.contact-hours { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.contact-hours h3 { font-size: 1rem; margin-bottom: 10px; }
.contact-hours p { font-size: .93rem; color: #b0bec5; }

/* === FOOTER === */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand p { color: #8899aa; font-size: .9rem; margin-top: 10px; line-height: 1.6; }
.footer-col h4 { font-size: .95rem; font-weight: 700; margin-bottom: 14px; color: var(--orange); }
.footer-col a { display: block; color: #8899aa; font-size: .9rem; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
  font-size: .82rem;
  color: #667788;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .features-grid, .testimonials-grid, .blog-grid, .team-section { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 20px; gap: 16px; box-shadow: 0 4px 12px rgba(0,0,0,.3); }
  .nav-links.active { display: flex; }
  .nav-toggle { display: block; }
  .dropdown-menu { position: static; box-shadow: none; padding-left: 12px; }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.active .dropdown-menu { display: block; }
  .features-grid, .testimonials-grid, .blog-grid, .team-section, .location-services, .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 40px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-badges { gap: 12px; }
  .hero-badge { font-size: .8rem; padding: 8px 12px; }
  .section { padding: 40px 0; }
  .section-title { font-size: 1.6rem; }
  .form-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 20px; }
  .lead-form-wrap { padding: 24px; }
}
