/* ═══════════════════════════════════════════════════
   MEHNDISATHI — MAIN CSS
   Luxury Indian Traditional × Modern Tech Aesthetic
   Colors: Deep Charcoal bg, Mehendi Gold accents
═══════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --bg-primary:    #0f0a04;
  --bg-secondary:  #1a1008;
  --bg-card:       #211508;
  --bg-card-hover: #2a1c0c;

  --gold:          #C8860A;
  --gold-light:    #E8A838;
  --gold-pale:     #F5C96A;
  --amber:         #E8A838;
  --cream:         #FFF8F0;
  --cream-dim:     rgba(255, 248, 240, 0.75);
  --cream-muted:   rgba(255, 248, 240, 0.45);

  --mehndi-brown:  #8B4513;
  --mehndi-dark:   #5C2E0A;
  --mehndi-warm:   #A0522D;

  --text-primary:  #FFF8F0;
  --text-secondary:#D4A96A;
  --text-muted:    rgba(255, 248, 240, 0.55);

  --border:        rgba(200, 134, 10, 0.2);
  --border-hover:  rgba(200, 134, 10, 0.5);

  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     32px;

  --shadow-gold:   0 4px 30px rgba(200, 134, 10, 0.25);
  --shadow-card:   0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-deep:   0 20px 60px rgba(0, 0, 0, 0.6);

  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --font-deva:     'Noto Sans Devanagari', sans-serif;

  --max-width:     1200px;
  --nav-height:    72px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
em { font-style: italic; color: var(--gold-light); }
strong { font-weight: 600; color: var(--cream); }

/* ─── Container ─── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  transition: var(--transition); cursor: pointer; border: none;
  white-space: nowrap; position: relative; overflow: hidden;
  text-decoration: none;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1); opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: #0f0a04;
  box-shadow: 0 4px 20px rgba(200, 134, 10, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 134, 10, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-large { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

.btn-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(200,134,10,0.4); }
  50% { box-shadow: 0 8px 40px rgba(200,134,10,0.8), 0 0 60px rgba(200,134,10,0.3); }
}

/* ─── Section Commons ─── */
.section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; padding: 5px 16px;
  border: 1px solid var(--border-hover); border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--gold-light); text-transform: uppercase;
  margin-bottom: 14px; background: rgba(200,134,10,0.08);
}
.section-title { margin-bottom: 16px; color: var(--cream); }
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  background: rgba(15, 10, 4, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(15, 10, 4, 0.96);
  border-bottom-color: var(--border-hover);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--cream);
}
.logo-img { width: 36px; height: 36px; }
.logo-text { color: var(--cream); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links li a {
  color: var(--cream-dim); font-size: 0.92rem; font-weight: 500;
  transition: var(--transition); position: relative;
}
.nav-links li a:not(.nav-cta):hover { color: var(--gold-light); }
.nav-links li a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links li a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #0f0a04 !important; padding: 9px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.88rem !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px; transition: var(--transition);
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; padding-top: var(--nav-height);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(139,69,19,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 10% 80%, rgba(200,134,10,0.08) 0%, transparent 60%),
              var(--bg-primary);
}

.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(200,134,10,0.025) 30px, rgba(200,134,10,0.025) 31px),
    repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(200,134,10,0.025) 30px, rgba(200,134,10,0.025) 31px);
}
.hero-glow {
  position: absolute; top: 20%; right: 5%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,134,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero > .container,
.hero {
  display: flex;
}

.hero {
  gap: 0;
  padding: var(--nav-height) 0 60px;
}

.hero > * { position: relative; }

.hero-content, .hero-visual {
  flex: 1;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 60px;
  display: flex; flex-direction: column;
  justify-content: center;
  max-width: 580px;
  margin-left: auto;
  padding-right: 60px;
}

@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-content { padding-right: 24px; max-width: 100%; margin: 0 auto; align-items: center; }
  .hero-visual { margin: 0 auto; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,134,10,0.12); border: 1px solid var(--border-hover);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--gold-light); text-transform: uppercase;
  margin-bottom: 24px; width: fit-content;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.hero-title {
  margin-bottom: 22px; color: var(--cream);
  text-shadow: 0 2px 20px rgba(200,134,10,0.2);
}

.hero-subtitle {
  font-size: 1.1rem; color: var(--text-muted);
  margin-bottom: 36px; max-width: 460px; line-height: 1.7;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.5rem; font-weight: 700; color: var(--gold-light); font-family: var(--font-display); }
.stat-label { display: block; font-size: 0.75rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Hero Visual */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; flex: 1;
  min-height: 500px;
}
.phone-mockup {
  position: relative; width: 260px; z-index: 2;
}
.phone-screen {
  background: #1a1008;
  border-radius: 36px;
  border: 3px solid rgba(200,134,10,0.4);
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,134,10,0.2);
  overflow: hidden;
  aspect-ratio: 9/19;
}
.phone-screen-inner {
  border-radius: 26px; overflow: hidden; height: 100%;
  background: var(--bg-card); position: relative;
}
.phone-img {
  width: 100%; height: 100%; object-fit: cover;
  background: linear-gradient(135deg, #2a1c0c, #1a1008);
}
.phone-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #3d2410 0%, #1a1008 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.phone-img-placeholder .hand-icon { font-size: 3.5rem; opacity: 0.6; }
.phone-img-placeholder p { font-size: 0.75rem; color: var(--text-muted); text-align: center; padding: 0 12px; }

.phone-overlay {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
}
.phone-badge {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #0f0a04; padding: 5px 12px; border-radius: 50px;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em;
  display: inline-block;
}
.phone-glow {
  position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 60px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,134,10,0.4) 0%, transparent 70%);
  filter: blur(10px);
}

.floating-card {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: rgba(33, 21, 8, 0.9); backdrop-filter: blur(12px);
  border: 1px solid var(--border-hover); border-radius: var(--radius-md);
  padding: 10px 16px; font-size: 0.82rem; font-weight: 600;
  color: var(--cream); box-shadow: var(--shadow-card); z-index: 3;
}
.card-1 { top: 15%; left: -10px; }
.card-2 { bottom: 25%; right: -10px; }
.card-icon { font-size: 1.1rem; }

/* ═══════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════ */
.how-it-works {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: flex; align-items: center; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

.step-card {
  flex: 1; min-width: 220px; max-width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--amber));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.step-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.step-card:hover::before { transform: scaleX(1); }

.step-number {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: rgba(200,134,10,0.15); line-height: 1; margin-bottom: 8px;
}
.step-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.step-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

.step-arrow {
  font-size: 1.8rem; color: var(--gold); opacity: 0.5;
  flex-shrink: 0; align-self: center;
}

.how-cta { text-align: center; margin-top: 48px; }

/* ═══════════════════════════════════════════════════
   DESIGN GALLERY PREVIEW
═══════════════════════════════════════════════════ */
.gallery-preview { background: var(--bg-primary); }

.category-tabs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 36px;
}
.cat-tab {
  padding: 8px 20px; border-radius: 50px;
  border: 1.5px solid var(--border);
  color: var(--text-muted); font-size: 0.85rem; font-weight: 500;
  transition: var(--transition); background: transparent;
  cursor: pointer;
}
.cat-tab:hover { border-color: var(--border-hover); color: var(--cream); }
.cat-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-color: transparent; color: #0f0a04; font-weight: 700;
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.design-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition); cursor: pointer; position: relative;
}
.design-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.design-card-img {
  width: 100%; aspect-ratio: 1; background: var(--bg-card-hover);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(200,134,10,0.3); overflow: hidden;
  position: relative;
}
.design-card-img img { width: 100%; height: 100%; object-fit: cover; }
.design-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,10,4,0.85) 0%, transparent 50%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 12px;
}
.design-card:hover .design-card-overlay { opacity: 1; }
.design-card-try-btn {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #0f0a04; padding: 7px 18px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; border: none; cursor: pointer;
  transform: translateY(10px); transition: transform 0.3s;
}
.design-card:hover .design-card-try-btn { transform: translateY(0); }

.design-card-info {
  padding: 10px 12px;
}
.design-card-name {
  font-size: 0.82rem; font-weight: 600; color: var(--cream);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.design-card-cat {
  font-size: 0.72rem; color: var(--gold); margin-top: 2px; font-weight: 500;
}

.gallery-cta { text-align: center; margin-top: 48px; }

/* ═══════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════ */
.features-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-card); }
.feature-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.feature-card h3 { margin-bottom: 8px; font-size: 1rem; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   OCCASIONS STRIP
═══════════════════════════════════════════════════ */
.occasions-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 14px 0;
  background: rgba(200,134,10,0.04);
}
.occasions-inner {
  display: flex; gap: 40px; width: max-content;
  animation: scroll-marquee 20s linear infinite;
}
.occasions-inner span {
  font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
  white-space: nowrap; letter-spacing: 0.05em;
}
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testimonials-section { background: var(--bg-primary); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }

.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; }
.testimonial-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════ */
.final-cta {
  padding: 100px 0; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(139,69,19,0.25) 0%, transparent 70%),
              var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.cta-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(200,134,10,0.03) 40px, rgba(200,134,10,0.03) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(200,134,10,0.03) 40px, rgba(200,134,10,0.03) 41px);
}
.cta-content { position: relative; text-align: center; }
.cta-content h2 { margin-bottom: 16px; color: var(--cream); }
.cta-content p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 36px; line-height: 1.8; }
.cta-note { margin-top: 18px; font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: #070402;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); margin: 16px 0; line-height: 1.7; }
.footer-contact { display: flex; flex-direction: column; gap: 4px; }
.footer-contact a { font-size: 0.82rem; color: var(--gold); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-links h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-family: var(--font-body); }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-tagline { color: var(--gold) !important; }

/* ═══════════════════════════════════════════════════
   PWA BANNER
═══════════════════════════════════════════════════ */
.pwa-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 200;
  background: var(--bg-card); border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg); padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: var(--shadow-deep);
  transform: translateY(120px); opacity: 0;
  transition: var(--transition-slow);
}
.pwa-banner.visible { transform: translateY(0); opacity: 1; }

.pwa-content { display: flex; align-items: center; gap: 12px; }
.pwa-content div { display: flex; flex-direction: column; }
.pwa-content strong { font-size: 0.88rem; color: var(--cream); }
.pwa-content span { font-size: 0.75rem; color: var(--text-muted); }
.pwa-actions { display: flex; align-items: center; gap: 10px; }
.btn-icon { background: none; border: none; color: var(--text-muted); font-size: 1rem; cursor: pointer; padding: 4px; }
.btn-icon:hover { color: var(--cream); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 70px 0; }

  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(10, 7, 2, 0.97); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 32px;
    transform: translateX(100%); transition: transform 0.3s;
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li a { font-size: 1.3rem !important; }
  .hamburger { display: flex; }

  .hero { flex-direction: column; padding: 80px 0 40px; text-align: center; }
  .hero-content { align-items: center; padding: 32px 24px 0; max-width: 100%; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { min-height: 360px; margin-top: 40px; }
  .phone-mockup { width: 200px; }
  .card-1 { top: 5%; left: 5%; }
  .card-2 { bottom: 5%; right: 5%; }

  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .step-card { max-width: 100%; }

  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .design-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-top { grid-template-columns: 1fr; }
  .category-tabs { gap: 6px; }
  .cat-tab { padding: 6px 14px; font-size: 0.78rem; }
}

/* ═══════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════ */
.faq-section { background: var(--bg-primary); }

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item.open { border-color: var(--border-hover); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; text-align: left;
  font-family: var(--font-body); font-size: 0.975rem; font-weight: 600;
  color: var(--cream); background: none; border: none; cursor: pointer;
  transition: var(--transition); gap: 16px;
}
.faq-question:hover { color: var(--gold-light); }
.faq-item.open .faq-question { color: var(--gold-light); }

.faq-icon {
  font-size: 1.4rem; font-weight: 300; color: var(--gold);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px; color: var(--text-muted);
  font-size: 0.9rem; line-height: 1.8; margin: 0;
}

/* ═══════════════════════════════════════════════════
   BLOG PREVIEW SECTION (on homepage)
═══════════════════════════════════════════════════ */
.blog-preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.blog-preview-card {
  display: flex; flex-direction: column; gap: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); color: var(--cream);
}
.blog-preview-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-card); }

.blog-preview-icon {
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.blog-preview-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.blog-preview-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
}
.blog-preview-body h3 { font-size: 0.95rem; color: var(--cream); line-height: 1.35; }
.blog-preview-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }

/* active link state */
.active-link { color: var(--gold-light) !important; }

@media (max-width: 768px) {
  .blog-preview-grid { grid-template-columns: 1fr; }
  .faq-question { padding: 16px 18px; font-size: 0.9rem; }
  .faq-answer p { padding: 0 18px 16px; }
}

/* ═══════════════════════════════════════════════════
   BOOKING TEASER (homepage)
═══════════════════════════════════════════════════ */
.booking-teaser-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding: 20px 0;
}
.booking-teaser-badges {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.b-badge {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px;
  transition: var(--transition);
}
.b-badge:hover { border-color: var(--border-hover); }
.b-badge-icon {
  font-size: 1.2rem; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(200,134,10,0.1); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.b-badge > div { display: flex; flex-direction: column; gap: 2px; }
.b-badge strong { color: var(--cream); font-size: 0.85rem; }
.b-badge span { color: var(--text-muted); font-size: 0.75rem; }

@media (max-width: 768px) {
  .booking-teaser-inner { grid-template-columns: 1fr; gap: 28px; }
  .booking-teaser-badges { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .booking-teaser-badges { grid-template-columns: 1fr; }
}
