/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: #3a2028;
  background: #FFFDF9;
  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; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,29,58,0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(107,29,58,0.1); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Lora', Georgia, serif;
  font-weight: 700; font-size: 1.15rem; color: #6B1D3A;
}
.nav-brand-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, #6B1D3A, #a0305a);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 16px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem; color: #5a3a44;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(107,29,58,0.08); color: #6B1D3A; }
.nav-cta {
  background: linear-gradient(135deg, #6B1D3A, #8a2850) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(107,29,58,0.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(107,29,58,0.4); }

/* Mobile toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: #6B1D3A;
  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 {
  min-height: 100vh; padding: 100px 0 0;
  background: linear-gradient(135deg, #FFFDF9 0%, #FFF8F0 50%, #fdf2f4 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,29,58,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: 80px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,173,186,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(107,29,58,0.08); color: #6B1D3A;
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 24px;
}
.hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.2; color: #2a1520;
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: #6B1D3A; }
.hero-desc {
  font-size: 1.1rem; color: #6b4a56; line-height: 1.8;
  margin-bottom: 32px; max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 600; color: #5a3a44;
}
.trust-item svg { color: #6B1D3A; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #6B1D3A, #8a2850);
  color: #fff;
  box-shadow: 0 6px 25px rgba(107,29,58,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(107,29,58,0.45); }
.btn-outline {
  background: #fff; color: #6B1D3A;
  border: 2px solid rgba(107,29,58,0.2);
}
.btn-outline:hover { border-color: #6B1D3A; background: rgba(107,29,58,0.04); }
.btn-white {
  background: #fff; color: #6B1D3A;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(0,0,0,0.2); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* Hero image */
.hero-image { position: relative; }
.hero-img-wrap {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(107,29,58,0.2);
  aspect-ratio: 6/7;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute; bottom: -20px; left: -20px;
  background: #fff; border-radius: 16px;
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 10px 40px rgba(107,29,58,0.15);
  font-size: 0.9rem;
}
.float-card-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, #6B1D3A, #8a2850);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.hero-float-card strong { display: block; color: #2a1520; }
.hero-float-card span { color: #8a6070; font-size: 0.85rem; }

/* Hero wave */
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  color: #FFFDF9;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── Section shared ── */
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; color: #6B1D3A;
  margin-bottom: 12px;
}
.section-tag.light { color: rgba(255,255,255,0.7); }
.section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; line-height: 1.25; color: #2a1520;
  margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-desc {
  font-size: 1.05rem; color: #7a5060; max-width: 600px; line-height: 1.8;
}
.section-desc.light { color: rgba(255,255,255,0.8); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light { margin-bottom: 60px; }

/* ── Services ── */
.services {
  padding: 100px 0;
  background: #FFFDF9;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(107,29,58,0.07);
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, #6B1D3A, #ff7a91);
  opacity: 0; transition: opacity 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(107,29,58,0.12);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(107,29,58,0.08), rgba(255,122,145,0.1));
  display: flex; align-items: center; justify-content: center;
  color: #6B1D3A; margin-bottom: 20px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, #6B1D3A, #8a2850);
  color: #fff;
}
.service-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.2rem; font-weight: 700; color: #2a1520;
  margin-bottom: 10px;
}
.service-card p { font-size: 0.95rem; color: #7a5060; line-height: 1.7; }

/* ── About ── */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #fdf2f4 0%, #FFF8F0 100%);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(107,29,58,0.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-small {
  position: absolute; bottom: -30px; right: -20px;
  width: 55%; border-radius: 20px; overflow: hidden;
  box-shadow: 0 15px 40px rgba(107,29,58,0.2);
  border: 5px solid #fff;
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }
.about-experience {
  position: absolute; top: -20px; right: 30px;
  background: linear-gradient(135deg, #6B1D3A, #8a2850);
  color: #fff; border-radius: 20px;
  padding: 20px 24px; text-align: center;
  box-shadow: 0 10px 30px rgba(107,29,58,0.4);
}
.about-experience .exp-number {
  display: block; font-family: 'Lora', Georgia, serif;
  font-size: 2.4rem; font-weight: 700; line-height: 1;
}
.about-experience .exp-label { font-size: 0.8rem; opacity: 0.8; margin-top: 4px; }
.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 20px; }
.about-text {
  font-size: 1rem; color: #6b4a56; line-height: 1.85;
  margin-bottom: 16px;
}
.about-features { margin-top: 28px; display: grid; gap: 14px; }
.about-feature {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; color: #3a2028; font-size: 0.95rem;
}
.feature-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #6B1D3A, #8a2850);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}

/* ── Why Us ── */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #6B1D3A 0%, #4a1428 100%);
  position: relative; overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; position: relative; z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 36px 28px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.why-num {
  font-family: 'Lora', Georgia, serif;
  font-size: 3rem; font-weight: 700; color: rgba(255,255,255,0.12);
  line-height: 1; margin-bottom: 16px;
}
.why-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.2rem; font-weight: 700; color: #fff;
  margin-bottom: 10px;
}
.why-card p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffeaec 0%, #fdf2f4 100%);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700; color: #2a1520; margin-bottom: 8px;
}
.cta-text { font-size: 1.05rem; color: #7a5060; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: #FFFDF9;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.contact-desc { font-size: 1rem; color: #7a5060; line-height: 1.8; margin-bottom: 32px; }
.contact-details { display: grid; gap: 20px; margin-bottom: 32px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
}
.detail-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(107,29,58,0.08), rgba(255,122,145,0.1));
  display: flex; align-items: center; justify-content: center;
  color: #6B1D3A; flex-shrink: 0;
}
.contact-detail strong {
  display: block; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 1px; color: #6B1D3A; margin-bottom: 4px;
}
.contact-detail p { font-size: 0.95rem; color: #5a3a44; line-height: 1.6; }
.contact-detail a { color: #6B1D3A; font-weight: 600; transition: color 0.2s; }
.contact-detail a:hover { color: #8a2850; }
.contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(107,29,58,0.1); }

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(107,29,58,0.1);
  border: 1px solid rgba(107,29,58,0.06);
}
.form-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem; font-weight: 700; color: #2a1520; margin-bottom: 8px;
}
.form-subtitle { font-size: 0.95rem; color: #7a5060; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 700;
  color: #5a3a44; margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid rgba(107,29,58,0.12);
  border-radius: 12px; font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; color: #3a2028;
  background: #FFFDF9;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #6B1D3A;
  box-shadow: 0 0 0 4px rgba(107,29,58,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #c4a0ac; }
.form-group textarea { resize: vertical; }

/* Success */
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #6B1D3A, #8a2850);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin: 0 auto 16px;
}
.form-success h4 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.3rem; color: #2a1520; margin-bottom: 8px;
}
.form-success p { font-size: 0.95rem; color: #7a5060; }

/* ── Footer ── */
.footer {
  background: #2a1520; color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; padding-bottom: 40px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Lora', Georgia, serif;
  font-weight: 700; font-size: 1.1rem; color: #fff;
  margin-bottom: 14px;
}
.footer-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #a0305a, #6B1D3A);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-bottom: 16px;
}
.footer-links ul { display: grid; gap: 10px; }
.footer-links a {
  font-size: 0.9rem; transition: color 0.2s;
}
.footer-links a:hover { color: #ffadba; }
.footer-contact p { font-size: 0.9rem; line-height: 1.8; }
.footer-contact a { color: #ffadba; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; text-align: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
}

/* ── Animations ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image { max-width: 500px; margin: 0 auto; }
  .hero-float-card { left: 10px; bottom: -10px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255,253,249,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column; padding: 20px 24px;
    border-bottom: 1px solid rgba(107,29,58,0.08);
    transform: translateY(-120%); opacity: 0;
    transition: all 0.3s ease; pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-toggle { display: flex; }
  .hero { padding-top: 90px; min-height: auto; padding-bottom: 80px; }
  .hero-title { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-img-small { width: 65%; right: -10px; bottom: -20px; }
}
