/* ---------- Base Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.flex {
  display: flex;
  align-items: center;
}

.space-between {
  justify-content: space-between;
}

.btn-primary {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #1a1a1a;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #fff;
  color: #1a1a1a;
}

/* Accent color for highlights / lines / footer bg tone */
:root {
  --accent: #8a704b; /* elegant bronze/gold tone */
  --bg-muted: #f8f6f3;
  --border-card: #e5e2dc;
}

/* ---------- Header / Navbar ---------- */
header {
  border-bottom: 1px solid #eee;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 14px 0;
  position: relative;
}

.nav-left.flex img.logo {
  height: 65px;
  width: auto;
}

.nav-right ul {
  list-style: none;
  gap: 28px;
}

.nav-right ul li a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-right ul li a:hover,
.nav-right ul li a.active {
  color: var(--accent);
}

/* mobile menu button */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 14px;
  cursor: pointer;
}

/* ---------- Hero Banner ---------- */
.hero {
  background: radial-gradient(circle at 20% 20%, #ffffff 0%, #f5f4f1 60%, #ebe7e0 100%);
  border-bottom: 1px solid #ece7df;
  padding: 60px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  background: var(--accent);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
  color: #1a1a1a;
  margin: 16px 0 16px;
  font-family: "Georgia", "Times New Roman", serif;
}

.hero p.lead {
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-points div {
  font-size: 14px;
  color: #1a1a1a;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-points div span.icon {
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  min-width: 22px;
  height: 22px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  padding: 24px 24px 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  border: 1px solid #000;
  align-self: start;
}

.hero-card h2 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-card h2 .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-card .trust-item {
  font-size: 13px;
  line-height: 1.4;
  border-top: 1px solid #2f2f2f;
  padding-top: 14px;
  margin-top: 14px;
  color: #dcdcdc;
}
.hero-card .trust-item strong {
  color: #fff;
  font-weight: 600;
}

/* ---------- Services Section ---------- */
.section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-title h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-title p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 24px;
}

.service-card {
  border: 1px solid var(--border-card);
  background: #fff;
  border-radius: 10px;
  padding: 20px 20px 24px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
  transition: box-shadow .2s ease, transform .2s ease;
}

.service-card:hover {
  box-shadow: 0 18px 36px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.service-icon {
  background: var(--bg-muted);
  border: 1px solid var(--border-card);
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 10px;
  display: inline-block;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-family: "Georgia", "Times New Roman", serif;
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.criminal h2, .criminal p {
    color: #fff;
}

/* ---------- Testimonials ---------- */
.testimonials-wrap {
  background: var(--bg-muted);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  padding: 60px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
  padding: 20px 20px 24px;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.5;
  position: relative;
}

.testimonial-card .quote {
  font-size: 2rem;
  line-height: 0.8;
  color: var(--accent);
  font-family: Georgia, serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonial-meta {
  margin-top: 16px;
  font-size: 0.8rem;
  color: #666;
}
.testimonial-meta strong {
  display: block;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---------- Contact Page ---------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-card {
  border: 1px solid var(--border-card);
  border-radius: 10px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.contact-card h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.contact-card p {
  color: #444;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* form */
form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}

form input,
form textarea {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 10px 12px;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.15s;
  font-family: inherit;
}

form input:focus,
form textarea:focus {
  border-color: var(--accent);
}

form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-details p span.label {
  font-weight: 600;
  color: #1a1a1a;
}

/* ---------- Footer ---------- */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 50px 0 30px;
  margin-top: 60px;
  border-top: 4px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #fff;
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: -0.02em;
}

.footer-col p,
.footer-col a,
.footer-col li {
  color: #bdbdbd;
  font-size: 0.85rem;
  line-height: 1.5;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-logo {
  display: block;
  align-items: flex-start;
  gap: 12px;
}

.footer-logo img {
  height: 44px;
  width: 100%;
  filter: invert(1) brightness(1.4) contrast(1.1);
}

.footer-bottom {
  border-top: 1px solid #2e2e2e;
  padding-top: 20px;
  text-align: center;
  font-size: 0.75rem;
  color: #777;
}

.footer-logo div{
  display: block;
    width: 100%;
}

.map-section
{
  position: relative;
}
/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .nav-right ul {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: none;
  }

  .nav-right ul.show {
    display: flex;
  }

  .nav-right ul li {
    width: 100%;
  }

  .nav-right ul li a {
    display: block;
    padding: 10px 16px;
    font-size: 15px;
  }

  .menu-toggle {
    display: inline-block;
  }
}
