
:root {
  --primary: #0A2540;
  --secondary: #FF6B35;
  --accent: #00D4AA;
  --bg: #F8F9FA;
  --text: #1A1A2E;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
header {
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
header a { color: white; text-decoration: none; font-weight: 600; }
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; }
.logo span { color: var(--secondary); }
.phone-cta { display: flex; align-items: center; gap: 1rem; }
.phone-cta a {
  background: var(--secondary);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.phone-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 2rem; opacity: 0.9; }
.hero .sub-locations {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.cta-button {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}
.container { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem; }
.section-title { color: var(--primary); font-size: 2rem; margin-bottom: 1rem; text-align: center; font-weight: 800; }
.section-subtitle { text-align: center; color: #666; margin-bottom: 3rem; font-size: 1.1rem; }

/* Trust Bar */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  margin: -3rem auto 3rem;
  max-width: 1000px;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--primary); }
.trust-item span { color: var(--secondary); font-size: 1.5rem; }

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.service-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  border-bottom: 4px solid var(--accent);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.service-card h3 { color: var(--primary); margin-bottom: 1rem; font-size: 1.2rem; }
.service-card p { color: #555; }

/* Regions Grid */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.region-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  text-align: center;
  transition: transform 0.2s;
}
.region-card:hover { transform: translateY(-3px); }
.region-card h4 { color: var(--primary); margin-bottom: 0.5rem; }
.region-card ul { list-style: none; padding: 0; }
.region-card ul li { margin-bottom: 0.3rem; }
.region-card ul li a { color: var(--secondary); text-decoration: none; font-weight: 600; }
.region-card ul li a:hover { text-decoration: underline; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 6px solid var(--secondary);
}
.testimonial-card p { font-style: italic; color: #555; margin-bottom: 1rem; }
.testimonial-card .author { font-weight: 700; color: var(--primary); }

/* FAQ */
.faq-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.faq-item h3 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.1rem; }

footer {
  background: var(--primary);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}
footer a { color: var(--accent); text-decoration: none; }
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  header { flex-direction: column; gap: 0.5rem; }
  .phone-cta a { padding: 0.5rem 1rem; font-size: 0.9rem; }
  .trust-bar { margin: -1rem 1rem 2rem; }
}
