/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Quicksand', sans-serif;
  color: #3D1C24;
  background: #FFF8F8;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== FONTS ===== */
h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; line-height: 1.25; color: #5C1A2B; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem;
  border-radius: 50px; border: 2px solid transparent;
  padding: 12px 28px; cursor: pointer; transition: all 0.3s ease;
  text-align: center; white-space: nowrap;
}
.btn-primary {
  background: #7B2D3B; color: #fff; border-color: #7B2D3B;
}
.btn-primary:hover { background: #5E1F2C; border-color: #5E1F2C; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,45,59,0.35); }
.btn-outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff; color: #7B2D3B; border-color: #fff;
}
.btn-white:hover { background: #FFF0F2; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-nav {
  background: #fff; color: #7B2D3B; border-color: #fff; padding: 10px 22px; font-size: 0.9rem;
}
.btn-nav:hover { background: #FFF0F2; transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-block; font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #7B2D3B; background: rgba(123,45,59,0.08);
  border-radius: 50px; padding: 6px 16px; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900;
  margin-bottom: 16px; color: #5C1A2B;
}
.section-subtitle {
  font-size: 1.1rem; color: #7B3A4A; max-width: 600px; line-height: 1.8;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,248,248,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,45,59,0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(123,45,59,0.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.15rem; color: #5C1A2B;
}
.nav-logo-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: #7B2D3B;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a:not(.btn) {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem;
  color: #5C1A2B; transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: #7B2D3B; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; background: #5C1A2B;
  border-radius: 2px; transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #7B2D3B 0%, #A84458 30%, #C96B7A 60%, #E8A0AA 100%);
  padding: 120px 0 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-gradient { position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,200,210,0.2) 0%, transparent 50%);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-content { color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px; padding: 8px 18px; font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.85rem; color: #fff; margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
  color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,0.88); line-height: 1.8;
  margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}
.trust-item svg { opacity: 0.85; }
.hero-visual { position: relative; }
.hero-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-card-1 { width: 340px; margin-left: auto; }
.hero-card-2 {
  position: absolute; bottom: -30px; left: -20px;
  width: 240px; border: 4px solid rgba(255,255,255,0.3);
}
.hero-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff; padding: 40px 16px 14px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; gap: 8px;
}
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  color: #FFF8F8;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== SERVICES ===== */
.services {
  padding: 100px 0; background: #FFF8F8;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(123,45,59,0.06);
  border: 1px solid rgba(123,45,59,0.06);
  transition: all 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(123,45,59,0.12);
  border-color: rgba(123,45,59,0.15);
}
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, #7B2D3B, #A84458);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; color: #5C1A2B;
}
.service-card p { font-size: 0.95rem; color: #7B3A4A; line-height: 1.7; }

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0; background: linear-gradient(180deg, #FFF0F2 0%, #FFF8F8 100%);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-visual { position: relative; }
.why-visual img {
  border-radius: 24px; width: 100%; height: 560px; object-fit: cover;
  box-shadow: 0 20px 60px rgba(123,45,59,0.15);
}
.why-stat-card {
  position: absolute; bottom: -20px; right: -20px;
  background: #fff; border-radius: 20px; padding: 24px 32px;
  box-shadow: 0 12px 40px rgba(123,45,59,0.15);
  text-align: center;
}
.why-stat-number {
  display: block; font-family: 'Nunito', sans-serif; font-size: 2.4rem;
  font-weight: 900; color: #7B2D3B; line-height: 1;
}
.why-stat-label {
  display: block; font-size: 0.85rem; color: #7B3A4A; font-weight: 600; margin-top: 4px;
}
.why-content .section-tag { margin-bottom: 12px; }
.why-content .section-title { margin-bottom: 16px; }
.why-content .section-subtitle { margin-bottom: 36px; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-check {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 10px;
  background: linear-gradient(135deg, #7B2D3B, #A84458);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-top: 2px;
}
.why-item strong {
  display: block; font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 1.05rem; color: #5C1A2B; margin-bottom: 4px;
}
.why-item span { font-size: 0.95rem; color: #7B3A4A; line-height: 1.6; }

/* ===== PROCESS ===== */
.process {
  padding: 100px 0; background: #FFF8F8;
}
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  position: relative;
}
.process-step {
  text-align: center; padding: 40px 28px;
  background: #fff; border-radius: 24px;
  box-shadow: 0 4px 20px rgba(123,45,59,0.06);
  border: 1px solid rgba(123,45,59,0.06);
  transition: all 0.3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(123,45,59,0.1);
}
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #7B2D3B, #A84458);
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.2rem;
  color: #fff; margin-bottom: 20px;
}
.step-icon {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 16px;
  background: rgba(123,45,59,0.07);
  display: flex; align-items: center; justify-content: center;
  color: #7B2D3B;
}
.process-step h3 {
  font-size: 1.15rem; font-weight: 800; color: #5C1A2B; margin-bottom: 10px;
}
.process-step p { font-size: 0.95rem; color: #7B3A4A; line-height: 1.7; }
.step-connector { display: flex; justify-content: center; color: #C96B7A; margin-top: 20px; }

/* ===== SERVICE AREA ===== */
.service-area {
  padding: 100px 0; background: linear-gradient(180deg, #FFF8F8 0%, #FFF0F2 100%);
}
.area-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.area-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.area-feature {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem;
  color: #5C1A2B;
}
.area-feature svg { color: #7B2D3B; flex-shrink: 0; }
.area-map { border-radius: 24px; overflow: hidden; box-shadow: 0 16px 48px rgba(123,45,59,0.12); }
.area-map img { width: 100%; height: 380px; object-fit: cover; }

/* ===== CTA ===== */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #7B2D3B 0%, #A84458 50%, #C96B7A 100%);
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-inner {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; color: #fff; margin-bottom: 12px;
}
.cta-text p { font-size: 1.1rem; color: rgba(255,255,255,0.85); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-cta-phone {
  background: #fff; color: #7B2D3B; border-color: #fff;
}
.btn-cta-phone:hover { background: #FFF0F2; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: #FFF8F8; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, #7B2D3B, #A84458);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.contact-detail strong {
  display: block; font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 0.95rem; color: #5C1A2B; margin-bottom: 4px;
}
.contact-detail span, .contact-detail a {
  font-size: 0.95rem; color: #7B3A4A; line-height: 1.6;
}
.contact-detail a:hover { color: #7B2D3B; text-decoration: underline; }

/* ===== FORM ===== */
.contact-form-wrap {
  background: #fff; border-radius: 24px; padding: 40px;
  box-shadow: 0 8px 40px rgba(123,45,59,0.08);
  border: 1px solid rgba(123,45,59,0.06);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.9rem;
  color: #5C1A2B;
}
.form-group input, .form-group select, .form-group textarea {
  font-family: 'Quicksand', sans-serif; font-size: 0.95rem;
  border: 2px solid rgba(123,45,59,0.15); border-radius: 12px;
  padding: 12px 16px; color: #3D1C24; background: #FFF8F8;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #7B2D3B; box-shadow: 0 0 0 4px rgba(123,45,59,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; align-items: center; gap: 10px;
  background: rgba(123,45,59,0.07); border-radius: 12px;
  padding: 16px 20px; font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.95rem; color: #7B2D3B;
}
.form-success.show { display: flex; }
.form-success svg { flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
  background: #3D1C24; color: rgba(255,255,255,0.7); padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px;
}
.footer-brand p { font-size: 0.95rem; line-height: 1.7; margin-top: 16px; max-width: 320px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.1rem; color: #fff;
}
.footer-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.15);
}
.footer h4 {
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
  color: #fff; margin-bottom: 20px;
}
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul a {
  font-size: 0.9rem; transition: color 0.2s;
}
.footer ul a:hover { color: #E8A0AA; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0; text-align: center; font-size: 0.85rem;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255,248,248,0.98); backdrop-filter: blur(12px);
    flex-direction: column; padding: 32px 24px; gap: 24px;
    border-bottom: 1px solid rgba(123,45,59,0.1);
    transform: translateY(-120%); opacity: 0;
    transition: all 0.35s ease; pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .area-content, .contact-grid { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
  .why-visual img { height: 400px; }
  .process-steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .step-connector { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .area-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 60px; }
  .contact-form-wrap { padding: 24px; }
}
