/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a2e;
  background: #fffaf7;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Colors ── */
:root {
  --burgundy: #8B1A4A;
  --burgundy-dark: #6e1439;
  --blush: #F4A0B5;
  --blush-light: #fce4ea;
  --blush-pale: #fff5f7;
  --cream: #fffaf7;
  --dark: #1a1a2e;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; line-height: 1.1; }
.text-burgundy { color: var(--burgundy); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.btn-primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(139,26,74,0.3); }
.btn-outline { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.btn-outline:hover { background: var(--burgundy); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--burgundy); border-color: #fff; }
.btn-white:hover { background: var(--blush-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Tags ── */
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--burgundy); background: var(--blush-light);
  padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; color: var(--dark); }
.section-desc { color: var(--gray); font-size: 1.05rem; max-width: 560px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,250,247,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,26,74,0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(139,26,74,0.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--burgundy); letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--dark); transition: color 0.2s; }
.nav-links a:hover { color: var(--burgundy); }
.nav-cta {
  background: var(--burgundy); color: #fff !important; padding: 10px 20px;
  border-radius: 50px; font-weight: 600; transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--burgundy-dark); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding: 120px 0 80px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-pale) 50%, var(--blush-light) 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; opacity: 0.12; }
.shape-1 { width: 600px; height: 600px; background: var(--burgundy); top: -200px; right: -150px; }
.shape-2 { width: 400px; height: 400px; background: var(--blush); bottom: -100px; left: -100px; }
.shape-3 { width: 200px; height: 200px; background: var(--burgundy); bottom: 20%; left: 30%; opacity: 0.06; }
.shape-4 { width: 120px; height: 120px; background: var(--blush); top: 30%; right: 20%; opacity: 0.2; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; background: var(--burgundy); color: #fff;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 24px;
}
.hero-title { font-size: clamp(2.8rem, 5.5vw, 4.5rem); margin-bottom: 24px; color: var(--dark); }
.hero-accent { color: var(--burgundy); }
.hero-desc { font-size: 1.15rem; color: var(--gray); margin-bottom: 36px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 24px; align-items: center; }
.stat-num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--burgundy); }
.stat-label { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 40px; background: var(--blush); }
.hero-visual { position: relative; }
.hero-img-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 25px 60px rgba(139,26,74,0.15); }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: #fff; padding: 14px 18px; border-radius: 12px;
  box-shadow: 0 10px 40px rgba(139,26,74,0.12); font-weight: 600; font-size: 0.85rem;
  animation: float 3s ease-in-out infinite;
}
.hero-float-card--reverse { animation-delay: 1.5s; }
.hero-float-card { bottom: 40px; left: -30px; }
.hero-float-card--reverse { top: 40px; right: -20px; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── SERVICES ── */
.services { padding: 100px 0; background: #fff; }
.services .section-header { text-align: center; margin-bottom: 60px; }
.services .section-desc { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--cream); border-radius: 16px; padding: 36px 28px;
  transition: all 0.3s ease; border: 1px solid transparent; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush));
  transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left;
}
.service-card:hover { border-color: var(--blush); transform: translateY(-4px); box-shadow: 0 15px 40px rgba(139,26,74,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--blush-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--dark); }
.service-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* ── WHY US ── */
.why-us { padding: 100px 0; background: var(--blush-pale); position: relative; overflow: hidden; }
.why-us::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: var(--blush); opacity: 0.15;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.why-visual { position: relative; }
.why-img-main { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(139,26,74,0.12); }
.why-img-accent {
  position: absolute; bottom: -30px; right: -30px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 15px 40px rgba(139,26,74,0.15); border: 4px solid #fff;
}
.why-geo { position: absolute; top: -20px; left: -20px; opacity: 0.4; }
.why-content .section-desc { margin-bottom: 36px; }
.why-list { display: flex; flex-direction: column; gap: 32px; }
.why-item { display: flex; gap: 20px; }
.why-item-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--blush);
  line-height: 1; min-width: 40px;
}
.why-item h4 { font-size: 1.3rem; margin-bottom: 6px; color: var(--dark); }
.why-item p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* ── ABOUT ── */
.about { padding: 100px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content .section-desc { margin-bottom: 20px; }
.about-content .section-desc:last-of-type { margin-bottom: 32px; }
.about-values { display: flex; flex-wrap: wrap; gap: 12px; }
.value-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blush-light); color: var(--burgundy); font-weight: 600;
  font-size: 0.85rem; padding: 10px 16px; border-radius: 50px;
}
.about-visual { position: relative; }
.about-img-stack { position: relative; height: 500px; }
.about-img-1 { position: absolute; top: 0; left: 0; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(139,26,74,0.12); }
.about-img-2 { position: absolute; bottom: 0; right: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 40px rgba(139,26,74,0.15); }
.about-img-1 img, .about-img-2 img { width: 100%; height: 100%; object-fit: cover; }
.about-geo-block { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.3; }

/* ── CTA BANNER ── */
.cta-banner { padding: 80px 0; background: var(--burgundy); position: relative; overflow: hidden; }
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; border-radius: 50%; }
.cta-shape-1 { width: 300px; height: 300px; background: var(--blush); opacity: 0.1; top: -100px; left: -50px; }
.cta-shape-2 { width: 200px; height: 200px; background: #fff; opacity: 0.05; bottom: -80px; right: 10%; }
.cta-shape-3 { width: 100px; height: 100px; background: var(--blush); opacity: 0.15; top: 20%; right: 5%; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-text { flex: 1; min-width: 280px; }
.cta-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 12px; }
.cta-desc { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact { padding: 100px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--blush-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--burgundy); margin-bottom: 4px; }
.contact-detail span, .contact-detail a { color: var(--gray); font-size: 0.95rem; }
.contact-detail a:hover { color: var(--burgundy); }
.contact-map { margin-top: 32px; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 30px rgba(139,26,74,0.1); }
.contact-form-wrap { position: relative; }
.form-geo { position: absolute; top: -20px; right: -20px; opacity: 0.3; }
.form-title { font-size: 1.8rem; margin-bottom: 8px; color: var(--dark); }
.contact-form { background: #fff; border-radius: 20px; padding: 36px; box-shadow: 0 15px 50px rgba(139,26,74,0.08); position: relative; z-index: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-light); border-radius: 10px;
  font-size: 0.95rem; font-family: 'Inter', sans-serif; transition: border-color 0.2s;
  background: var(--cream); color: var(--dark);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--burgundy); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center; padding: 40px 20px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success h4 { font-size: 1.5rem; color: var(--burgundy); margin-bottom: 8px; }
.form-success p { color: var(--gray); }

/* ── FOOTER ── */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: #fff; letter-spacing: 0.04em; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-links strong, .footer-contact strong, .footer-hours strong {
  display: block; color: #fff; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 16px;
}
.footer-links ul, .footer-contact ul, .footer-hours ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--blush); }
.footer-hours li { display: flex; justify-content: space-between; font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 0.85rem; }

/* ── Mobile Menu ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; background: rgba(255,250,247,0.98);
    backdrop-filter: blur(12px); flex-direction: column; padding: 24px;
    gap: 20px; transform: translateY(-120%); transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(139,26,74,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .hero-grid, .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-img-wrap { max-height: 400px; }
  .hero-float-card { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-img-accent { display: none; }
  .about-img-stack { height: 350px; }
  .about-img-2 { right: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
