/* ─── SERVICES INTRO ─── */

.services-intro {
  background: #0b1a33;
  padding: 65px 0;
  text-align: center;
}

.services-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.services-intro p {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

/* ─── SERVICES GRID ─── */

.services-section {
  padding: 70px 0 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e0dedb;
  padding: 0;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e0dedb;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-body {
  padding: 30px 28px 35px 28px;
}

.service-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 14px;
}

.service-body p {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

.service-accent {
  display: block;
  width: 40px;
  height: 2px;
  background: #c6a667;
  margin-top: 20px;
}

/* ─── COMPANY HEADER BAND ─── */

.company-header-band {
  background: #0b1a33;
  padding: 55px 0;
  text-align: center;
}

.company-header-band h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c6a667;
  margin-bottom: 20px;
}

.company-contact-info p {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.company-contact-info a {
  color: #c6a667;
  text-decoration: none;
  transition: color 0.3s ease;
}

.company-contact-info a:hover {
  color: #fff;
}

/* ─── RENOVATION SECTION ─── */

.renovation-section {
  padding: 65px 0;
  text-align: center;
}

.renovation-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 20px;
}

.renovation-section p {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
  max-width: 750px;
  margin: 0 auto 14px auto;
}

/* ─── WHY CHOOSE / SERVICES OFFERED ─── */

.why-choose-section {
  background: #f7f5f2;
  padding: 65px 0;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.why-choose-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 20px;
}

.styled-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styled-list li {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.styled-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #c6a667;
  border-radius: 50%;
}

/* ─── OFFER LETTER ─── */

.offer-letter-section {
  padding: 70px 0;
}

.letter-card {
  background: #fff;
  border: 1px solid #e0dedb;
  padding: 50px 55px;
  max-width: 900px;
  margin: 0 auto;
}

.letter-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
}

.letter-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #333;
  margin: 30px 0 16px 0;
}

.letter-card p {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 14px;
}

.letter-salutation {
  font-style: italic;
  color: #444;
}

.letter-card a {
  color: #c6a667;
  text-decoration: none;
  transition: color 0.3s ease;
}

.letter-card a:hover {
  color: #333;
}

.letter-card .two-col-layout {
  margin: 10px 0;
}

.letter-sign-off {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0dedb;
}

.letter-sign-off p {
  margin-bottom: 4px;
}

/* ─── CTA BAND ─── */

.cta-band {
  background: #0b1a33;
  padding: 55px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
}

.cta-band p {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

.cta-button {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 38px;
  border: 1px solid #c6a667;
  color: #c6a667;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: #c6a667;
  color: #0b1a33;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .services-intro {
    padding: 45px 0;
  }
  .services-intro h2 {
    font-size: 1.6rem;
  }

  .services-section {
    padding: 50px 0 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
  }

  .service-image {
    height: 200px;
  }

  .company-header-band {
    padding: 40px 0;
  }
  .company-header-band h2 {
    font-size: 1.5rem;
  }

  .renovation-section {
    padding: 45px 0;
  }
  .renovation-section h2 {
    font-size: 1.4rem;
  }

  .why-choose-section {
    padding: 45px 0;
  }
  .two-col-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .why-choose-section h2 {
    font-size: 1.3rem;
  }

  .offer-letter-section {
    padding: 45px 0;
  }
  .letter-card {
    padding: 30px 24px;
  }
  .letter-card h2 {
    font-size: 1.3rem;
  }

  .cta-band {
    padding: 40px 0;
  }
  .cta-band h2 {
    font-size: 1.4rem;
  }
}
