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

:root {
  --blue: #1a5276;
  --blue-light: #2980b9;
  --orange: #e67e22;
  --orange-dark: #d35400;
  --gray-light: #f8f9fa;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-dark);
}

/* Top bar */
.top-bar {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 15px;
}
.top-bar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}
.top-bar a:hover { text-decoration: underline; }

/* Header */
header {
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
}
.logo span { color: var(--orange); }
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}
.header-phone:hover { color: var(--orange); }

/* Navigation */
nav {
  background: var(--gray-dark);
  padding: 0 20px;
}
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
nav ul li a {
  display: block;
  color: #ccc;
  text-decoration: none;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s, background 0.2s;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 12px 20px;
  font-size: 13px;
  color: var(--gray);
  max-width: 1000px;
  margin: 0 auto;
}
.breadcrumbs a {
  color: var(--blue-light);
  text-decoration: none;
}
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 6px; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, #1a6ea0 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero p {
  font-size: 19px;
  max-width: 650px;
  margin: 0 auto 30px;
  opacity: 0.92;
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-size: 15px;
}
.hero-badges span {
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 6px;
}
.cta-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-btn:hover { background: var(--orange-dark); }

/* Sections */
.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
section { padding: 50px 20px; }
section.alt-bg { background: var(--gray-light); }
h2 {
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 20px;
  text-align: center;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.service-card h3 {
  color: var(--blue);
  margin-bottom: 10px;
  font-size: 20px;
}
.service-card h3 a {
  color: var(--blue);
  text-decoration: none;
}
.service-card h3 a:hover { color: var(--orange); }
.service-card p {
  color: var(--gray);
  font-size: 15px;
}

/* Why us */
.why-list {
  list-style: none;
  max-width: 650px;
  margin: 20px auto 0;
}
.why-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 17px;
  padding-left: 30px;
  position: relative;
}
.why-list li::before {
  content: "\2713";
  color: var(--orange);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* Areas */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  list-style: none;
}
.areas-list li {
  background: var(--white);
  border: 1px solid #e0e0e0;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 15px;
}
.areas-list li a {
  color: var(--gray-dark);
  text-decoration: none;
}
.areas-list li a:hover { color: var(--orange); }

/* Content section */
.content-section { max-width: 750px; margin: 0 auto; }
.content-section p { margin-bottom: 16px; font-size: 16px; }
.content-section h3 {
  color: var(--blue);
  margin: 28px 0 12px;
  font-size: 22px;
}
.content-section ul {
  margin: 0 0 16px 20px;
  font-size: 16px;
}
.content-section ul li { margin-bottom: 8px; }

/* FAQ */
.faq-section { max-width: 750px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}
.faq-item h3 {
  color: var(--blue);
  font-size: 18px;
  margin-bottom: 10px;
  cursor: pointer;
}
.faq-item p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* Contact */
.contact-section { text-align: center; }
.contact-section p { font-size: 17px; margin-bottom: 8px; }
.contact-phone {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
  display: block;
  margin: 20px 0;
}
.contact-phone:hover { color: var(--orange); }

/* Form */
form {
  max-width: 500px;
  margin: 30px auto 0;
  text-align: left;
}
form label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 15px;
}
form input, form textarea, form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
}
form textarea { resize: vertical; min-height: 100px; }
form button {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
form button:hover { background: var(--orange-dark); }

/* Internal link blocks */
.internal-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.internal-links a {
  display: block;
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  text-decoration: none;
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.internal-links a:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Google Map embed */
.map-embed {
  margin: 30px auto 0;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
}
.map-embed iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* Reviews / Testimonials */
.reviews-section { max-width: 750px; margin: 0 auto; }
.review-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
}
.review-card .stars {
  color: #f5a623;
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.review-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 8px;
  font-style: italic;
}
.review-card .reviewer {
  font-weight: 700;
  font-style: normal;
  color: var(--gray-dark);
  font-size: 14px;
}

/* Also asked / related topics */
.also-asked {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
}
.also-asked h4 {
  color: var(--blue);
  font-size: 17px;
  margin-bottom: 8px;
}
.also-asked p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 0;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #1a6ea0 100%);
  color: var(--white);
  text-align: center;
  padding: 40px 20px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { font-size: 18px; margin-bottom: 24px; opacity: 0.92; }

/* Footer */
footer {
  background: var(--gray-dark);
  color: #adb5bd;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}
footer p { margin-bottom: 4px; }
footer a { color: #adb5bd; text-decoration: none; }
footer a:hover { color: var(--white); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  header { justify-content: center; text-align: center; }
  .header-right { flex-direction: column; gap: 8px; }
  nav ul { flex-direction: column; align-items: center; }
  nav ul li a { padding: 10px 16px; }
  .hero { padding: 40px 16px; }
  .cta-btn { font-size: 18px; padding: 14px 30px; }
  .contact-phone { font-size: 26px; }
  .internal-links { grid-template-columns: 1fr; }
}
