/* ==========================================================
   INDEX.CSS — Homepage Page Styles
   All original sections preserved + enhanced
   BUG FIXED: hero-title gold gradient (was flat cream)
   ========================================================== */

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../images/abida-1.webp') center / cover no-repeat;
  /* FIX: replaced background-attachment:fixed (breaks iOS) with JS parallax */
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(245,240,232,0.72) 0%, rgba(245,240,232,0.22) 55%, rgba(0,0,0,0.18) 100%);
  z-index: 1;
}
.hero-grid {
  position: relative; z-index: 2;
  width: 100%; max-width: 1420px; margin: 0 auto;
  display: flex; align-items: center; gap: 3rem;
  padding: 5rem 1.5rem;
}
.hero-text { flex: 1; }
.hero-badge {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.badge-line  { width: 40px; height: 1px; background: rgba(255,255,255,0.7); }
.badge-title { font-size: 0.82rem; letter-spacing: 4px; color: rgba(255,255,255,0.85); text-transform: uppercase; font-family: var(--font-label); }
.hero-title  { font-size: clamp(3.2rem, 9vw, 6rem); line-height: 1.05; margin-bottom: 1.5rem; }
/* ── hero title gradient ── */
.hero-title .gold-text {
  background: linear-gradient(135deg, #c9a84c 0%, #e8c060 45%, #9e7d2c 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.hero-subtitle { font-size: 1.35rem; color: rgba(255,245,220,0.92); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.7; font-weight: 300; text-shadow: 0 1px 10px rgba(0,0,0,0.45); }
.hero-buttons  { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.hero-image-static { flex: 1; max-width: 400px; perspective: 1000px; margin-top: 60px; }
.card-3d-inner {
  position: relative; border-radius: 24px; overflow: hidden;
  background: linear-gradient(145deg,#ffffff,#e6ddd0);
  box-shadow: 20px 20px 60px rgba(0,0,0,0.28), 0 0 0 2px var(--gold);
  transition: transform 0.12s ease;
  transform-style: preserve-3d;
}
.card-3d-img { width: 100%; height: 420px; object-fit: cover; object-position: top; display: block; border-radius: 24px; }
.card-3d-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.38) 0%, transparent 52%);
  pointer-events: none; border-radius: 24px;
}
@media(max-width:768px){
  .hero-grid       { flex-direction: column; text-align: center; padding: 6rem 1.2rem 3rem; }
  .hero-image-static { max-width: 280px; margin: 0 auto; }
  .hero-buttons    { justify-content: center; }
  .hero-badge      { justify-content: center; }
}

/* ─── VIDEO SECTION ─── */
.video-section { position: relative; height: 80vh; overflow: hidden; }
.video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-bg iframe {
  position: absolute; top: 50%; left: 50%;
  width: 177.78vh; min-width: 100%;
  height: 56.25vw; min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
}
.video-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(15,10,0,0.38) 0%, rgba(15,10,0,0.28) 100%);
  text-align: center; gap: 1rem;
}
.video-overlay .section-tag { color: rgba(201,168,76,0.9); letter-spacing: 5px; }
.video-overlay h2 { font-size: clamp(2.2rem, 5vw, 4rem); color: var(--ice); text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
@media(max-width:768px){ .video-section { height: 55vh; } }

/* ─── ELECTRIC NEUMORPHIC BOX ─── */
.electric-section { padding: 5rem 0; background: var(--beige); }
.electric-box {
  position: relative; max-width: 900px; margin: 0 auto;
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff, #e6ddd0);
  box-shadow: var(--neu-shadow);
  padding: 3.5rem 4rem;
  overflow: hidden;
}
.electric-box p {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.85; color: var(--black-soft);
  text-align: center; font-style: italic;
  position: relative; z-index: 1;
}
.electric-border {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; border-radius: 28px;
  z-index: 0;
}
@media(max-width:768px){ .electric-box { padding: 2.5rem 2rem; } }

/* ─── ESSENCE / WHY ABIDA (Glassmorphism) ─── */
.essence { padding: 6rem 0; background: linear-gradient(135deg, var(--ice), var(--beige)); }
.essence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.essence .glass-card { padding: 2.8rem 2rem; text-align: center; }
.essence .glass-card i { font-size: 2.2rem; color: var(--gold); margin-bottom: 1.2rem; display: block; }
.essence .glass-card h3 { font-size: 1.45rem; margin-bottom: 0.8rem; }
.essence .glass-card p  { color: var(--black-soft); line-height: 1.7; font-size: 0.95rem; }
@media(max-width:768px){ .essence-grid { grid-template-columns: 1fr; } }

/* ─── SELECT YOUR EVENT (Neumorphism) ─── */
.events { padding: 6rem 0; background: var(--beige); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 1rem; }
.ev-type-card.neumorph-card { padding: 2.5rem 2rem; text-align: center; cursor: pointer; }
.ev-type-card i    { font-size: 2.4rem; color: var(--purple); margin-bottom: 1.2rem; display: block; transition: transform .35s var(--ease); }
.ev-type-card:hover i { transform: scale(1.15) rotate(-5deg); color: var(--gold-dark); }
.ev-type-card h3   { font-size: 1.45rem; margin-bottom: .75rem; }
.ev-type-card p    { color: var(--black-soft); font-size: .93rem; line-height: 1.65; margin-bottom: 1.5rem; }
.ev-type-card .btn  { width: 100%; justify-content: center; }
.ev-type-card .btn i {
    margin-bottom: 0rem !important;
    
}
@media(max-width:768px){ .events-grid { grid-template-columns: 1fr; } }

/* ─── 3D CAROUSEL ─── */
.spin3d-section { padding: 6rem 0; background: linear-gradient(180deg, var(--ice), var(--beige)); overflow: hidden; }
.spin3d-container { position: relative; height: 480px; display: flex; align-items: center; justify-content: center; perspective: 1200px; }
.carousel3d { width: 200px; height: 280px; position: relative; transform-style: preserve-3d; transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); cursor: grab; }
.carousel3d:active { cursor: grabbing; }
.carousel3d .card {
  position: absolute; width: 200px; height: 280px;
  transform-style: preserve-3d; cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
}
.carousel3d .card .inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .6s ease; }
.carousel3d .card.flipped .inner { transform: rotateY(180deg); }
.carousel3d .card .front, .carousel3d .card .back {
  position: absolute; inset: 0;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: 20px; overflow: hidden;
}
.carousel3d .card .front {
  background: linear-gradient(145deg, #ffffff, #e6ddd0);
  box-shadow: 8px 8px 20px rgba(0,0,0,0.22), -4px -4px 14px rgba(255,255,255,0.8);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem; text-align: center;
  border: 1px solid rgba(201,168,76,0.18);
}
.card-icon-container { margin-bottom: 1rem; }
.card-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b8943a);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  box-shadow: 0 6px 18px rgba(201,168,76,0.4);
}
.carousel3d .card .front h2 {
  font-size: 1rem; margin-bottom: .3rem;
  /* override global h2 gradient — must be solid on white card */
  background: none;
  -webkit-text-fill-color: var(--black);
  color: var(--black);
}
.carousel3d .card .front .subtitle { font-size: .78rem; color: var(--purple); letter-spacing: 1px; }
.carousel3d .card .back {
  transform: rotateY(180deg);
  background: var(--black-soft);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
}
.carousel3d .card .back img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.carousel3d .card .back .back-text {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  width: 100%; padding: 1rem; text-align: center; color: #fff;
}
.carousel3d .card .back .back-text h3 { font-size: .95rem; margin-bottom: .25rem; }
.carousel3d .card .back .back-text p  { font-size: .72rem; opacity: .75; }
.spin3d-hint { text-align: center; margin-top: 2rem; font-size: .82rem; color: var(--purple-light); font-style: italic; }
@media(max-width:768px){
  .spin3d-section { padding: 3.5rem 0; }
  .spin3d-container { height: 240px; }
  .carousel3d, .carousel3d .card { width: 110px; height: 155px; }
  .carousel3d .card .front { padding: 0.9rem; }
  .card-icon { width: 38px; height: 38px; font-size: 1rem; }
  .card-icon-container { margin-bottom: 0.5rem; }
  .carousel3d .card .front h2 { font-size: 0.78rem; margin-bottom: 0.15rem; background: none; -webkit-text-fill-color: var(--black); color: var(--black); }
  .carousel3d .card .front .subtitle { font-size: 0.62rem; }
  .carousel3d .card .back .back-text h3 { font-size: 0.75rem; }
  .carousel3d .card .back .back-text p  { font-size: 0.6rem; }
}

/* ─── TRUST SECTION — Ultra Luxury ─── */
.law-trust-section {
  padding: 120px 24px 160px;
  background: linear-gradient(180deg, var(--beige) 0%, var(--ice) 40%, var(--beige) 100%);
  position: relative;
  /* overflow:hidden REMOVED — it breaks position:sticky on children */
}
.law-trust-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 15% 50%, rgba(201,168,76,0.07), transparent),
    radial-gradient(ellipse 40% 60% at 85% 30%, rgba(74,44,94,0.05), transparent);
  pointer-events: none;
  /* no overflow:hidden here either — keep as purely decorative layer */
}
.law-trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px;
  position: relative; z-index: 1;
  /* must be tall enough for sticky to engage */
  align-items: start;
}
.law-trust-intro {
  position: sticky;
  top: 110px;
  height: fit-content;
  /* self-contained — no overflow clipping above it */
}
.law-eyebrow {
  font-family: var(--font-label); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
.law-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
/* Heading override — rich gold-to-dark gradient, visible on light background */
.law-trust-intro h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem); margin-bottom: 22px;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: var(--purple) !important;
  color: var(--purple);
}
/* The word "Trust" uses .gold-text span — keep that gold */
.law-trust-intro h2 .gold-text {
  background: linear-gradient(135deg, #9e7d2c 0%, #c9a84c 40%, #f5d98a 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.law-trust-intro p  { color: var(--black-soft); line-height: 1.82; margin-bottom: 2.2rem; font-size: .97rem; }
.law-trust-timeline { position: relative; display: flex; flex-direction: column; gap: 28px; }

/* vertical gold line */
.law-trust-timeline::before {
  content: '';
  position: absolute; left: -15px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(201,168,76,0.5) 15%,
    rgba(201,168,76,0.8) 50%,
    rgba(201,168,76,0.5) 85%,
    transparent 100%
  );
}

.trust-card {
  position: relative;
  background: linear-gradient(145deg,
    rgba(255,255,255,0.72) 0%,
    rgba(245,240,232,0.55) 100%
  );
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 20px;
  padding: 40px 44px 40px 52px;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.03),
    0 20px 40px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.6s cubic-bezier(0.16,1,0.3,1),
              border-color 0.6s ease;
  /* animation removed — GSAP handles reveal in index.js */
}
/* tc-visible for JS compat */
.trust-card.tc-visible { opacity: 1; transform: translateX(0); }
.trust-card:hover {
  transform: translateX(-4px) translateY(-3px);
  box-shadow:
    0 8px 12px rgba(0,0,0,0.04),
    0 32px 64px rgba(0,0,0,0.10),
    0 0 0 1px rgba(201,168,76,0.35),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(201,168,76,0.42);
}

/* gold dot on the timeline line */
.trust-card::before {
  content: '';
  position: absolute; left: -20px; top: 44px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2), 0 0 12px rgba(201,168,76,0.5);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.trust-card:hover::before {
  box-shadow: 0 0 0 5px rgba(201,168,76,0.25), 0 0 20px rgba(201,168,76,0.7);
  transform: scale(1.4);
}

/* top-right gold accent line */
.trust-card::after {
  content: '';
  position: absolute; top: 0; right: 44px;
  width: 40px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0;
  transition: opacity 0.5s ease, width 0.5s ease;
}
.trust-card:hover::after { opacity: 1; width: 70px; }

.law-trust-index {
  font-family: var(--font-label);
  font-size: 11px; letter-spacing: .2em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.law-trust-index::after {
  content: ''; flex: 1; max-width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), transparent);
}
.trust-card h3 {
  font-size: 1.28rem; margin-bottom: .75rem; letter-spacing: .01em;
  /* override global h2 gradient — h3 uses default color */
  background: none;
  -webkit-text-fill-color: var(--black);
  color: var(--black);
}
.trust-card p { color: var(--black-soft); line-height: 1.78; font-size: .94rem; }

@media(max-width:768px){
  .law-trust-section { padding: 80px 20px 100px; }
  .law-trust-inner { grid-template-columns: 1fr; gap: 48px; }
  .law-trust-intro { position: relative; top: auto; }
  .law-trust-timeline::before { left: -10px; }
  .trust-card { padding: 32px 28px 32px 40px; opacity: 1; transform: none; }
  .trust-card::before { left: -15px; }
}

/* ─── TYPEWRITER QUOTE ─── */
.jn-quote-section { position: relative; min-height: 100vh; padding: 120px 20px 160px; isolation: isolate; }
.jn-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: scroll; z-index: -1; filter: brightness(.55) saturate(.75); }
.jn-quote-container { max-width: 1100px; margin: auto; }
.jn-quote-card {
  background: rgba(255,255,255,.06); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 22px; padding: 70px 80px; text-align: center;
  border: 1px solid rgba(201,168,76,0.22); box-shadow: 0 40px 100px rgba(0,0,0,.42);
}
.jn-quote-mark  { font-size: 5rem; color: rgba(201,168,76,.42); display: block; line-height: 1; margin-bottom: .5rem; }
.jn-quote-text  { color: #fff; font-size: clamp(1.6rem,3.2vw,3rem); line-height: 1.35; min-height: 160px; font-family: var(--font-heading); font-style: italic; }
.jn-cursor      { color: var(--gold); margin-left: 4px; opacity: 0; }
.jn-cursor.active { opacity: 1; animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.jn-author      { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 35px; }
.jn-line        { width: 70px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.jn-author-name { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; font-family: var(--font-label); }
.jn-cta         { margin-top: 55px; }
@media(max-width:768px){ .jn-quote-section{min-height:70vh;padding:80px 20px 100px} .jn-quote-card{padding:40px 28px} .jn-quote-text{font-size:1.55rem;min-height:110px} }

/* ─── ORBIT SECTION ─── */
.orbit-section {
  --box-size: 160px; --half-box: 80px;
  position: relative; width: 100%; min-height: 800px;
  display: flex; justify-content: center; align-items: center;
  background: linear-gradient(180deg, var(--beige), var(--ice));
  overflow: hidden;
}
.orbit-center img { width: 280px; border-radius: 50%; box-shadow: 0 20px 60px rgba(0,0,0,0.18); }
.orbit-box {
  position: absolute;
  width: var(--box-size); height: var(--box-size); border-radius: 50%;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  color: var(--black); font-weight: 700;
  box-shadow: 8px 8px 16px rgba(0,0,0,0.22), -8px -8px 16px rgba(255,255,255,0.62), 0 0 10px rgba(201,168,76,0.45);
  transition: all .28s cubic-bezier(.2,.8,.2,1); cursor: grab;
}
.orbit-box:active   { cursor: grabbing; }
.orbit-box .title   { font-size: 28px; line-height: 1; font-family: var(--font-heading); }
.orbit-box .subtitle{ font-size: 19px; margin-top: 4px; font-weight: 600; }
.orbit-box:hover { transform: scale(1.08); box-shadow: 12px 12px 26px rgba(0,0,0,0.26),-12px -12px 26px rgba(255,255,255,0.72),0 0 28px rgba(201,168,76,0.56); }
.runner { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; }
.runner circle { fill: none; stroke: url(#glow); stroke-width: 3; stroke-dasharray: 40 260; stroke-linecap: round; animation: dashmove 4s linear infinite; filter: drop-shadow(0 0 6px var(--gold)); }
@keyframes dashmove { to { stroke-dashoffset: -300; } }
.box1{top:12%;left:18%} .box2{top:12%;right:18%} .box3{bottom:22%;left:14%} .box4{bottom:22%;right:14%} .box5{bottom:2%;left:calc(52% - var(--half-box))}
@media(max-width:768px){
  .orbit-section{--box-size:120px;display:grid;grid-template-columns:repeat(2,1fr);gap:18px;justify-items:center;padding:40px 18px;min-height:auto}
  .orbit-center{display:none}
  .orbit-box{position:static;width:var(--box-size);height:var(--box-size);transform:none!important;cursor:default}
  .orbit-box .title{font-size:22px} .orbit-box .subtitle{font-size:13px}
}

/* ─── ABOUT ARTIST ─── */
.about-artist { padding: 7rem 0; background: var(--beige); }
.about-grid   { display: flex; gap: 3.5rem; align-items: center; flex-wrap: wrap; }
.about-image  { flex: 1; min-width: 280px; max-width: 420px; }
.about-text   { flex: 1; min-width: 280px; }
.about-text h2 { font-size: clamp(1.8rem,3vw,2.6rem); margin-bottom: 1rem; }
.about-text p  { color: var(--black-soft); line-height: 1.75; margin-bottom: 1rem; font-size: .96rem; }
.about-highlights { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.5rem; }
.about-highlights span { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .9rem; }
.about-highlights i { color: var(--gold); }

/* ─── GALLERY SLIDER + LIGHTBOX ─── */
.gallery { padding: 7rem 0; background: var(--ice); }
.gallery-slider-wrapper { position: relative; overflow: hidden; }
.gallery-slider { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.gallery-slider::-webkit-scrollbar { display: none; }
.gallery-slide { flex: 0 0 auto; width: min(80vw,350px); scroll-snap-align: start; border-radius: 20px; overflow: hidden; cursor: pointer; }
.gallery-slide img { width: 100%; height: 300px; object-fit: cover; transition: transform .4s var(--ease); }
.gallery-slide:hover img { transform: scale(1.05); }
.gallery-pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.gallery-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--beige-border); cursor: pointer; transition: all .3s; }
.gallery-dot.active { background: var(--gold); width: 26px; border-radius: 5px; }
.lightbox { display: none; position: fixed; z-index: 9999; inset: 0; background: rgba(0,0,0,0.92); justify-content: center; align-items: center; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 12px; box-shadow: 0 0 60px rgba(0,0,0,0.6); }
.lightbox-close { position: absolute; top: 20px; right: 36px; color: #fff; font-size: 42px; cursor: pointer; line-height: 1; transition: color .3s; }
.lightbox-close:hover { color: var(--gold); }

/* ─── WHAT TO EXPECT ─── */
.expect { padding: 6rem 0; background: var(--beige); }
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.expect .neumorph-card { padding: 2.5rem 2rem; text-align: center; }
.expect .neumorph-card i  { font-size: 2.2rem; color: var(--gold-dark); margin-bottom: 1.1rem; display: block; }
.expect .neumorph-card h3 { font-size: 1.3rem; margin-bottom: .75rem; }
.expect .neumorph-card p  { color: var(--black-soft); font-size: .93rem; line-height: 1.65; }
@media(max-width:768px){ .expect-grid { grid-template-columns: 1fr; } }

/* ─── BOOKING FORM (homepage) ─── */
.booking-section { padding: 7rem 0; background: linear-gradient(180deg, var(--ice), var(--beige)); }
.glass-form {
  background: var(--glass-bg); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border); border-radius: var(--r-xl);
  padding: 3rem; box-shadow: 0 30px 50px rgba(0,0,0,.09);
  max-width: 820px; margin: 0 auto;
}
.glass-form h3     { text-align: center; font-size: 1.7rem; margin-bottom: 2rem; }
.form-row          { display: flex; gap: 1.4rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.form-group        { flex: 1; min-width: 200px; }
.form-group label  { display: block; margin-bottom: .38rem; font-weight: 600; font-size: .9rem; color: var(--black-soft); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .88rem 1.15rem;
  border-radius: var(--r-pill); border: 1.5px solid #ddd;
  background: #fff; font-size: .93rem;
  transition: border-color .3s, box-shadow .3s;
}
.form-group textarea { border-radius: var(--r-md); resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.form-group.full    { width: 100%; flex: none; }
.form-note          { text-align: center; margin-top: .9rem; font-size: .83rem; color: #888; }
@media(max-width:768px){ .glass-form { padding: 2rem 1.4rem; } .form-row { flex-direction: column; gap: 1rem; } }

/* ─── CONTACT DETAILS ─── */
.contact-details { padding: 7rem 0; background: var(--beige); }
.contact-grid    { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.contact-card    { text-align: center; flex: 1; min-width: 200px; max-width: 260px; }
.contact-card i  { font-size: 2.4rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.contact-card h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.contact-card p  { color: var(--black-soft); font-size: .9rem; margin-bottom: 1.2rem; }
.contact-card a  { display: inline-block; color: var(--gold-dark); font-weight: 600; font-size: .9rem; transition: color .3s; }
.contact-card a:hover { color: var(--purple); }

/* ─── YOUTUBE FACADE (replaces autoplay iframe) ─── */
.yt-facade {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden;
}
.yt-facade img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.85;
  transition: opacity 0.35s;
}
.yt-facade:hover img { opacity: 0.68; }
.yt-play-btn {
  position: relative; z-index: 2;
  transition: transform 0.3s var(--ease);
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.55));
}
.yt-facade:hover .yt-play-btn { transform: scale(1.14); }

/* ─── FORM SUCCESS MESSAGE ─── */
.form-success-msg {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--r-md);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.form-success-msg i { font-size: 1.1rem; }
