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

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0b2a5e;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.navbar-brand {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.navbar-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.navbar-links a {
  color: #cdd8f0;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #fff;
}

.navbar-cta {
  background: #25d366;
  color: #fff !important;
  padding: 7px 16px;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 13px !important;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0b2a5e 0%, #1a4a9e 100%);
  color: #fff;
  padding: 70px 20px 60px;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}

.hero .subtitle {
  font-size: 17px;
  color: #c8d8f8;
  margin-bottom: 8px;
}

.hero .advocate-name {
  font-size: 15px;
  color: #a0b8e8;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #0b5ed7;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.btn:hover {
  background: #0a4fc0;
}

.btn.whatsapp {
  background: #25d366;
}

.btn.whatsapp:hover {
  background: #1ebe5a;
}

.hero nav a {
  color: #a0b8e8;
  font-size: 14px;
  margin: 0 6px;
  transition: color 0.2s;
}

.hero nav a:hover {
  color: #fff;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.trust span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #e0eaff;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* ── SECTION HEADINGS ── */
h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0b2a5e;
  margin-bottom: 6px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0b5ed7;
  margin-bottom: 8px;
}

h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0b2a5e;
  margin-bottom: 6px;
}

p {
  margin: 8px 0;
  color: #444;
  font-size: 15px;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.service-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 20px rgba(11,42,94,0.1);
  transform: translateY(-2px);
}

.service-card .num {
  font-size: 28px;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1;
  margin-bottom: 10px;
}

/* ── WHY CHOOSE ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.why-item {
  background: #f0f5ff;
  border-left: 4px solid #0b5ed7;
  padding: 16px 18px;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  font-weight: 500;
  color: #0b2a5e;
}

/* ── FAQ ACCORDION ── */
.faq-list {
  margin-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-item summary {
  padding: 16px 0;
  font-weight: 600;
  font-size: 15px;
  color: #0b2a5e;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: #0b5ed7;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding-bottom: 16px;
  color: #555;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: #f0f5ff;
  padding: 50px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 30px;
}

.testimonials-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial-card .stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 14px;
  color: #555;
  font-style: italic;
  margin-bottom: 14px;
}

.testimonial-card .author {
  font-weight: 600;
  font-size: 14px;
  color: #0b2a5e;
}

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, #0b2a5e 0%, #1a4a9e 100%);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.cta h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 8px;
}

.cta p {
  color: #c8d8f8;
  margin-bottom: 24px;
}

/* ── CONTACT FORM ── */
#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 12px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: #0b5ed7;
}

#contact-form textarea {
  height: 120px;
  resize: vertical;
}

#contact-form input[name="_honey"] {
  display: none;
}

#form-status {
  margin-top: 10px;
  font-size: 14px;
}

/* ── MAP ── */
iframe {
  border: 0;
  width: 100%;
  border-radius: 8px;
}

/* ── FOOTER ── */
.footer {
  background: #0b2a5e;
  color: #e0eaff;
  text-align: center;
  padding: 36px 20px;
  font-size: 14px;
  line-height: 1.8;
}

.footer a {
  color: #7eb3ff;
  text-decoration: underline;
}

.footer p {
  color: #e0eaff;
}

.footer .disclaimer {
  font-size: 12px;
  color: #6a85b0;
  margin-top: 14px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FLOATING BUTTONS ── */
.float-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.float-whatsapp:hover {
  transform: scale(1.08);
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
}

.float-call {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #0b5ed7;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  z-index: 999;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: background 0.2s;
}

.float-call:hover {
  background: #0a4fc0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero h1 { font-size: 26px; }
  .navbar-links { display: none; }
  .stats-bar .inner { gap: 28px; }
  .stat-item .number { font-size: 26px; }
}
