/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Madefor Display', 'Wix Madefor Display', 'Helvetica Neue', Arial, sans-serif;
  color: #3D3D3D;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ===== Navigation ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  color: #3D3D3D;
  font-weight: 400;
  transition: color 0.2s;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #000;
  font-weight: 500;
}

.nav-login {
  position: absolute;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #3D3D3D;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-login:hover {
  color: #000;
}

.nav-login-icon {
  width: 28px;
  height: 28px;
  background: #C1272D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-login-icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #3D3D3D;
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== Main Content ===== */
main {
  flex: 1;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Logo Section ===== */
.logo-section {
  text-align: center;
  padding: 40px 0 20px;
}

.logo-section img {
  max-width: 380px;
  width: 100%;
}

/* ===== Home Page ===== */
.tagline {
  text-align: center;
  font-size: 20px;
  color: #505A64;
  margin: 20px 0 16px;
  font-weight: 400;
}

.description {
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  color: #3D3D3D;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* ===== Services Page ===== */
.services-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #3D3D3D;
  margin: 30px 0 24px;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.services-list {
  text-align: center;
  list-style: none;
  margin: 0 0 30px;
}

.services-list li {
  font-size: 15px;
  padding: 6px 0;
  color: #3D3D3D;
}

.services-note {
  text-align: center;
  font-size: 15px;
  color: #3D3D3D;
  line-height: 1.8;
  margin-bottom: 24px;
}

.btn-request {
  display: block;
  margin: 0 auto 40px;
  padding: 10px 28px;
  background: #3D3D3D;
  color: #fff;
  border: 1px solid #3D3D3D;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
  width: fit-content;
}

.btn-request:hover {
  background: #fff;
  color: #3D3D3D;
}

/* ===== Service Area Page ===== */
.map-container {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 40px;
  aspect-ratio: 16 / 10;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}

/* ===== FAQ Page ===== */
.faq-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #3D3D3D;
  margin: 30px 0 32px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  margin-bottom: 40px;
}

.faq-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 2px solid #C1272D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.faq-icon span {
  color: #C1272D;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.faq-content {
  flex: 1;
}

.faq-question {
  font-size: 15px;
  font-weight: 600;
  color: #C1272D;
  margin-bottom: 8px;
  cursor: pointer;
}

.faq-question:hover {
  text-decoration: underline;
}

.faq-answer {
  font-size: 14px;
  color: #3D3D3D;
  line-height: 1.7;
}

.faq-answer a {
  color: #C1272D;
  text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 24px;
  font-size: 13px;
  color: #3D3D3D;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav {
    justify-content: space-between;
    padding: 12px 16px;
  }

  .nav-toggle {
    display: block;
    z-index: 11;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 10;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 20px;
  }

  .nav-login {
    position: static;
    margin-left: auto;
    margin-right: 48px;
  }

  main {
    padding: 0 16px;
  }

  .logo-section img {
    max-width: 280px;
  }

  .services-heading {
    font-size: 28px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-heading {
    font-size: 24px;
  }

  .map-container {
    aspect-ratio: 4 / 3;
  }
}
