/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:       #d4007a;
  --pink-light: #f5318a;
  --pink-pale:  #fdf0f6;
  --pink-grad:  linear-gradient(135deg, #d4007a 0%, #f5318a 100%);
  --text:       #2d2d2d;
  --muted:      #6b6b6b;
  --white:      #ffffff;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(212,0,122,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 10px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 48px;
}
.divider {
  width: 60px; height: 4px;
  background: var(--pink-grad);
  border-radius: 2px;
  margin: 12px 0 40px;
}

/* ── Navbar ───────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  backdrop-filter: blur(8px);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--pink-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }
.nav-cta {
  background: var(--pink-grad);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 700 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.88; color: #fff !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--pink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(212,0,122,0.45), rgba(245,49,138,0.35)),
              url('../images/gem-bg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  top: -100px; right: -150px;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -80px; left: -100px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-content { color: #fff; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-title span {
  font-style: italic;
  font-family: 'Georgia', serif;
}
.hero-tagline {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-cat {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--pink);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-big {
  width: 300px; height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(255,255,255,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.hero-photo {
  width: 100%;
  max-width: 400px;
  height: 480px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  border: 4px solid rgba(255,255,255,0.25);
}


/* ── Stats Bar ────────────────────────────────────────────────────────────── */
.stats-bar {
  background: #fff;
  box-shadow: 0 4px 32px rgba(212,0,122,0.08);
  padding: 32px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2rem;
  font-weight: 900;
  background: var(--pink-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item p { font-size: 0.85rem; color: var(--muted); font-weight: 500; margin-top: 4px; }

/* ── About ────────────────────────────────────────────────────────────────── */
.about { background: var(--pink-pale); }
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--pink-grad);
  color: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(212,0,122,0.3);
}
.about-badge strong { display: block; font-size: 1.8rem; font-weight: 900; }
.about-badge span { font-size: 0.75rem; opacity: 0.9; }
.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.pillar {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  border-top: 3px solid var(--pink);
  box-shadow: 0 2px 12px rgba(212,0,122,0.07);
}
.pillar .icon { font-size: 1.5rem; margin-bottom: 6px; }
.pillar p { font-size: 0.78rem; font-weight: 700; color: var(--text); }

/* ── Services ─────────────────────────────────────────────────────────────── */
.services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #f0e0ea;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--pink-grad);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212,0,122,0.12);
  border-color: var(--pink-light);
}
.service-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--pink-grad);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Services Image ───────────────────────────────────────────────────────── */
.services-banner {
  background: var(--pink-pale);
  padding: 60px 0;
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(212,0,122,0.08);
  border: 1.5px solid #f0e0ea;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212,0,122,0.14);
}
.cat-card.featured {
  background: var(--pink-grad);
  color: #fff;
  border-color: transparent;
}
.cat-card.featured h3,
.cat-card.featured p { color: #fff; }
.cat-icon { font-size: 2.8rem; margin-bottom: 16px; }
.cat-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.cat-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── Why Us ───────────────────────────────────────────────────────────────── */
.why-us {
  background: linear-gradient(135deg, rgba(212,0,122,0.48), rgba(245,49,138,0.38)),
              url('../images/gem-bg.png') center/cover no-repeat;
  padding: 80px 0;
  color: #fff;
}
.why-us .section-title { color: #fff; }
.why-us .divider { background: rgba(255,255,255,0.5); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; opacity: 0.88; line-height: 1.7; }

/* ── Contact ──────────────────────────────────────────────────────────────── */
.contact { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.contact-item-text a,
.contact-item-text p {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}
.contact-item-text a:hover { color: var(--pink); }

.whatsapp-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: opacity 0.2s;
  width: fit-content;
}
.btn-whatsapp:hover { opacity: 0.88; color: #fff; }

/* Contact Form */
.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8d0e0;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-pink {
  background: var(--pink-grad);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  width: 100%;
}
.btn-pink:hover { opacity: 0.9; transform: translateY(-1px); }
.form-success {
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 12px;
  display: none;
}
.form-error {
  background: #fce4ec;
  color: #c62828;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 12px;
  display: none;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: #1a0010;
  color: rgba(255,255,255,0.8);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}
.footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.7;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col ul li a:hover { opacity: 1; color: var(--pink-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Floating WhatsApp ────────────────────────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  background: #25D366;
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.1); color: #fff; }

/* ── Mobile ───────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-cats { justify-content: center; }
  .hero-logo-big { width: 200px; height: 200px; }
  .hero-image-wrap { order: -1; }

  .about .container { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -10px; }
  .about-pillars { grid-template-columns: 1fr 1fr 1fr; }

  .cats-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-bar .container { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open li { border-bottom: 1px solid #f5f5f5; }
  .nav-links.open a { display: block; padding: 12px 0; font-size: 1rem; }
  .hamburger { display: flex; }
  .section-title { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
}
