/* ── Reset & Base ───────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #090909;
  --color-surface: rgba(255,255,255,0.04);
  --color-text: #f5f1e8;
  --color-muted: #d5cbbb;
  --color-accent: #c7a66a;
  --color-accent-hover: #ad8546;
  --color-border: rgba(255,255,255,0.10);
  --color-highlight: rgba(255,255,255,0.06);
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius: 10px;
  --shadow: 0 24px 60px rgba(0,0,0,0.35);
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(199,166,106,0.10), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.05), transparent 20%),
    linear-gradient(180deg, #070707 0%, #101010 100%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-hover);
}

/* ── Container ─────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Header ────────────────────────────────────── */
.site-header {
  backdrop-filter: blur(16px);
  background: rgba(9, 9, 9, 0.75);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav nav {
  display: flex;
  gap: 1.5rem;
}

.nav nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.2s;
}

.nav nav a:hover,
.nav nav a.active {
  color: var(--color-accent);
}

/* ── Page Title ────────────────────────────────── */
.page-title {
  padding: 3.5rem 0 2rem;
  text-align: center;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.page-title h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

.location-badge {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.5rem 1.25rem;
  background: var(--color-highlight);
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── Section ───────────────────────────────────── */
.section {
  padding: 2rem 0 4rem;
}

/* ── Pricing Grid ──────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.price-card:hover {
  background: rgba(199, 166, 106, 0.12);
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.price-card h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.price-card .label {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.price-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.price-card ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 0.4rem;
}

.price-card ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.price-card .btn {
  margin-top: auto;
}

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
}

.btn-primary {
  background: linear-gradient(180deg, #d7b77d 0%, #b98e47 100%);
  color: #111;
  box-shadow: 0 4px 12px rgba(185, 142, 71, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #e0c48e 0%, #c7a66a 100%);
  color: #111;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-outline {
  background: rgba(255,255,255,0.03);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: #111;
}

/* ── Booking Page ──────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-option {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-option:hover {
  background: rgba(199, 166, 106, 0.12);
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-option.selected {
  border-color: var(--color-accent);
  background: var(--color-highlight);
  box-shadow: 0 0 0 1px var(--color-accent);
}

.service-option input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.service-option .service-info {
  flex: 1;
}

.service-option .service-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.service-option .service-price {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
}

.service-option .service-desc {
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* ── Contact Form ──────────────────────────────── */
.booking-layout > div:last-child {
  margin-top: calc(1.2rem * 1.35 + 1rem);
}

.contact-form {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.contact-form:hover {
  background: rgba(199, 166, 106, 0.12);
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.contact-form h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.contact-form .form-subtitle {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  background: rgba(255,255,255,0.07);
  color: var(--color-text);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-text);
  color: #111;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form .btn {
  width: 100%;
  padding: 0.85rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ── How It Works ─────────────────────────────── */
.how-it-works {
  padding: 4rem 0;
  background: var(--color-highlight);
}

.how-it-works h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.how-it-works .intro,
.how-it-works .closing {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 1.75rem;
}

.steps {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.step {
  background: var(--color-surface);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.step:hover {
  background: rgba(199, 166, 106, 0.12);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  line-height: 1.7;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* ── Footer ────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 2rem;
}

/* ── Success Message ───────────────────────────── */
.success-message {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  min-height: 60vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.success-message.visible {
  display: flex;
}

.success-message h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.success-message p {
  color: var(--color-muted);
  font-size: 1.15rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.success-content {
  animation: fadeInContent 0.6s ease forwards;
}

.success-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.success-buttons .btn {
  min-width: 220px;
  text-align: center;
}

/* Heart animation overlay */
.heart-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.heart-svg {
  width: 60px;
  height: 60px;
  animation: heartGrow 1.6s ease-out forwards;
  opacity: 1;
}

@keyframes heartGrow {
  0% {
    width: 60px;
    height: 60px;
    opacity: 1;
  }
  70% {
    width: 600px;
    height: 600px;
    opacity: 0.6;
  }
  100% {
    width: 900px;
    height: 900px;
    opacity: 0;
  }
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 768px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-layout > div:last-child {
    margin-top: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .page-title h1 {
    font-size: 1.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav {
    height: 56px;
  }

  .brand {
    font-size: 1.1rem;
  }

  .how-it-works h2 {
    font-size: 1.65rem;
  }

  .quiz-question-title {
    font-size: 1.5rem;
  }

  .quiz-option {
    padding: 1rem 1.25rem;
  }

  .quiz-nav {
    flex-direction: column;
  }

  .result-card {
    padding: 1.5rem;
  }

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

  .about-photos {
    grid-template-columns: 1fr;
  }


  .about-photo {
    height: 380px;
  }
}

/* ── About ────────────────────────────────────── */
.about-content {
  max-width: 960px;
  margin: 0 auto;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.about-photo:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* ── Testimonials ─────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.testimonial-card:hover {
  background: rgba(199, 166, 106, 0.12);
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-author {
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0.15rem;
}

.testimonial-event {
  font-size: 0.85rem;
  color: var(--color-accent);
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.testimonials-cta p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.testimonials-cta .btn {
  padding: 0.85rem 2.5rem;
}

/* ── Quiz ─────────────────────────────────────── */
.quiz-screen {
  display: none;
}

.quiz-screen.active {
  display: block;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: var(--radius);
}

.quiz-progress {
  width: 100%;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), #d7b77d);
  border-radius: 2px;
  width: 0%;
  transition: width 0.4s ease;
}

.quiz-step {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.quiz-question-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
}

.quiz-option {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  width: 100%;
}

.quiz-option:hover {
  background: rgba(199, 166, 106, 0.12);
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.quiz-option.selected {
  border-color: var(--color-accent);
  background: rgba(199, 166, 106, 0.18);
  box-shadow: 0 0 0 1px var(--color-accent);
}

.quiz-option:disabled {
  cursor: default;
  pointer-events: none;
}

.quiz-option-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-highlight);
  border: 1px solid var(--color-border);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.quiz-option.selected .quiz-option-label {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #111;
}

.quiz-option-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.quiz-option.selected .quiz-option-check {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #111;
}

.quiz-select-hint {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.quiz-nav {
  display: none;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 640px;
  align-items: center;
}

.quiz-prev-btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

.quiz-next-btn {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.quiz-next-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.quiz-option-text {
  flex: 1;
  font-weight: 500;
}

.quiz-option-desc {
  font-weight: 400;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.quiz-fade-in {
  animation: none;
}

@keyframes quizFadeIn {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.result-card {
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 4px 30px rgba(199, 166, 106, 0.15);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.result-card:hover {
  background: rgba(199, 166, 106, 0.12);
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.result-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.result-best-fit h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.result-best-fit ul {
  list-style: none;
}

.result-best-fit ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.result-best-fit ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.quiz-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.quiz-cta:hover {
  background: rgba(199, 166, 106, 0.12);
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.quiz-cta p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.quiz-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.quiz-cta-buttons .btn {
  padding: 0.85rem 2rem;
}

.quiz-retake {
  font-size: 0.85rem;
  padding: 0.5rem 1.5rem;
  opacity: 0.7;
}

.quiz-retake:hover {
  opacity: 1;
}

/* ── Gallery ───────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.gallery-item:hover {
  background: rgba(199, 166, 106, 0.12);
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* ── Admin Bar ────────────────────────────────── */
.admin-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 1.5rem;
}

#admin-logged-in {
  display: flex;
  align-items: center;
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

/* ── Admin Login Form ─────────────────────────── */
.admin-login-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 400px;
  margin: 0 auto 2rem;
}

.admin-login-form .form-group {
  margin-bottom: 1rem;
}

.admin-login-form .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.admin-login-form .form-group input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  background: rgba(255,255,255,0.04);
  color: var(--color-text);
  transition: border-color 0.2s;
}

.admin-login-form .form-group input:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* ── FAQ Accordion ────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 2.5rem;
}

.faq-category-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--color-surface);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.faq-item:hover {
  background: rgba(199, 166, 106, 0.08);
  border-color: rgba(199, 166, 106, 0.4);
}

.faq-item.open {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(199, 166, 106, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-muted);
}

.faq-answer a {
  color: var(--color-accent);
  text-decoration: underline;
}

.faq-answer a:hover {
  color: var(--color-accent-hover);
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.faq-cta p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.faq-cta .btn {
  padding: 0.85rem 2.5rem;
}

/* FAQ mini section for other pages */
.faq-mini {
  padding: 3rem 0;
}

.faq-mini h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.faq-mini .faq-list {
  margin-bottom: 1.5rem;
}

.faq-mini .faq-more {
  text-align: center;
  margin-top: 1.5rem;
}

.faq-mini .faq-more a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
}

.faq-mini .faq-more a:hover {
  color: var(--color-accent-hover);
}

/* Quiz Carousel */
.quiz-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.quiz-carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.quiz-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.quiz-carousel-slide.active {
  opacity: 1;
}

.quiz-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quiz-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  line-height: 1;
}

.quiz-carousel-btn:hover {
  background: rgba(199, 166, 106, 0.7);
}

.quiz-carousel-prev {
  left: 12px;
}

.quiz-carousel-next {
  right: 12px;
}

.quiz-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.quiz-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, border-color 0.25s;
}

.quiz-carousel-dot.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.quiz-carousel-dot:hover {
  border-color: var(--color-accent);
}

@media (max-width: 768px) {
  .quiz-carousel {
    border-radius: 10px;
  }
  .quiz-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  .quiz-carousel-prev { left: 8px; }
  .quiz-carousel-next { right: 8px; }
}
