/* ===========================
   MAMA ON CALL — SHARED STYLES
   Brand: Navy #171E31 | Gold #D4AF37
   Font: Playfair Display + Inter
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #171E31;
  --navy-light: #1f2847;
  --navy-dark: #0d1220;
  --gold: #D4AF37;
  --gold-light: #e8c84a;
  --gold-dark: #b8942a;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --grey: #94a3b8;
  --light-grey: #e2e8f0;
  --text-dark: #1e293b;
  --rose: #FADADD;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 20px 60px rgba(0,0,0,0.3);
  --shadow-gold: 0 0 40px rgba(212,175,55,0.15);
  --radius: 16px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--gold); color: var(--navy); }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.8; }

/* ── GOLD ACCENT TEXT ── */
.gold { color: var(--gold); }
.text-white { color: var(--white) !important; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; transition: var(--transition);
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 24px rgba(212,175,55,0.35);
}
.btn-gold:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.5);
}
.btn-outline {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold); color: var(--navy);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white); color: var(--navy);
}
.btn-white:hover {
  background: var(--off-white); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  background: rgba(13, 18, 32, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  transition: var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.875rem; font-weight: 500; padding: 8px 14px;
  border-radius: 8px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold); color: var(--navy); padding: 10px 22px;
  border-radius: 50px; font-weight: 600; margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.nav-mobile { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--navy-dark); padding: 32px 5%;
    flex-direction: column; gap: 8px; list-style: none; z-index: 999;
    overflow-y: auto;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    color: var(--white); text-decoration: none; font-size: 1.1rem;
    font-weight: 500; padding: 14px 0;
    border-bottom: 1px solid rgba(212,175,55,0.1);
    display: block; transition: var(--transition);
  }
  .nav-mobile a:hover { color: var(--gold); padding-left: 8px; }
  .nav-mobile .nav-cta {
    margin-top: 16px; background: var(--gold); color: var(--navy);
    text-align: center; border-radius: 50px; font-weight: 600; border: none;
  }
}

/* ── SECTIONS ── */
.section { padding: 100px 5%; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 100px 5%; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.section-header p { max-width: 600px; margin: 16px auto 0; font-size: 1.1rem; }
.section-divider {
  width: 60px; height: 3px; background: var(--gold);
  margin: 20px auto; border-radius: 2px;
}

/* ── CARDS ── */
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius); padding: 36px;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  background: rgba(255,255,255,0.06);
}
.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(212,175,55,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 70px 5%; }
}

/* ── PRICING CARDS ── */
.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius); padding: 40px;
  position: relative; transition: var(--transition);
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
  box-shadow: var(--shadow-gold);
}
.pricing-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 0.75rem; font-weight: 700; padding: 4px 18px;
  border-radius: 50px; white-space: nowrap;
}
.pricing-name { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 8px; }
.pricing-price { color: var(--gold); font-size: 1.8rem; font-weight: 700; margin: 16px 0 8px; }
.pricing-delivery { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 32px; flex: 1; }
.pricing-features li {
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.92rem; color: rgba(255,255,255,0.8);
  display: flex; gap: 10px; align-items: flex-start;
}
.pricing-features li::before { content: "✦"; color: var(--gold); font-size: 0.6rem; margin-top: 5px; flex-shrink: 0; }

/* ── TESTIMONIALS ── */
.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius); padding: 36px;
}
.testimonial-text { font-size: 1rem; font-style: italic; line-height: 1.8; margin-bottom: 20px; }
.testimonial-text::before { content: '"'; color: var(--gold); font-size: 2rem; font-family: var(--font-heading); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testimonial-author { font-weight: 600; color: var(--gold); }
.testimonial-role { font-size: 0.85rem; color: var(--grey); }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 60px 5% 30px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--grey); font-size: 0.9rem; margin-top: 14px; line-height: 1.7; }
.footer-col h5 { font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--grey); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; font-size: 0.85rem; color: var(--grey); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── PARTICLES CANVAS ── */
#particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }

/* ── HERO BASE ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 5% 100px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a1f35 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
}
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 5% 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero .eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.page-hero h1 { margin-bottom: 20px; }
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }

/* ── GOLD LINE DECORATION ── */
.gold-line {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px; margin: 24px 0;
}
.gold-line-center {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px; margin: 24px auto;
}

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
  padding: 6px 16px; border-radius: 50px;
  letter-spacing: 1px; text-transform: uppercase;
}

/* ── STATS ── */
.stat-number { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--grey); margin-top: 4px; }

/* ── FORM INPUTS ── */
input, textarea, select {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--white); font-family: var(--font-body); font-size: 1rem;
  padding: 14px 18px; border-radius: 10px;
  transition: var(--transition); outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.3); }
label { display: block; font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.form-group { margin-bottom: 24px; }

/* ── UTILS ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex { display: flex; align-items: center; }
.flex-gap { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── PAGE LOAD ANIMATION ── */
.page-loader {
  position: fixed; inset: 0; background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 48px; height: 48px; border-radius: 50%;
  border: 3px solid rgba(212,175,55,0.2);
  border-top-color: var(--gold);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FLOATING GOLD DOTS BACKGROUND ── */
.bg-dots {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.bg-dots span {
  position: absolute; border-radius: 50%;
  background: var(--gold); opacity: 0.08;
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.08; }
  90% { opacity: 0.08; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
