:root {
  --rose: #F43F5E;
  --coral: #FB923C;
  --blush: #FFF1F2;
  --ink: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --border: rgba(244, 63, 94, 0.12);
  --shadow: 0 18px 40px rgba(244, 63, 94, 0.10);
  --shadow-soft: 0 10px 24px rgba(17, 24, 39, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--blush);
  padding-top: 78px;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: "Nunito", sans-serif;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

.custom-navbar {
  background: rgba(255, 241, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244, 63, 94, 0.08);
  transition: all 0.3s ease;
}

.custom-navbar.scrolled {
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.brand-mark {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  color: var(--white);
  margin-right: 0.3rem;
  font-size: 0.9rem;
}

.nav-link {
  color: var(--ink);
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rose);
}

.btn-brand {
  background: linear-gradient(135deg, var(--rose), var(--coral));
  border: none;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-brand:hover {
  color: var(--white);
  transform: translateY(-2px);
  opacity: 0.96;
}

.btn-outline-brand {
  border: 1.5px solid var(--rose);
  color: var(--rose);
  background: transparent;
}

.btn-outline-brand:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(251, 146, 60, 0.28), transparent 32%),
    radial-gradient(circle at bottom right, rgba(244, 63, 94, 0.22), transparent 28%),
    linear-gradient(135deg, #fff7f8 0%, #fff1f2 52%, #fff8f1 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 260px;
  height: 260px;
  background: rgba(244, 63, 94, 0.12);
  top: 8%;
  right: 8%;
}

.hero-orb-2 {
  width: 180px;
  height: 180px;
  background: rgba(251, 146, 60, 0.14);
  bottom: 10%;
  left: 6%;
  animation-delay: 1.5s;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

.hero-card,
.image-wrap img {
  border: 1px solid rgba(244, 63, 94, 0.08);
  box-shadow: var(--shadow);
}

.eyebrow,
.section-tag {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.10);
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-space {
  padding: 64px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.55);
}

.section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 800;
  margin: 0.85rem 0 1rem;
}

.feature-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
  color: var(--ink);
  font-weight: 500;
}

.feature-list i {
  color: var(--rose);
}

.mini-card,
.info-card,
.service-card,
.form-card,
.contact-info-card,
.notice-box,
.cta-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.mini-card,
.info-card,
.service-card {
  padding: 1.4rem;
  height: 100%;
}

.mini-card i,
.info-card i,
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.12), rgba(251, 146, 60, 0.16));
  color: var(--rose);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.mini-card h3,
.info-card h3,
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.mini-card p,
.info-card p,
.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.page-hero {
  padding: 80px 0 42px;
  background:
    radial-gradient(circle at top center, rgba(251, 146, 60, 0.18), transparent 28%),
    linear-gradient(180deg, #fff7f8 0%, #fff1f2 100%);
}

.cta-panel,
.form-card,
.contact-info-card {
  padding: 1.6rem;
}

.notice-box {
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--rose);
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

.contact-line i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 63, 94, 0.10);
  color: var(--rose);
  font-size: 1.1rem;
}

.contact-line span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.12rem;
}

.contact-line a,
.contact-line p {
  color: var(--ink);
  font-weight: 600;
  margin: 0;
}

.form-control,
.form-select {
  min-height: 50px;
  border-radius: 0.95rem;
  border: 1px solid rgba(244, 63, 94, 0.14);
  padding: 0.85rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(244, 63, 94, 0.38);
  box-shadow: 0 0 0 0.22rem rgba(244, 63, 94, 0.12);
}

textarea.form-control {
  min-height: 140px;
}

.site-footer {
  padding: 18px 0;
  border-top: 1px solid rgba(244, 63, 94, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.footer-links a {
  color: var(--ink);
  font-size: 1.05rem;
}

.footer-links a:hover {
  color: var(--rose);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 1030;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(244, 63, 94, 0.28);
}

.sticky-cta:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 1029;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--rose);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.2s; }
.stagger-4 { transition-delay: 0.28s; }

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 78px 0 40px;
  }

  .section-space {
    padding: 52px 0;
  }

  .sticky-cta span {
    display: none;
  }
}

@media (max-width: 575.98px) {
  body {
    padding-top: 72px;
  }

  .section-space {
    padding: 44px 0;
  }

  .hero-card,
  .image-wrap img {
    border-radius: 1rem !important;
  }

  .mini-card,
  .info-card,
  .service-card,
  .form-card,
  .contact-info-card,
  .notice-box,
  .cta-panel {
    border-radius: 1rem;
  }
}
