:root {
  --pink: #e88e9d;
  --pink-dark: #df7f91;
  --dark: #21232a;
  --gray-bg: #f7f7f8;
  --text: #2e2f34;
  --muted: #6f7480;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: #fff;
}

.nav-clean {
  background: #fff;
  border-bottom: 1px solid #f0f1f3;
  box-shadow: 0 2px 14px rgba(36, 38, 47, 0.04);
}

.brand-mark {
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--pink);
}

.nav-clean .nav-link {
  color: #2f3239;
  font-size: 0.9rem;
  margin: 0 0.35rem;
}

.nav-clean .nav-link.active,
.nav-clean .nav-link:hover {
  color: var(--pink-dark);
}

.btn-main {
  border-radius: 999px;
  border: 1px solid var(--pink);
  background: var(--pink);
  color: #fff;
  font-weight: 600;
}

.btn-main:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  color: #fff;
}

.hero-banner {
  position: relative;
  min-height: 88vh;
  padding-top: 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 6s ease;
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 40, 43, 0.45);
}

.hero-content {
  padding: 7.5rem 0;
  max-width: 760px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 1px;
}

.hero-content p {
  margin: 1rem auto 2rem;
  font-size: 1.1rem;
}

.section-space {
  padding: 5.5rem 0;
}

.soft-gray {
  background: var(--gray-bg);
}

.title-main {
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.6px;
}

.section-head {
  margin-bottom: 2.4rem;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(40, 42, 55, 0.12);
}

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(30, 31, 40, 0.1);
  height: 100%;
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-body {
  text-align: center;
  padding: 1.6rem 1.2rem;
}

.icon-round {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-radius: 999px;
  background: #f9d3da;
  color: var(--pink-dark);
  margin-bottom: 0.8rem;
}

.service-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.service-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial-band {
  background: var(--pink);
  padding: 4rem 0;
}

.quote-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.quote-icon {
  font-size: 2.2rem;
}

.quote-text {
  margin: 0.9rem auto 1rem;
  font-size: 1.1rem;
  font-style: italic;
}

.rating {
  letter-spacing: 4px;
  font-size: 0.9rem;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.dot.active {
  width: 22px;
  background: #fff;
}

.feature-item i {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f9d3da;
  color: var(--pink-dark);
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.feature-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

.feature-item p {
  font-size: 0.92rem;
  color: var(--muted);
}

.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(35, 35, 44, 0.1);
  height: 100%;
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.5rem 0 0.6rem;
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.meta {
  font-size: 0.8rem;
  color: var(--pink-dark);
  font-weight: 600;
}

.newsletter-band {
  background: var(--pink);
  color: #fff;
  padding: 4.5rem 0;
}

.newsletter-band h2 {
  font-weight: 800;
  letter-spacing: 0.6px;
}

.newsletter-form {
  margin: 1.3rem auto 0;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  width: 380px;
  max-width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1rem;
}

.newsletter-form button {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  background: #23252d;
  color: #fff;
  font-weight: 600;
}

.site-footer {
  background: #23252d;
  color: #e4e7ee;
  padding: 3.2rem 0 1.2rem;
}

.site-footer h5,
.site-footer h6 {
  color: #fff;
  margin-bottom: 0.8rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
  color: #d0d4de;
}

.footer-links a {
  color: #d0d4de;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.4rem;
  padding-top: 1rem;
  text-align: center;
  color: #c8cbd4;
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  .hero-banner {
    min-height: 70vh;
  }

  .section-space {
    padding: 4rem 0;
  }
}
