/* ===========================
   SHAADISTAYS — MAIN STYLESHEET
   =========================== */

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

/* ---- CSS Variables ---- */
:root {
  --bg:          hsl(30, 33%, 97%);
  --fg:          hsl(350, 15%, 15%);
  --card:        hsl(30, 25%, 95%);
  --primary:     hsl(345, 45%, 30%);
  --primary-fg:  hsl(30, 33%, 97%);
  --secondary:   hsl(30, 25%, 90%);
  --secondary-fg:hsl(350, 15%, 20%);
  --muted:       hsl(30, 15%, 92%);
  --muted-fg:    hsl(350, 8%, 45%);
  --border:      hsl(30, 18%, 85%);
  --gold:        hsl(38, 65%, 55%);
  --gold-light:  hsl(38, 55%, 75%);
  --gold-dark:   hsl(38, 70%, 40%);
  --wine:        hsl(345, 45%, 30%);
  --wine-dark:   hsl(345, 50%, 20%);
  --wine-light:  hsl(345, 35%, 45%);
  --radius:      0.75rem;
  --shadow-soft: 0 2px 15px -3px hsl(345 45% 30% / 0.08);
  --shadow-el:   0 10px 40px -10px hsl(345 45% 30% / 0.15);
  --shadow-gold: 0 4px 20px -4px hsl(38 65% 55% / 0.3);
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --gradient-wine: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
ul { list-style: none; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ---- Utility ---- */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-gold { color: var(--gold); }
.text-gold-dark { color: var(--gold-dark); }
.text-muted { color: var(--muted-fg); }
.text-primary-fg { color: var(--primary-fg); }

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-gradient-wine { background: var(--gradient-wine); }
.bg-gradient-gold  { background: var(--gradient-gold); }
.bg-hero-pattern {
  background-image:
    radial-gradient(ellipse at 20% 50%, hsl(38 65% 55% / 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, hsl(345 45% 30% / 0.05) 0%, transparent 50%);
}
.shadow-elevated { box-shadow: var(--shadow-el); }
.shadow-gold      { box-shadow: var(--shadow-gold); }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: hsl(30, 33%, 97%, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(30, 18%, 85%, 0.5);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) { .navbar-inner { height: 80px; } }

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.logo span { color: var(--gold); }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(350, 15%, 15%, 0.7);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--fg);
  background: var(--secondary);
}
.nav-links a.active {
  background: var(--primary);
  color: var(--primary-fg);
}

.btn-quote {
  display: none;
  background: var(--gradient-wine);
  color: var(--primary-fg);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s;
  white-space: nowrap;
}
@media (min-width: 768px) { .btn-quote { display: inline-block; } }
.btn-quote:hover { opacity: 0.9; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(350, 15%, 15%, 0.7);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: var(--secondary); color: var(--fg); }
.mobile-menu a.active { background: var(--primary); color: var(--primary-fg); }
.mobile-menu .btn-quote-mobile {
  display: block;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  text-align: center;
  background: var(--gradient-wine);
  color: var(--primary-fg);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--primary);
  color: var(--primary-fg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 4rem 0;
  }
}
.footer-brand .logo { color: var(--primary-fg); }
.footer-brand p { margin-top: 1rem; color: hsl(30, 33%, 97%, 0.7); font-size: 0.875rem; line-height: 1.7; max-width: 380px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  background: hsl(30, 33%, 97%, 0.1);
  transition: background 0.2s;
  color: var(--primary-fg);
}
.footer-social a:hover { background: hsl(30, 33%, 97%, 0.2); }
.footer-social svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.footer-col h4 { font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1rem; }
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.875rem;
  color: hsl(30, 33%, 97%, 0.7);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary-fg); }

.footer-bottom {
  border-top: 1px solid hsl(30, 33%, 97%, 0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { font-size: 0.75rem; color: hsl(30, 33%, 97%, 0.5); }
.footer-bottom .heart { color: var(--gold); }

/* ==================== SECTION HEADING ==================== */
.section-heading { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: hsl(38, 65%, 55%, 0.1);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.section-heading h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--fg); }
.section-heading p { margin-top: 0.75rem; color: var(--muted-fg); font-size: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font-body);
  transition: opacity 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
  font-size: 0.9375rem;
}
.btn:hover { opacity: 0.9; }
.btn-gold { background: var(--gold); color: hsl(350, 15%, 12%); }
.btn-wine { background: var(--gradient-wine); color: var(--primary-fg); }
.btn-outline { border: 1px solid hsl(30, 33%, 97%, 0.3); color: var(--primary-fg); }
.btn-outline:hover { background: hsl(30, 33%, 97%, 0.1); opacity: 1; }
.btn-secondary { background: var(--secondary); color: var(--secondary-fg); }
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }

/* ==================== CARDS ==================== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: var(--shadow-el); }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 0.75rem;
  background: hsl(38, 65%, 55%, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.2s;
  flex-shrink: 0;
}
.card:hover .card-icon { background: hsl(38, 65%, 55%, 0.2); }
.card-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold-dark); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.0625rem; font-weight: 600; color: var(--fg); }
.card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }

/* ==================== INDEX PAGE ==================== */
/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(350, 15%, 15%, 0.82), hsl(350, 15%, 15%, 0.60), hsl(350, 15%, 15%, 0.30));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 6rem 0 4rem;
}
.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: hsl(38, 65%, 55%, 0.2);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(2.25rem, 6vw, 3.75rem); font-weight: 700; color: var(--primary-fg); line-height: 1.15; }
.hero h1 .accent { color: var(--gold); }
.hero-sub { margin-top: 1.5rem; color: hsl(30, 33%, 97%, 0.82); font-size: 1.0625rem; line-height: 1.75; max-width: 520px; }
.hero-btns { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* Stats bar */
.stats-bar { padding: 3rem 0; background: var(--primary); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-item .val { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
@media (min-width: 768px) { .stat-item .val { font-size: 2.5rem; } }
.stat-item .lbl { margin-top: 0.25rem; color: hsl(30, 33%, 97%, 0.7); font-size: 0.8125rem; }

/* Services section */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }

/* Why us section */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-card { display: flex; gap: 1rem; padding: 1.5rem; border-radius: 1rem; background: var(--bg); border: 1px solid var(--border); }
.why-card .card-icon { margin-bottom: 0; }
.why-card h3 { font-size: 1.0625rem; font-weight: 600; color: var(--fg); }
.why-card p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }

/* How it works */
.how-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .how-grid { grid-template-columns: 1fr 1fr 1fr; } }
.how-step { text-align: center; }
.how-step .step-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: hsl(38, 65%, 55%, 0.2); line-height: 1; }
.how-step h3 { margin-top: 0.5rem; font-size: 1.25rem; font-weight: 600; color: var(--fg); }
.how-step p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }

/* CTA section */
.cta-section { padding: 5rem 0; text-align: center; }
.cta-section h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; color: var(--primary-fg); }
.cta-section p { margin-top: 1rem; color: hsl(30, 33%, 97%, 0.8); font-size: 1.0625rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-section .btn { margin-top: 2rem; }

/* py helpers */
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.bg-card-section { background: var(--card); }
.bg-secondary-section { background: var(--secondary); }
.page-top-pad { padding-top: 80px; }
@media (min-width: 768px) { .page-top-pad { padding-top: 80px; } }

/* ==================== ABOUT PAGE ==================== */
.about-hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-hero-grid { grid-template-columns: 1fr 1fr; } }
.about-img { border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-el); }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-text .badge { display: inline-block; padding: 0.375rem 1rem; border-radius: 999px; background: hsl(38, 65%, 55%, 0.1); color: var(--gold-dark); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.about-text h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; color: var(--fg); line-height: 1.2; }
.about-text p { margin-top: 1rem; color: var(--muted-fg); line-height: 1.8; }

.commitments { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.commitment-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.25rem; background: var(--card); border-radius: 0.75rem; border: 1px solid var(--border); }
.commitment-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 0.4rem; }
.commitment-item p { font-size: 0.875rem; color: var(--fg); line-height: 1.7; }

/* ==================== SERVICES PAGE ==================== */
.services-list { display: flex; flex-direction: column; gap: 4rem; }
.service-row { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .service-row { grid-template-columns: 1fr 1fr; } }
.service-row.reverse .service-text { order: 1; }
.service-row.reverse .service-visual { order: 2; }
@media (min-width: 1024px) {
  .service-row.reverse .service-text { order: 2; }
  .service-row.reverse .service-visual { order: 1; }
}
.service-icon-wrap { width: 56px; height: 56px; border-radius: 0.75rem; background: hsl(38, 65%, 55%, 0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.service-icon-wrap svg { width: 28px; height: 28px; fill: none; stroke: var(--gold-dark); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-text h3 { font-size: clamp(1.375rem, 3vw, 1.875rem); font-weight: 700; color: var(--fg); }
.service-text p { margin-top: 1rem; color: var(--muted-fg); line-height: 1.8; }
.feature-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--fg); }
.feature-list svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.service-visual { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; min-height: 250px; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.service-visual svg { width: 80px; height: 80px; fill: none; stroke: hsl(38, 65%, 55%, 0.2); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ==================== PRICING PAGE ==================== */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: 1fr 1fr 1fr; } }
.pricing-card { border-radius: 1rem; border: 1px solid var(--border); background: var(--card); padding: 1.75rem; display: flex; flex-direction: column; position: relative; }
.pricing-card.popular { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: hsl(350, 15%, 12%);
  padding: 0.25rem 1rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; white-space: nowrap;
}
.pricing-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--fg); }
.pricing-fee { margin-top: 1rem; display: flex; align-items: baseline; gap: 0.25rem; }
.pricing-fee .num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--gold-dark); }
.pricing-fee .unit { color: var(--muted-fg); font-size: 0.875rem; }
.pricing-desc { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); }
.pricing-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--fg); }
.pricing-features svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.pricing-cta { margin-top: 2rem; display: block; text-align: center; padding: 0.75rem; border-radius: 0.75rem; font-size: 0.875rem; font-weight: 600; transition: opacity 0.2s; }
.pricing-cta:hover { opacity: 0.85; }
.pricing-cta.popular-cta { background: var(--gradient-wine); color: var(--primary-fg); }
.pricing-cta.normal-cta { background: var(--secondary); color: var(--secondary-fg); }

.pricing-info-box { max-width: 720px; margin: 0 auto; }
.info-box {
  padding: 1.5rem; border-radius: 1rem;
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 1rem;
}
.info-box.gold-box { background: hsl(38, 65%, 55%, 0.05); border: 1px solid hsl(38, 65%, 55%, 0.2); }
.info-box.card-box { background: var(--card); border: 1px solid var(--border); }
.info-box svg { width: 20px; height: 20px; fill: none; stroke: var(--gold-dark); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.info-box h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--fg); }
.info-box p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }

/* ==================== FAQs PAGE ==================== */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem; text-align: left; cursor: pointer;
  transition: background 0.2s; background: var(--bg);
}
.faq-question:hover { background: hsl(30, 25%, 90%, 0.5); }
.faq-question span { font-family: var(--font-display); font-weight: 600; color: var(--fg); padding-right: 1rem; line-height: 1.4; }
.faq-chevron { width: 20px; height: 20px; fill: none; stroke: var(--muted-fg); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 1.25rem; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.25rem 1.25rem; }
.faq-answer p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.75; }

/* ==================== CONTACT PAGE ==================== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 1080px; margin: 0 auto; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-info h3 { font-size: 1.5rem; font-weight: 700; color: var(--fg); }
.contact-info > p { margin-top: 0.75rem; color: var(--muted-fg); line-height: 1.7; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: hsl(142, 70%, 40%); color: #fff;
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9375rem; margin-top: 1.5rem;
  transition: opacity 0.2s;
}
.btn-whatsapp:hover { opacity: 0.9; }
.btn-whatsapp svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.contact-links { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-link { display: flex; align-items: center; gap: 0.75rem; }
.contact-link-icon { width: 40px; height: 40px; border-radius: var(--radius); background: hsl(38, 65%, 55%, 0.1); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.contact-link:hover .contact-link-icon { background: hsl(38, 65%, 55%, 0.2); }
.contact-link-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--gold-dark); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-link .lbl { font-size: 0.75rem; color: var(--muted-fg); }
.contact-link .val { font-size: 0.875rem; font-weight: 500; color: var(--fg); }

.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--fg); }
.form-group input,
.form-group textarea {
  padding: 0.625rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--fg);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(345, 45%, 30%, 0.12);
}
.form-group textarea { resize: none; }
.form-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--gradient-wine); color: var(--primary-fg);
  padding: 0.875rem; border-radius: 0.75rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem;
  cursor: pointer; transition: opacity 0.2s; border: none;
}
.form-submit:hover { opacity: 0.9; }
.form-submit svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.form-success { text-align: center; padding: 3rem 2rem; }
.form-success .success-icon { width: 64px; height: 64px; border-radius: 50%; background: hsl(38, 65%, 55%, 0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.form-success .success-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--gold-dark); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { font-size: 1.5rem; font-weight: 700; color: var(--fg); }
.form-success p { margin-top: 0.5rem; color: var(--muted-fg); }

/* ==================== CHATBOT ==================== */
.chat-trigger {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient-wine); color: var(--primary-fg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-el);
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer; border: none;
}
.chat-trigger:hover { opacity: 0.9; transform: scale(1.05); }
.chat-trigger svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chat-trigger.hidden { display: none; }

.chat-window {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  width: 350px; max-width: calc(100vw - 3rem);
  background: var(--bg); border: 1px solid var(--border); border-radius: 1rem;
  box-shadow: var(--shadow-el);
  display: flex; flex-direction: column;
  max-height: 500px; overflow: hidden;
  transform: scale(0.95) translateY(12px); opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}
.chat-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chat-window.hidden { display: none; }

.chat-header {
  background: var(--gradient-wine); color: var(--primary-fg);
  padding: 1rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.chat-header-info p:first-child { font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; }
.chat-header-info p:last-child { font-size: 0.75rem; opacity: 0.8; }
.chat-close { padding: 0.25rem; border-radius: 0.375rem; transition: background 0.2s; }
.chat-close:hover { background: hsl(30, 33%, 97%, 0.1); }
.chat-close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.chat-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; min-height: 180px; }
.chat-msg { display: flex; }
.chat-msg.user { justify-content: flex-end; }
.chat-bubble {
  max-width: 80%; padding: 0.625rem 1rem;
  font-size: 0.875rem; line-height: 1.6;
  border-radius: 1rem;
}
.chat-msg.bot .chat-bubble { background: var(--secondary); color: var(--secondary-fg); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-bubble { background: var(--primary); color: var(--primary-fg); border-bottom-right-radius: 4px; }

.chat-footer { padding: 0.75rem; border-top: 1px solid var(--border); flex-shrink: 0; }
.chat-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chat-opt {
  padding: 0.375rem 0.875rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 500;
  background: hsl(38, 65%, 55%, 0.1); color: var(--gold-dark);
  border: 1px solid hsl(38, 65%, 55%, 0.2);
  cursor: pointer; transition: background 0.2s;
}
.chat-opt:hover { background: hsl(38, 65%, 55%, 0.2); }
.btn-wa-full {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: hsl(142, 70%, 40%); color: #fff;
  padding: 0.75rem; border-radius: 0.75rem;
  font-weight: 600; font-size: 0.875rem; cursor: pointer;
  transition: opacity 0.2s; border: none; font-family: var(--font-body);
}
.btn-wa-full:hover { opacity: 0.9; }
.btn-wa-full svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
