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

:root {
  --charcoal: #1a1a1a;
  --charcoal-mid: #252525;
  --charcoal-light: #2e2e2e;
  --gold: #c9a84c;
  --gold-light: #e0c376;
  --gold-dark: #a07c30;
  --off-white: #f5f0e8;
  --cream: #faf7f2;
  --text-muted: #888880;
  --text-body: #d0ccc4;
  --white: #ffffff;
  --border: rgba(201,168,76,0.2);
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--charcoal);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--off-white);
  line-height: 1.2;
  font-weight: 500;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p { font-size: 1rem; color: var(--text-body); max-width: 65ch; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

section { padding: 100px 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 2px; font-family: 'Inter', sans-serif;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; border: none; transition: var(--transition); text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--charcoal); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.35); }
.btn-secondary { background: transparent; color: var(--off-white); border: 1px solid rgba(245,240,232,0.4); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.3); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--charcoal); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 40px; display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.nav.scrolled { background: rgba(26,26,26,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 14px 40px; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--off-white); font-weight: 600; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { color: var(--text-body); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; position: relative; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--gold); transition: width 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width:100%; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--off-white); transition: var(--transition); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background: url('../images/hero-background.png') center/cover no-repeat;
  transform: scale(1.08); transition: transform 12s ease-out; will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.65) 50%, rgba(26,26,26,0.80) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border); padding: 8px 20px; border-radius: 50px;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px; opacity: 0; animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-badge::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--gold); animation: pulse 2s infinite; }
.hero-title { opacity: 0; animation: fadeUp 0.9s 0.6s ease forwards; margin-bottom: 24px; }
.hero-title .line { display: block; overflow: hidden; }
.hero-sub { font-size: 1.1rem; color: var(--text-body); max-width: 560px; opacity: 0; animation: fadeUp 0.8s 0.9s ease forwards; margin-bottom: 44px; line-height: 1.8; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 1.1s ease forwards; }
.gold-line { position: absolute; right: 60px; top: 50%; transform: translateY(-50%); width: 1px; height: 200px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); opacity: 0.4; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: fadeIn 1s 1.5s ease forwards; z-index: 2; }
.scroll-indicator span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollAnim 2s ease-in-out infinite; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--charcoal-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; overflow: hidden; }
.trust-track { display: flex; gap: 80px; animation: marquee 25s linear infinite; white-space: nowrap; }
.trust-item { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.trust-item svg { color: var(--gold); }
.trust-item span { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--off-white); font-weight: 500; }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── SECTION LABELS ── */
.section-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 14px; }
.section-label::before { content:''; width: 40px; height: 1px; background: var(--gold); }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin-top: 16px; }
.gold-divider { width: 60px; height: 2px; background: linear-gradient(to right, var(--gold), transparent); margin: 24px 0; }

/* ── ABOUT SNAPSHOT ── */
.about-snapshot { background: var(--charcoal); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; border-radius: 2px; filter: brightness(0.9) contrast(1.05); }
.about-image-accent { position: absolute; bottom: -20px; right: -20px; width: 80%; height: 80%; border: 1px solid var(--border); border-radius: 2px; z-index: -1; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.stat-box { padding: 20px; border: 1px solid var(--border); border-radius: 2px; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--gold); }
.stat-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* ── PRODUCT CARDS ── */
.products-section { background: var(--charcoal-mid); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2px; margin-top: 60px; }
.product-card {
  background: var(--charcoal-light); position: relative; overflow: hidden;
  transition: var(--transition); cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card-img { height: 260px; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 32px; }
.availability-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 50px; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; margin-bottom: 16px;
}
.badge-available { background: rgba(201,168,76,0.12); color: var(--gold); border: 1px solid var(--border); }
.badge-unavailable { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.1); }
.badge-dot { width: 5px; height: 5px; border-radius: 50%; }
.badge-available .badge-dot { background: var(--gold); animation: pulse 2s infinite; }
.badge-unavailable .badge-dot { background: var(--text-muted); }
.product-card-title { font-size: 1.6rem; margin-bottom: 12px; }
.product-card-text { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }

/* ── WHY CHOOSE ── */
.why-section { background: var(--charcoal); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 60px; }
.why-card { padding: 36px 32px; border: 1px solid var(--border); border-radius: 2px; transition: var(--transition); position: relative; overflow: hidden; }
.why-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background: linear-gradient(to right, var(--gold), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { background: var(--charcoal-mid); transform: translateY(-4px); }
.why-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.why-icon svg { color: var(--gold); }

/* ── HOW BOOKING WORKS ── */
.booking-steps { background: var(--charcoal-mid); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; margin-top: 60px; position: relative; }
.steps-grid::before { content:''; position:absolute; top: 30px; left: 10%; right: 10%; height: 1px; background: var(--border); z-index: 0; }
.step-item { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num { width: 60px; height: 60px; border-radius: 50%; background: var(--charcoal); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold); margin: 0 auto 20px; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--off-white); margin-bottom: 8px; }
.step-text { font-size: 0.85rem; color: var(--text-muted); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--charcoal); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 60px; }
.testimonial-card { padding: 36px; border: 1px solid var(--border); border-radius: 2px; background: var(--charcoal-mid); }
.testimonial-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--off-white); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--charcoal); font-weight: 700; }
.author-name { font-size: 0.9rem; color: var(--off-white); font-weight: 500; }
.author-location { font-size: 0.78rem; color: var(--text-muted); }
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 20px; }

/* ── CTA BANNER ── */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, var(--charcoal-light) 0%, var(--charcoal-mid) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--charcoal-mid); border-top: 1px solid var(--border); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); margin-top: 16px; max-width: 280px; }
.footer-heading { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--off-white); margin-bottom: 20px; font-weight: 600; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-map { border-radius: 2px; overflow: hidden; border: 1px solid var(--border); }
.footer-map iframe { width: 100%; height: 160px; border: none; filter: brightness(0.8) grayscale(0.3); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); max-width: none; }
.contact-info { display: flex; flex-direction: column; gap: 10px; margin-top: 0; }
.contact-row { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); }
.contact-row svg { color: var(--gold); flex-shrink: 0; }

/* ── PAGE HERO ── */
.page-hero { padding: 160px 0 80px; text-align: center; background: var(--charcoal-mid); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; top:-50%; left:-50%; width:200%; height:200%; background: radial-gradient(ellipse at center, rgba(201,168,76,0.04) 0%, transparent 60%); }
.page-hero-badge { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--border); padding: 8px 20px; border-radius: 50px; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.breadcrumb { font-size: 0.78rem; color: var(--text-muted); margin-top: 20px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* ── SERVICE SECTION ── */
.service-section { background: var(--charcoal); }
.service-section.alt { background: var(--charcoal-mid); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.95rem; color: var(--text-body); }
.feature-list li::before { content:''; width: 18px; height: 18px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 1px solid var(--gold); flex-shrink: 0; margin-top: 3px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.value-item { padding: 20px; border: 1px solid var(--border); border-radius: 2px; }
.value-item h4 { font-size: 1rem; color: var(--off-white); margin-bottom: 6px; }
.value-item p { font-size: 0.85rem; color: var(--text-muted); max-width: none; }

/* ── ROADMAP ── */
.roadmap { padding: 80px 0; background: var(--charcoal-mid); }
.roadmap-steps { position: relative; max-width: 700px; margin: 50px auto 0; }
.roadmap-steps::before { content:''; position:absolute; left: 28px; top:0; bottom:0; width:1px; background: var(--border); }
.roadmap-step { display: flex; gap: 28px; align-items: flex-start; margin-bottom: 40px; position: relative; }
.roadmap-num { width: 56px; height: 56px; border-radius: 50%; background: var(--charcoal); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold); flex-shrink: 0; z-index: 1; }
.roadmap-text h4 { font-size: 1.1rem; color: var(--off-white); margin-bottom: 6px; margin-top: 14px; }
.roadmap-text p { font-size: 0.88rem; color: var(--text-muted); max-width: none; }

/* ── OUT OF STOCK BADGE ── */
.oos-banner { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 2px; padding: 16px 24px; display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.oos-dot { width: 10px; height: 10px; border-radius: 50%; background: #888; flex-shrink: 0; }
.oos-text { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ── WAITLIST FORM ── */
.waitlist-form { background: var(--charcoal-mid); border: 1px solid var(--border); border-radius: 2px; padding: 48px; max-width: 600px; margin: 60px auto 0; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px; padding: 14px 18px; color: var(--off-white); font-family: 'Inter', sans-serif;
  font-size: 0.95rem; transition: border-color 0.3s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-success { display: none; text-align: center; padding: 40px; }
.form-success h3 { color: var(--gold); margin-bottom: 12px; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 4px; margin-top: 60px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(26,26,26,0); display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.gallery-item:hover .gallery-overlay { background: rgba(26,26,26,0.5); }
.gallery-overlay svg { color: var(--gold); opacity: 0; transform: scale(0.8); transition: all 0.3s; }
.gallery-item:hover .gallery-overlay svg { opacity: 1; transform: scale(1); }
.gallery-category { display: inline-block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); padding: 6px 14px; border: 1px solid var(--border); border-radius: 50px; cursor: pointer; transition: var(--transition); }
.gallery-category.active, .gallery-category:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,0.08); }
.gallery-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 2px; }
.lightbox-close { position: absolute; top: 24px; right: 32px; color: var(--off-white); font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; color: var(--off-white); font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; text-align: left; padding: 28px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; transition: color 0.3s; }
.faq-q:hover { color: var(--gold); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }
.faq-a p { font-size: 0.95rem; color: var(--text-muted); max-width: none; }

/* ── CHATBOT ── */
.chatbot-trigger {
  position: fixed; bottom: 100px; right: 28px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%; background: var(--charcoal-mid);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.chatbot-trigger:hover { border-color: var(--gold); box-shadow: 0 12px 40px rgba(201,168,76,0.2); }
.chatbot-trigger svg { color: var(--gold); }
.chatbot-window {
  position: fixed; bottom: 174px; right: 28px; z-index: 900;
  width: 340px; background: var(--charcoal-mid); border: 1px solid var(--border);
  border-radius: 4px; box-shadow: var(--shadow); display: none; overflow: hidden;
}
.chatbot-window.open { display: block; animation: fadeUp 0.3s ease; }
.chatbot-header { background: var(--charcoal-light); padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.chatbot-header-info { display: flex; align-items: center; gap: 12px; }
.chatbot-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--charcoal); font-weight: 700; }
.chatbot-name { font-size: 0.88rem; color: var(--off-white); font-weight: 500; }
.chatbot-status { font-size: 0.72rem; color: #4ade80; }
.chatbot-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.2rem; line-height: 1; }
.chatbot-body { padding: 20px; max-height: 300px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 90%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-bubble { padding: 12px 16px; border-radius: 2px; font-size: 0.88rem; line-height: 1.5; }
.bot .chat-bubble { background: var(--charcoal-light); color: var(--text-body); border: 1px solid var(--border); }
.user .chat-bubble { background: var(--gold); color: var(--charcoal); }
.chat-options { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.chat-option { background: none; border: 1px solid var(--border); color: var(--off-white); padding: 10px 14px; border-radius: 2px; font-size: 0.82rem; text-align: left; cursor: pointer; transition: var(--transition); font-family: 'Inter', sans-serif; }
.chat-option:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 32px; right: 28px; z-index: 950;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4); cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.wa-float svg { color: white; }
.wa-tooltip { position: absolute; right: 68px; background: var(--charcoal-mid); border: 1px solid var(--border); color: var(--off-white); font-size: 0.8rem; padding: 8px 14px; border-radius: 2px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-info-section { display: flex; flex-direction: column; gap: 32px; }
.contact-card { padding: 28px; border: 1px solid var(--border); border-radius: 2px; }
.contact-card h4 { font-size: 1.1rem; color: var(--off-white); margin-bottom: 12px; }
.map-section { background: var(--charcoal-mid); padding: 80px 0; }
.map-embed iframe { width: 100%; height: 400px; border: none; border-radius: 2px; filter: brightness(0.8); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes scrollAnim {
  0%,100% { opacity: 0.2; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── PRODUCT PAGE IMAGE ── */
.product-hero-img { width: 100%; border-radius: 2px; box-shadow: var(--shadow); }
.product-hero-img-wrap { position: relative; }
.product-hero-img-wrap::after { content:''; position:absolute; bottom:-16px; right:-16px; width:60%; height:60%; border: 1px solid var(--border); border-radius: 2px; z-index: -1; }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--charcoal); z-index: 999; flex-direction: column; padding: 100px 40px 40px; }
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 28px; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--off-white); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--off-white); font-size: 2rem; cursor: pointer; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid, .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 0; }
  .container { padding: 0 24px; }
  .hero-content { padding: 0 24px; }
  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .chatbot-window { width: calc(100vw - 48px); right: 24px; }
  .value-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .waitlist-form { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}
