/* =====================
   RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #fdfaf6;
  color: #2b1e1e;
  line-height: 1.6;
}

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

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

/* =====================
   HEADER
===================== */
.header {
  background-color: #fdfaf6;
  border-bottom: 1px solid #e6ddd3;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  color: #7a1f1f;
}

.logo span {
  font-size: 13px;
  color: #6b4a4a;
}

.call-btn {
  background-color: #7a1f1f;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600;
}

/* =====================
   HERO
===================== */
.hero {
  padding: 80px 0;
  background-color: #fdfaf6;
}

.hero-content {
  max-width: 700px;
}

.hero h2 {
  font-family: Georgia, serif;
  font-size: 40px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #4a3434;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 15px;
}

.primary-btn {
  background-color: #7a1f1f;
  color: #fff;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.primary-btn:hover {
  background-color: #5e1515;
}

.secondary-btn {
  border: 1px solid #7a1f1f;
  color: #7a1f1f;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 600;
}

/* =====================
   SECTIONS
===================== */
.section-title {
  font-family: Georgia, serif;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

/* =====================
   SERVICES
===================== */
.services {
  padding: 70px 0;
  background-color: #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  border: 1px solid #e6ddd3;
  padding: 25px;
  border-radius: 6px;
  background-color: #fdfaf6;
}

.service-card h4 {
  font-family: Georgia, serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #4a3434;
}

.service-card a {
  color: #7a1f1f;
  font-weight: 600;
}

/* =====================
   HOW IT WORKS
===================== */
.how-it-works {
  padding: 70px 0;
}

.steps {
  display: flex;
  gap: 30px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.step span {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #7a1f1f;
  color: #fff;
  border-radius: 50%;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}

.step h4 {
  font-family: Georgia, serif;
  margin-bottom: 10px;
}

/* =====================
   WHY US
===================== */
.why-us {
  background-color: #ffffff;
  padding: 70px 0;
}

.why-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.why-list li {
  font-size: 16px;
  margin-bottom: 12px;
}

/* =====================
   CALLBACK FORM
===================== */
.callback {
  padding: 70px 0;
}

.callback-subtext {
  text-align: center;
  margin-bottom: 30px;
  color: #4a3434;
}

.callback-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.callback-form input,
.callback-form select {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #e6ddd3;
  font-size: 15px;
}

/* =====================
   FOOTER
===================== */
.footer {
  border-top: 1px solid #e6ddd3;
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  color: #6b4a4a;
}


/* =====================
   MOBILE RESPONSIVE
===================== */@media (max-width: 768px) {

  .header-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo h1 {
    font-size: 22px;
  }

  .logo span {
    font-size: 12px;
  }

  .call-btn {
    padding: 8px 14px;
    font-size: 14px;
    white-space: nowrap;
  }

}


/* =====================
   TABLET RESPONSIVE
===================== */
@media (min-width: 769px) and (max-width: 1024px) {

  .hero h2 {
    font-size: 34px;
  }

  .hero-content {
    max-width: 90%;
  }

  .steps {
    gap: 20px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
