/* ============================================================
   Hornsprachdienst.ch — Premium Stylesheet
   ============================================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --bg-deep:      #0c0804;
  --bg-card:      #151009;
  --bg-surface:   #1a130b;
  --accent-teal:  #e8a838;
  --accent-gold:  #d4652a;
  --text-primary: #faf3eb;
  --text-muted:   #a89580;
  --border:       rgba(255,220,180,0.08);
  --radius:       14px;
  --shadow:       0 20px 60px rgba(0,0,0,0.5);
  --transition:   0.3s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #1a1a1a; border-radius: 3px; }

/* ---------- Logo SVG ---------- */
.logo-icon {
  height: 28px; width: auto;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.logo { display: inline-flex; align-items: center; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5%;
  backdrop-filter: blur(18px);
  background: rgba(10,13,19,0.85);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { padding: 0.7rem 5%; }
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--accent-teal);
  letter-spacing: 0.02em;
}
.logo span { color: var(--text-primary); }
/* ---- Logo easter-egg ---- */
.logo-letter { display: inline-block; transition: color 0.12s ease; }
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-cta {
  background: var(--accent-teal);
  color: var(--bg-deep) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: opacity var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

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

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 0 6%;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8a838' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}

/* --- Particle canvas --- */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* --- Ambient glow blobs --- */
.hero-glow-1,
.hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  will-change: transform;
}
.hero-glow-1 {
  width: 750px; height: 580px;
  background: radial-gradient(ellipse, rgba(232,168,56,0.19) 0%, transparent 68%);
  top: -8%; right: 0%;
  animation: glowDrift1 16s ease-in-out infinite;
}
.hero-glow-2 {
  width: 580px; height: 460px;
  background: radial-gradient(ellipse, rgba(212,101,42,0.14) 0%, transparent 68%);
  bottom: 5%; left: -5%;
  animation: glowDrift2 22s ease-in-out infinite;
}
@keyframes glowDrift1 {
  0%   { transform: translate(0px,   0px); }
  25%  { transform: translate(-90px, 75px); }
  55%  { transform: translate(60px, 120px); }
  80%  { transform: translate(-40px,  30px); }
  100% { transform: translate(0px,   0px); }
}
@keyframes glowDrift2 {
  0%   { transform: translate(0px,    0px); }
  30%  { transform: translate(110px, -85px); }
  60%  { transform: translate(-70px,  65px); }
  85%  { transform: translate(50px,  -30px); }
  100% { transform: translate(0px,    0px); }
}

.hero-content { max-width: 1200px; width: 100%; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  padding: 0.2em 0;
  white-space: nowrap;
}
.hero h1 .highlight {
  color: var(--accent-teal);
  display: inline-block;
  white-space: nowrap;
}
.hero p {
  font-size: 1.25rem; color: var(--text-muted);
  margin-bottom: 3.5rem; max-width: 620px; line-height: 1.85;
}

/* --- Hero Feature Cards (replacing pill badges) --- */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3.2rem;
  max-width: 700px;
  width: 100%;
}
.hero-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
  cursor: default;
}
.hero-feature:hover { border-color: rgba(232,168,56,0.3); background: rgba(232,168,56,0.04); }
.hero-feature svg { width: 20px; height: 20px; stroke: var(--accent-teal); stroke-width: 2; fill: none; flex-shrink: 0; }
.hero-feature-text { font-size: 0.82rem; font-weight: 500; color: var(--text-primary); }
.hero-feature.accent { border-color: rgba(232,168,56,0.3); }
.hero-feature.accent .hero-feature-text { color: var(--accent-teal); }

/* Keep .badge for other uses */
.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.83rem; color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.badge:hover { border-color: var(--accent-teal); color: var(--text-primary); }
.badge svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2; fill: none; flex-shrink: 0; }

.hero-ctas { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
.hero-ctas .btn-primary { padding: 1.15rem 2.8rem; font-size: 1rem; }
.hero-ctas .btn-secondary { padding: 1.15rem 2.4rem; font-size: 1rem; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent-teal);
  color: var(--bg-deep);
  font-weight: 700; font-size: 1rem;
  padding: 1rem 2.4rem;
  border-radius: 12px;
  border: none; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  box-shadow: 0 0 30px rgba(232,168,56,0.25);
  letter-spacing: 0.02em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(232,168,56,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600; font-size: 1rem;
  padding: 1rem 2.4rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.btn-secondary:hover { border-color: var(--accent-teal); background: rgba(232,168,56,0.06); }

/* ---------- Section Shared ---------- */
section { padding: 9rem 6%; }
.section-tag {
  display: inline-block;
  color: var(--accent-teal);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}
.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.75;
}
.section-header { margin-bottom: 4.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ---------- Divider ---------- */
.divider {
  height: 1px;
  background: transparent;
  margin: 0;
}

/* ---------- Services Section ---------- */
.services { background: var(--bg-surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.8rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-gold));
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { border-color: rgba(232,168,56,0.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  margin-bottom: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  width: 68px; height: 68px;
  background: rgba(232,168,56,0.1);
  border-radius: 14px;
  border: 1px solid rgba(232,168,56,0.2);
}
.service-icon svg { width: 30px; height: 30px; stroke: var(--accent-teal); stroke-width: 1.5; fill: none; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.service-card p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 1.8rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--accent-teal); font-size: 0.9rem; font-weight: 600;
  transition: gap var(--transition);
}
.card-link:hover { gap: 0.7rem; }

/* ---------- Einsatzbereiche ---------- */
.einsatz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.4rem;
}
.einsatz-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.einsatz-item:hover { border-color: var(--accent-teal); transform: translateY(-3px); }
.einsatz-item .ei { margin-bottom: 1rem; display: flex; justify-content: center; }
.einsatz-item .ei svg { width: 34px; height: 34px; stroke: var(--accent-teal); stroke-width: 1.5; fill: none; }
.einsatz-item span { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); }

.einsatz-grid.row-6 {
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .einsatz-grid.row-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .einsatz-grid.row-6 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Process Steps ---------- */
.process { background: var(--bg-surface); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  position: relative;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.6rem;
  position: relative;
  overflow: hidden;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; font-weight: 700;
  color: rgba(232,168,56,0.08);
  position: absolute; top: -0.5rem; right: 1.2rem;
  line-height: 1;
}
.step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--accent-teal);
  color: var(--bg-deep);
  border-radius: 50%;
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 1.4rem;
}
.step-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.8rem; }
.step-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.t-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.6rem;
  transition: border-color var(--transition);
}
.t-card:hover { border-color: rgba(232,168,56,0.25); }
.stars { color: var(--accent-gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 3px; }
.t-card p { color: var(--text-muted); font-size: 1rem; font-style: italic; line-height: 1.8; margin-bottom: 1.6rem; }
.t-author { font-weight: 600; font-size: 0.95rem; color: var(--text-primary); }
.t-role { font-size: 0.85rem; color: var(--accent-teal); margin-top: 0.2rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(232,168,56,0.12), rgba(212,101,42,0.06)),
    var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 9rem 6%;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.4rem;
}
.cta-banner p { color: var(--text-muted); margin-bottom: 2.8rem; max-width: 560px; margin-left: auto; margin-right: auto; font-size: 1.1rem; line-height: 1.8; }
.cta-btns { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer {
  background: var(--bg-deep);
  border-top: none;
  padding: 8rem 6% 4rem;
  margin-top: 6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}
.footer-brand .logo { font-size: 1.2rem; margin-bottom: 0.8rem; display: block; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; max-width: 280px; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent-teal); }
.footer-bottom {
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom a { color: var(--accent-teal); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 6%;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(232,168,56,0.08) 0%, transparent 70%),
    var(--bg-deep);
  text-align: center;
}
.page-hero .section-tag { font-size: 1rem; margin-bottom: 1.5rem; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  margin-bottom: 1.8rem;
  line-height: 1.15;
}
.page-hero p { color: var(--text-muted); max-width: 700px; margin: 0 auto; font-size: 1.3rem; line-height: 1.8; }

/* ---------- Pricing Cards ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.price-card.featured {
  border-color: var(--accent-teal);
  box-shadow: 0 0 40px rgba(232,168,56,0.15);
}
.price-card.featured::before {
  content: 'Empfohlen';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent-teal); color: var(--bg-deep);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.25rem 1rem; border-radius: 50px;
}
.price-card:hover { transform: translateY(-3px); border-color: rgba(232,168,56,0.4); }
.price-type { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-teal); font-weight: 700; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem; }
.price-type svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; flex-shrink: 0; }
.price-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; }
.price-amount { font-size: 3.2rem; font-weight: 800; color: var(--text-primary); }
.price-amount sup { font-size: 1.1rem; font-weight: 600; vertical-align: super; }
.price-amount small { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.price-min { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.4rem; margin-bottom: 2rem; }
.price-features { list-style: none; margin-bottom: 2.5rem; }
.price-features li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.95rem; color: var(--text-muted); padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.price-features li:last-child { border-bottom: none; }
.price-features li .check { color: var(--accent-teal); flex-shrink: 0; margin-top: 3px; }
.price-tiers { margin-bottom: 2rem; }
.price-tier { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0.9rem; border-radius: 6px; margin-bottom: 0.35rem; font-size: 0.92rem; color: var(--text-muted); background: rgba(255,255,255,0.03); border: 1px solid var(--border); }
.price-tier-highlight { background: rgba(232,168,56,0.08); border-color: rgba(232,168,56,0.3); color: var(--text-primary); font-weight: 600; }
.price-tier span:last-child { font-weight: 700; color: var(--accent-teal); }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.about-grid { gap: 6rem; grid-template-columns: 1fr 1.6fr; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; margin-bottom: 1.2rem; line-height: 1.2; }
.contact-info p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; line-height: 1.8; }
.contact-item {
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  transition: border-color var(--transition);
}
.contact-item:hover { border-color: var(--accent-teal); }
.contact-item .ci { flex-shrink: 0; display: flex; align-items: center; }
.contact-item .ci svg { width: 32px; height: 32px; stroke: var(--accent-teal); stroke-width: 2; fill: none; }
.contact-item h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.3rem; }
.contact-item p { color: var(--text-muted); font-size: 1.05rem; margin: 0; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3.5rem;
}
.contact-form h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.55rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent-teal); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--bg-card); }
.form-success {
  display: none;
  background: rgba(232,168,56,0.1);
  border: 1px solid rgba(232,168,56,0.3);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  color: var(--accent-teal);
  font-weight: 600;
  margin-top: 1rem;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(232,168,56,0.25); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 1.8rem; cursor: pointer;
  font-weight: 600; font-size: 1.05rem;
}
.faq-q .arrow { color: var(--accent-teal); font-size: 1.2rem; transition: transform var(--transition); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 1.8rem 1.5rem; color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: rgba(10,13,19,0.98); padding: 2rem 5%; border-bottom: 1px solid var(--border); gap: 1.5rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero { text-align: center; padding: 0 5%; }
  .hero-features { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { justify-content: center; }

  section { padding: 6rem 5%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-banner { padding: 6rem 5%; }
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.35s; opacity: 0; }
.delay-4 { animation-delay: 0.5s; opacity: 0; }

/* Hero already seen this session – skip animations */
.hero-seen .fade-up { animation: none; opacity: 1; transform: none; }

/* ---------- Booking Calendar ---------- */
.booking-steps {
  display: flex; margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.step-tab {
  flex: 1; text-align: center; padding: 0.8rem;
  font-weight: 600; font-size: 0.95rem; color: var(--text-muted);
  cursor: pointer; position: relative;
  transition: color var(--transition);
}
.step-tab.active { color: var(--text-primary); }
.step-tab.active::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--accent-teal);
}
.booking-step-content { display: none; animation: fadeUp 0.4s ease forwards; }
.booking-step-content.active { display: block; }

.calendar-wrapper { margin-bottom: 1.5rem; }
.calendar-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; font-weight: 700; font-size: 1.1rem;
}
.cal-btn {
  background: var(--bg-surface); border: 1px solid var(--border);
  color: var(--text-primary); padding: 0.4rem 0.8rem; border-radius: 6px;
  cursor: pointer; transition: border-color var(--transition);
}
.cal-btn:hover { border-color: var(--accent-teal); color: var(--accent-teal); }

.calendar-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.4rem;
  text-align: center;
}
.cal-day-name { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; margin-bottom: 0.5rem; }
.cal-day {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.6rem 0; font-size: 0.9rem; cursor: pointer;
  transition: all var(--transition);
}
.cal-day:hover:not(.disabled):not(.empty) { border-color: var(--accent-teal); background: rgba(232,168,56,0.1); }
.cal-day.disabled { opacity: 0.3; cursor: not-allowed; background: transparent; border-color: transparent; }
.cal-day.empty { background: transparent; border: none; cursor: default; }
.cal-day.selected { background: var(--accent-teal); color: var(--bg-deep); border-color: var(--accent-teal); font-weight: 700; }

.time-slots {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 0.6rem;
  margin-top: 1rem;
}
.time-slot {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.5rem; text-align: center;
  font-size: 0.85rem; cursor: pointer; transition: all var(--transition);
}
.time-slot:hover { border-color: var(--accent-teal); }
.time-slot.selected { background: var(--accent-teal); color: var(--bg-deep); border-color: var(--accent-teal); font-weight: 700; }

.selected-datetime-display {
  background: rgba(232,168,56,0.06); border: 1px solid rgba(232,168,56,0.2);
  border-radius: 8px; padding: 1rem; margin-bottom: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.selected-datetime-display div { font-weight: 600; color: var(--accent-teal); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 99;
  background: #25D366; color: #fff;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: transform 0.3s;
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Live Status Badge ---------- */
.live-status {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 1rem; border-radius: 50px;
  margin-bottom: 1.5rem; letter-spacing: 0.05em;
}
.live-dot {
  width: 8px; height: 8px; background: #25D366; border-radius: 50%;
  box-shadow: 0 0 8px #25D366;
  animation: blink 1.5s infinite alternate;
}
@keyframes blink { from { opacity: 0.4; } to { opacity: 1; } }


/* ---------- Scroll Reveal ---------- */
.reveal-border:not(.in-view) {
  opacity: 0;
  transform: translateY(14px);
}

.reveal-border.in-view {
  animation: reveal-in 0.6s ease var(--reveal-delay, 0ms) both;
}

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Footer Logo Animation ---------- */
.footer-brand .logo-icon {
  animation: footer-pulse 3s ease-in-out infinite;
  transform-origin: center;
}
@keyframes footer-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.09); opacity: 0.85; }
}

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; }
.text-teal { color: var(--accent-teal); }
.text-gold { color: var(--accent-gold); }
