/* ============================================
   Zaland Custom Tailoring — Stylesheet
   ============================================ */

/* --- Custom Properties --- */
:root {
  --navy: #1A1A1A;
  --charcoal: #2A2A2A;
  --gold: #C9A96E;
  --gold-hover: #D4B97A;
  --gold-dark: #B8944F;
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --light-gray: #B8B8B8;
  --dark-text: #2C2C2C;
  --medium-text: #555555;
  --overlay: rgba(26, 26, 26, 0.75);

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Raleway', 'Segoe UI', Arial, sans-serif;
  --font-script: 'Great Vibes', cursive;

  --max-width: 1200px;
  --nav-height: 80px;
  --radius: 4px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Skip to Content --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  z-index: 10000;
  border-radius: var(--radius);
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-text);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

p {
  margin-bottom: 1rem;
}

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

.section {
  padding: 80px 0;
}

.section--cream {
  background-color: var(--cream);
  color: var(--dark-text);
}

.section--cream h2,
.section--cream h3 {
  color: var(--dark-text);
}

.section--white {
  background-color: var(--white);
  color: var(--dark-text);
}

.section--white h2,
.section--white h3 {
  color: var(--dark-text);
}

.section--navy {
  background-color: var(--navy);
  color: var(--light-gray);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--charcoal {
  background-color: var(--charcoal);
  color: var(--light-gray);
}

.section--charcoal h2,
.section--charcoal h3 {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  min-height: 48px;
  text-align: center;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}

.btn--gold:hover {
  background: var(--gold-hover);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.btn--outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--large {
  padding: 18px 48px;
  font-size: 1rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 1000;
  border-bottom: none;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.navbar__logo-img {
  height: 74px;
  width: auto;
  filter: saturate(1.3) brightness(1.1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 24px rgba(255, 255, 255, 0.15));
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  color: var(--light-gray);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--gold);
}

.navbar__links a.active::after,
.navbar__links a:hover::after {
  width: 100%;
}

.navbar__book {
  margin-left: 8px;
  padding: 10px !important;
  font-size: 0.85rem;
  min-height: auto;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
}

.navbar__book::after {
  display: none !important;
}

.navbar__book:hover,
.navbar__book.active {
  color: var(--navy) !important;
  background: var(--gold-hover);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  position: relative;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Nav --- */
@media (max-width: 768px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1A1A1A;
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
  }

  .navbar__links.open {
    display: flex;
  }

  .navbar__links a {
    font-size: 1.4rem;
    padding: 14px 24px;
    text-align: center;
    color: var(--white);
  }

  .navbar__links a::after {
    display: none;
  }

  .navbar__book {
    margin: 16px auto 0;
    width: auto;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.88) 0%, rgba(26, 26, 26, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 650px;
  margin-left: 5%;
}

.hero__content h1 {
  margin-bottom: 24px;
  color: var(--white);
}

.hero__content p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  color: var(--light-gray);
}

/* --- Page Banner --- */
.page-banner {
  position: relative;
  padding: calc(var(--nav-height) + 60px) 24px 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.page-banner h1 {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.page-banner p {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-size: 1.1rem;
  color: var(--light-gray);
}

/* --- Service Cards (Home — Image-based) --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: transparent;
  overflow: hidden;
  transition: all var(--transition);
  text-align: center;
}

.service-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--charcoal);
  overflow: hidden;
  border-radius: var(--radius);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 20px 8px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--dark-text);
}

.service-card p {
  font-size: 1rem;
  color: var(--medium-text);
  margin-bottom: 0;
  line-height: 1.7;
}

/* --- The Zaland Difference --- */
.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .difference-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.difference-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.difference-item__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.difference-item__icon svg {
  width: 100%;
  height: 100%;
}

.difference-item__label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.review-card__stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--medium-text);
  font-style: italic;
  margin-bottom: 20px;
}

.review-card__author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-text);
}

/* --- Gallery Carousel --- */
.gallery-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0;
  scrollbar-width: none;
}

.gallery-carousel__track::-webkit-scrollbar {
  display: none;
}

.gallery-carousel__item {
  flex: 0 0 auto;
  width: 240px;
  height: 320px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--charcoal);
  scroll-snap-align: start;
}

.gallery-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-carousel__item:hover img {
  transform: scale(1.05);
}

.gallery-carousel__btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.gallery-carousel__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-carousel__btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 600px) {
  .gallery-carousel__btn {
    display: none;
  }

  .gallery-carousel__item {
    width: 200px;
    height: 280px;
  }
}

/* --- Trust Strip (legacy, kept for other pages) --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-item__label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light-gray);
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(201, 169, 110, 0.12);
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.cta-section h2 {
  margin-bottom: 16px;
  color: var(--white);
}

.cta-section p {
  max-width: 550px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  color: var(--light-gray);
}

/* --- Services Page Detail --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail--reverse {
    direction: rtl;
  }

  .service-detail--reverse > * {
    direction: ltr;
  }
}

.service-detail__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.12);
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__placeholder {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  opacity: 0.5;
}

.service-detail__content h3 {
  margin-bottom: 16px;
  color: var(--gold);
}

.service-detail__content ul {
  margin-top: 16px;
}

.service-detail__content li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.98rem;
}

.service-detail__content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

/* --- Pricing Grid --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
  }
}

/* --- Pricing Card --- */
.pricing-card {
  background: var(--charcoal);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
}

.pricing-card h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.pricing-card__unit {
  font-size: 1rem;
  color: var(--light-gray);
  margin-top: 4px;
  margin-bottom: 8px;
}

.pricing-card__note {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.pricing-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* --- Gallery --- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--medium-text);
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: var(--radius);
  transition: all var(--transition);
  min-height: 44px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  background: var(--charcoal);
  border: 1px solid rgba(201, 169, 110, 0.08);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
}

.gallery-item__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  opacity: 0.4;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h3 {
  color: var(--gold);
  margin-bottom: 24px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info__icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__icon svg {
  width: 100%;
  height: 100%;
}

.contact-info__item a {
  font-size: 1.05rem;
}

.contact-info__item p {
  margin-bottom: 0;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.15);
  line-height: 0;
  align-self: start;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* --- Booking Section — Hero Banner --- */
.booking-section {
  padding: 80px 0;
  background: var(--cream);
  color: var(--dark-text);
}

.booking-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  overflow: visible;
  margin-bottom: 0;
}

.booking-card h2 {
  text-align: center;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.booking-card > p {
  text-align: center;
  color: #666;
  margin-bottom: 32px;
}

/* --- Booking Wizard Card --- */
.booking-wizard {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12), 0 2px 16px rgba(0, 0, 0, 0.06);
  margin-top: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Step Indicator */
.wizard-steps {
  display: flex;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid #eee;
  background: #fafaf8;
}

.wizard-steps__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #aaa;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.wizard-steps__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.wizard-steps__item.active {
  color: var(--dark-text);
  font-weight: 600;
}

.wizard-steps__item.active::after {
  background: var(--gold);
}

.wizard-steps__item.completed {
  color: var(--gold);
}

.wizard-steps__item.completed::after {
  background: var(--gold);
  opacity: 0.4;
}

.wizard-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #ccc;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.wizard-steps__item.active .wizard-steps__num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.wizard-steps__item.completed .wizard-steps__num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.wizard-steps__line {
  display: none;
}

.wizard-steps__label {
  display: none;
}

@media (min-width: 600px) {
  .wizard-steps__label {
    display: inline;
  }
}

/* Wizard Body */
.wizard-body {
  display: flex;
  gap: 0;
  min-height: 380px;
}

.wizard-main {
  flex: 1;
  padding: 36px 32px;
  min-width: 0;
}

/* Wizard Panels */
.wizard-panel {
  display: none;
  animation: wizardFadeIn 0.35s ease;
}

.wizard-panel.active {
  display: block;
}

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

/* Step 1: Service Cards */
.wizard-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  flex: 0 0 auto;
  width: 260px;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .wizard-services {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 520px) {
  .wizard-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wizard-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 8px 14px;
  background: #fafaf8;
  border: 2px solid #e8e4dc;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-body);
}

.wizard-service-card:hover {
  border-color: var(--gold);
  background: #fdf9f2;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.12);
}

.wizard-service-card.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fdf9f2, #f7f0e2);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.18);
}

.wizard-service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.wizard-service-card.active .wizard-service-card__icon {
  transform: scale(1.08);
}

.wizard-service-card__icon svg {
  width: 100%;
  height: 100%;
}

.wizard-service-card__name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--dark-text);
  text-transform: uppercase;
}

/* Step 1: Services + Date/Time side by side */
.wizard-panel[data-panel="1"] > .wizard-services {
  margin-bottom: 0;
}

.wizard-panel[data-panel="1"] {
  display: none;
}

.wizard-panel[data-panel="1"].active {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .wizard-panel[data-panel="1"].active {
    flex-direction: column;
  }
}

.wizard-datetime {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}

.wizard-calendar {
  flex: 1;
  min-width: 260px;
}

.wizard-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.wizard-calendar__month {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-text);
}

.wizard-calendar__nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wizard-calendar__nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.wizard-calendar__nav svg {
  width: 16px;
  height: 16px;
}

.wizard-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}

.wizard-calendar__weekdays span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #999;
  padding: 6px 0;
  letter-spacing: 0.5px;
}

.wizard-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.wizard-calendar__day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark-text);
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.wizard-calendar__day:hover:not(.disabled):not(.empty) {
  background: rgba(201, 169, 110, 0.15);
}

.wizard-calendar__day.selected {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
}

.wizard-calendar__day.today {
  border: 2px solid var(--gold);
}

.wizard-calendar__day.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.wizard-calendar__day.empty {
  cursor: default;
}

/* Time Slots */
.wizard-times {
  flex: 0 0 auto;
  min-width: 140px;
}

.wizard-times h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.wizard-times__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wizard-time-slot {
  padding: 10px 20px;
  border: 1.5px solid #e0dcd4;
  border-radius: 8px;
  background: #fafaf8;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark-text);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.wizard-time-slot:hover {
  border-color: var(--gold);
  background: #fdf9f2;
}

.wizard-time-slot.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  font-weight: 600;
}

.wizard-time-slot.disabled {
  color: #ccc;
  border-color: #eee;
  background: #f7f7f7;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Step 3: Details Form */
.wizard-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
}

.wizard-details__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.wizard-details__field label span {
  text-transform: none;
  font-weight: 400;
  color: #999;
  letter-spacing: 0;
}

.wizard-details__field input,
.wizard-details__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark-text);
  background: #fafaf8;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.wizard-details__field input:focus,
.wizard-details__field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.wizard-details__field textarea {
  resize: vertical;
}

/* Step 4: Confirmation */
.wizard-confirm {
  text-align: center;
  padding: 20px 0;
}

.wizard-confirm__icon {
  width: 64px;
  height: 64px;
  color: var(--gold);
  margin: 0 auto 20px;
}

.wizard-confirm__icon svg {
  width: 100%;
  height: 100%;
}

.wizard-confirm h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark-text);
  margin-bottom: 24px;
}

.wizard-confirm__details {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  background: #fafaf8;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px 36px;
  text-align: left;
  margin-bottom: 20px;
}

.wizard-confirm__details .confirm-row {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
}

.wizard-confirm__details .confirm-row span:first-child {
  color: #888;
  min-width: 80px;
}

.wizard-confirm__details .confirm-row span:last-child {
  font-weight: 600;
  color: var(--dark-text);
}

.wizard-confirm__note {
  font-size: 0.88rem;
  color: #888;
  max-width: 400px;
  margin: 0 auto;
}

/* Summary Sidebar */
.wizard-summary {
  width: 260px;
  flex-shrink: 0;
  background: #fafaf8;
  border-left: 1px solid #eee;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}

.wizard-summary h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark-text);
  margin-bottom: 24px;
}

.wizard-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 0.82rem;
}

.wizard-summary__row span {
  color: #888;
}

.wizard-summary__row strong {
  color: var(--dark-text);
  font-weight: 600;
  text-align: right;
}

.wizard-summary__row--total {
  padding-top: 12px;
}

.wizard-summary__row--total strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
}

.wizard-summary__divider {
  height: 1px;
  background: #e0dcd4;
  margin: 12px 0;
}

.wizard-summary__btn {
  margin-top: auto;
  width: 100%;
  padding: 14px 16px;
  font-size: 0.78rem;
  letter-spacing: 2px;
}

.wizard-summary__back {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s ease;
}

.wizard-summary__back:hover {
  color: var(--gold);
}

/* Responsive: Stack sidebar below on small screens */
@media (max-width: 768px) {
  .wizard-body {
    flex-direction: column;
  }

  .wizard-summary {
    width: 100%;
    border-left: none;
    border-top: 1px solid #eee;
    padding: 24px;
  }

  .wizard-main {
    padding: 24px 20px;
  }

  .wizard-datetime {
    flex-direction: column;
  }

  .wizard-times {
    min-width: unset;
  }

  .wizard-times__list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .wizard-time-slot {
    flex: 1;
    min-width: 90px;
  }
}

/* --- Booking Bottom (FAQ / Contact) --- */
.booking-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 48px 0 64px;
}

@media (min-width: 768px) {
  .booking-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-bottom h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

/* FAQ Accordion */
.booking-faq {
  margin-bottom: 0;
}

.faq-item {
  border-bottom: 1px solid #e0dcd4;
}

.faq-item__q {
  width: 100%;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-item__q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .faq-item__q::after {
  content: '−';
}

.faq-item__q:hover {
  color: var(--gold);
}

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

.faq-item.open .faq-item__a {
  max-height: 200px;
  padding-bottom: 14px;
}

.faq-item__a p {
  font-size: 0.88rem;
  color: var(--medium-text);
  line-height: 1.6;
  margin: 0;
}

.booking-cancellation p {
  font-size: 0.88rem;
  color: var(--medium-text);
  line-height: 1.6;
}


/* Cal.com overlay */
.booking-cal-overlay {
  padding: 48px 0;
  background: var(--cream);
}

.booking-cal-overlay .booking-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 32px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: visible;
  position: relative;
}

.booking-cal-overlay .booking-card h2 {
  text-align: center;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.booking-cal-overlay .booking-card > p {
  text-align: center;
  color: #666;
  margin-bottom: 32px;
}

.booking-cal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2rem;
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.booking-cal-close:hover {
  color: var(--dark-text);
}

.booking-embed {
  min-height: 500px;
  border-radius: 8px;
  overflow: visible;
}

/* Gold line utility */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto;
}

/* --- Wedding Page --- */
.wedding-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .wedding-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wedding-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--charcoal);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.wedding-feature__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  flex-shrink: 0;
}

.wedding-feature__icon svg {
  width: 100%;
  height: 100%;
}

.wedding-feature h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--white);
}

.wedding-feature p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--light-gray);
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding: 80px 0 0;
}

.footer .contact-info h2 {
  color: var(--white);
}

.footer .contact-info__item p,
.footer .contact-info__item strong {
  color: var(--light-gray);
}

.footer .contact-info__item a {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  margin-top: 48px;
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

/* --- Utility --- */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
