/* ========================================
   THE MERCURY PARTY HOUSE - styles.css
   ======================================== */

/* ---- CSS Variables ---- */
:root {
  --navy: #0B1F3A;
  --navy-dark: #071529;
  --gold: #C9A14A;
  --gold-light: #e0bc72;
  --gold-dark: #a07d2e;
  --cream: #F8F5F0;
  --cream-dark: #ede8e0;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #d1d5db;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --shadow-sm: 0 2px 8px rgba(11,31,58,0.08);
  --shadow-md: 0 4px 20px rgba(11,31,58,0.12);
  --shadow-lg: 0 8px 40px rgba(11,31,58,0.18);
  --shadow-gold: 0 4px 24px rgba(201,161,74,0.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  --container-max: 1200px;
  --section-py: 90px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-muted); margin-bottom: 1rem; }

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 50px;
}
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-subtitle { margin-bottom: 0; }

.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-full);
  margin: 18px 0 28px;
}
.gold-divider.center { margin: 18px auto 28px; }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.bg-navy { background-color: var(--navy); }
.bg-cream { background-color: var(--cream); }
.bg-white { background-color: var(--white); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201,161,74,0.4);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-secondary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ---- Preloader ---- */
#preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner {
  text-align: center;
  color: var(--gold);
}
.preloader-inner .logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  margin-top: 16px;
}
.spinner {
  width: 50px; height: 50px;
  border: 3px solid rgba(201,161,74,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Scroll To Top ---- */
#scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
  z-index: 999;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { transform: translateY(-3px); background: var(--gold-light); }

/* ======================================
   NAVBAR
   ====================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-slow);
}
.navbar.scrolled {
  background: var(--navy);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(11,31,58,0.3);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo .logo-text span { display: block; font-size: 0.7rem; font-family: var(--font-body); letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-cta { margin-left: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================
   PAGE HEADER BANNER (inner pages)
   ====================================== */
.page-header {
  position: relative;
  height: 380px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-header .bg-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.page-header:hover .bg-image { transform: scale(1); }
.page-header .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.85) 0%, rgba(11,31,58,0.6) 100%);
}
.page-header .content {
  position: relative; z-index: 2;
  color: var(--white);
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: 0.65rem; }

/* ======================================
   HERO SECTION
   ====================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1920&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 12s ease infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11,31,58,0.88) 0%,
    rgba(11,31,58,0.65) 60%,
    rgba(11,31,58,0.80) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  background: rgba(201,161,74,0.12);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201,161,74,0.3);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 .highlight { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 38px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.hero-scroll i { font-size: 1.1rem; color: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ======================================
   ABOUT SECTION
   ====================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.about-image .experience-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-image .experience-badge .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.about-image .experience-badge .lbl {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-content .section-label { display: block; }
.about-content p { margin-bottom: 1.2rem; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: var(--navy);
  border-radius: var(--radius-md);
}
.stat-item { text-align: center; }
.stat-item .stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item .stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* ======================================
   EVENTS WE HOST
   ====================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.event-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 360px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.event-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.event-card:hover img { transform: scale(1.08); }
.event-card .event-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,31,58,0.88) 0%, rgba(11,31,58,0.2) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: var(--transition);
}
.event-card:hover .event-overlay {
  background: linear-gradient(0deg, rgba(11,31,58,0.95) 0%, rgba(11,31,58,0.4) 60%);
}
.event-card .event-icon {
  width: 48px; height: 48px;
  background: rgba(201,161,74,0.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.event-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 8px; }
.event-card p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin: 0; }

/* ======================================
   GALLERY PREVIEW
   ====================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(11,31,58,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay i {
  font-size: 2rem;
  color: var(--white);
  background: rgba(201,161,74,0.85);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.gallery-center { text-align: center; }

/* Full gallery page grid */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  color: var(--gold);
}
.gallery-item.hidden { display: none; }

/* ======================================
   AMENITIES
   ====================================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.amenity-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(201,161,74,0.1);
}
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}
.amenity-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, rgba(201,161,74,0.15), rgba(201,161,74,0.05));
  border: 2px solid rgba(201,161,74,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}
.amenity-card:hover .amenity-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.amenity-card h4 { margin-bottom: 8px; color: var(--navy); }
.amenity-card p { font-size: 0.88rem; margin: 0; }

/* ======================================
   PACKAGES / PRICING
   ====================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,161,74,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.package-card.featured {
  background: var(--navy);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.04);
}
.package-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.package-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: rgba(201,161,74,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,161,74,0.3);
}
.package-card.featured .package-badge {
  background: var(--gold);
  color: var(--navy);
}
.package-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.package-card.featured .package-name { color: var(--white); }
.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}
.package-price .currency { font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.package-price .amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.package-divider {
  width: 100%; height: 1px;
  background: rgba(201,161,74,0.15);
  margin: 24px 0;
}
.package-card.featured .package-divider { background: rgba(255,255,255,0.15); }
.package-features { list-style: none; margin-bottom: 32px; }
.package-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.package-card.featured .package-features li { color: rgba(255,255,255,0.8); }
.package-features li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.package-features li.unavailable i { color: #dc2626; }
.package-features li.unavailable span { opacity: 0.5; text-decoration: line-through; }
.package-card .btn { width: 100%; justify-content: center; }
.packages-cta { text-align: center; margin-top: 48px; }

/* ======================================
   WHY CHOOSE US
   ====================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,161,74,0.2);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(201,161,74,0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px; height: 64px;
  background: rgba(201,161,74,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--gold);
}
.why-card h4 { color: var(--white); margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; }

/* ======================================
   AVAILABILITY FORM
   ====================================== */
.availability-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 48px;
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(11,31,58,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,161,74,0.12);
}
.form-group .error-msg {
  font-size: 0.78rem;
  color: #dc2626;
  display: none;
}
.form-group.has-error .error-msg { display: block; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #dc2626; }
.form-submit { text-align: center; margin-top: 8px; }
.form-submit .btn { min-width: 220px; justify-content: center; }

/* ======================================
   FAQ ACCORDION
   ====================================== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(11,31,58,0.1);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(201,161,74,0.4); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
}
.faq-question h4 {
  font-size: 1rem;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
}
.faq-question .faq-icon {
  width: 32px; height: 32px;
  background: rgba(201,161,74,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.active .faq-question { background: var(--navy); }
.faq-item.active .faq-question h4 { color: var(--white); }
.faq-item.active .faq-question .faq-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 16px 24px 20px;
  margin: 0;
  background: var(--cream);
  font-size: 0.92rem;
}

/* ======================================
   CTA BANNER
   ====================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3560 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::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='%23C9A14A' fill-opacity='0.04'%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");
}
.cta-banner h2 { color: var(--white); position: relative; z-index: 1; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.7); position: relative; z-index: 1; max-width: 500px; margin: 0 auto 34px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ======================================
   FOOTER
   ====================================== */
.footer {
  background: var(--navy-dark);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.footer-brand .logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
}
.footer-brand .logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-2px); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--gold); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex; gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}
.footer-contact-item span { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; margin: 0; }
.footer-bottom span { color: var(--gold); }

/* ======================================
   LIGHTBOX
   ====================================== */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
#lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: fixed; top: 20px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  z-index: 9999;
  transition: var(--transition);
  background: rgba(255,255,255,0.1);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: var(--gold); color: var(--navy); }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--white);
  cursor: pointer;
  z-index: 9999;
  background: rgba(255,255,255,0.1);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--navy); }
.lightbox-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  background: rgba(0,0,0,0.5);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

/* ======================================
   COMPARISON TABLE
   ====================================== */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-table th {
  padding: 20px 24px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  border-bottom: 2px solid rgba(201,161,74,0.2);
}
.compare-table th:first-child { text-align: left; }
.compare-table th.featured-col { background: var(--navy); color: var(--white); }
.compare-table th.featured-col .col-price { color: var(--gold); font-size: 0.85rem; }
.compare-table td {
  padding: 14px 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(11,31,58,0.06);
  text-align: center;
}
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--navy); }
.compare-table td.featured-col { background: rgba(11,31,58,0.03); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check { color: #16a34a; font-size: 1rem; }
.compare-table .cross { color: #dc2626; font-size: 1rem; }
.compare-table tr:hover td { background: var(--cream); }
.compare-table tr:hover td.featured-col { background: rgba(201,161,74,0.06); }

/* ======================================
   TEAM CARDS
   ====================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.team-avatar {
  height: 220px;
  background: linear-gradient(135deg, var(--navy), #1a3560);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: rgba(201,161,74,0.5);
}
.team-info { padding: 24px; }
.team-info h4 { margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; display: block; }
.team-info p { font-size: 0.88rem; margin: 0; }

/* ======================================
   TESTIMONIALS
   ====================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,161,74,0.1);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-gold); border-color: var(--gold); transform: translateY(-4px); }
.stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-card p { font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), #1a3560);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.author-info .name { font-weight: 600; color: var(--navy); font-size: 0.92rem; }
.author-info .event-type { font-size: 0.78rem; color: var(--text-muted); }

/* ======================================
   SERVICES PAGE
   ====================================== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 80px;
}
.service-block:last-child { margin-bottom: 0; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.service-image img { width: 100%; height: 100%; object-fit: cover; }
.service-features { list-style: none; margin-top: 20px; }
.service-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(11,31,58,0.06);
}
.service-features li:last-child { border-bottom: none; }
.service-features li i { color: var(--gold); flex-shrink: 0; }

/* Addons grid */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.addon-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,161,74,0.1);
  transition: var(--transition);
}
.addon-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.addon-card i { font-size: 1.8rem; color: var(--gold); margin-bottom: 12px; }
.addon-card h5 { font-size: 0.95rem; color: var(--navy); }

/* Process timeline */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.process-step { text-align: center; position: relative; }
.step-icon {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}
.step-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 24px; height: 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; margin: 0; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; gap: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,161,74,0.1);
  margin-bottom: 16px;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.contact-info-card .icon {
  width: 48px; height: 48px;
  background: rgba(201,161,74,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-card h5 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; font-family: var(--font-body); }
.contact-info-card p { margin: 0; color: var(--navy); font-weight: 600; font-size: 0.95rem; }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-container iframe { display: block; width: 100%; }
.whatsapp-strip {
  background: var(--navy);
  padding: 32px 0;
  text-align: center;
}
.whatsapp-strip h3 { color: var(--white); margin-bottom: 6px; }
.whatsapp-strip p { color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.btn-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.quick-enquiry-number { font-family: var(--font-heading); font-size: 2rem; color: var(--gold); display: block; margin-bottom: 8px; }

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 1200px) {
  :root { --section-py: 70px; }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 32px; }
}

@media (max-width: 992px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 36px 40px;
    gap: 28px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 30px rgba(0,0,0,0.3);
  }
  .nav-menu.open { right: 0; }
  .nav-link { font-size: 1.05rem; }
  .nav-cta { margin-left: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 360px; }
  .about-image .experience-badge { bottom: 10px; right: 10px; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .package-card.featured { transform: scale(1); }
  .package-card.featured:hover { transform: translateY(-8px); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block.reverse { direction: ltr; }
  .service-image { height: 300px; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .availability-form-wrap { padding: 36px 28px; }
  .contact-form-wrap { padding: 32px 28px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .events-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .event-card { height: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 200px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .page-header { height: 280px; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 576px) {
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .availability-form-wrap { padding: 28px 20px; }
  .contact-form-wrap { padding: 24px 18px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  #scroll-top { bottom: 16px; right: 16px; }
}

/* ======================================
   LOGO IMAGE
   ====================================== */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo .logo-img {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-logo:hover .logo-img { opacity: 0.85; transform: scale(1.04); }

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-brand-text .brand-main {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.nav-brand-text .brand-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Footer logo - see FOOTER LOGO + BRAND TEXT section below */

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.96); }
}

/* ======================================
   AVAILABILITY FORM (isolated classes)
   ====================================== */
.avail-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
}
.avail-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: auto auto !important;
  gap: 24px !important;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 28px;
}
.avail-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px;
  width: 100%;
  min-width: 0;
  position: static !important;
  float: none !important;
}
.avail-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}
.avail-field input,
.avail-field select {
  width: 100% !important;
  padding: 14px 16px;
  border: 1.5px solid rgba(11,31,58,0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.avail-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230B1F3A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.avail-field input:focus,
.avail-field select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,161,74,0.12);
  outline: none;
}
.avail-field .error-msg {
  font-size: 0.78rem;
  color: #dc2626;
  display: none;
}
.avail-field.has-error .error-msg { display: block; }
.avail-field.has-error input,
.avail-field.has-error select { border-color: #dc2626; }
.avail-submit {
  text-align: center;
}
.avail-submit .btn {
  min-width: 220px;
  justify-content: center;
}

/* Responsive */
@media (max-width: 600px) {
  .avail-grid {
    grid-template-columns: 1fr !important;
  }
  .avail-wrap {
    padding: 28px 20px;
  }
}

/* ======================================
   FLOATING WHATSAPP BUTTON
   ====================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 88px; /* sits left of the scroll-to-top button */
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
  z-index: 998;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float i {
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 1;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.2);
}
/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
/* Tooltip */
.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 64px;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.whatsapp-float .wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a1a1a;
  border-right: none;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 20px;
    right: 78px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float i { font-size: 1.4rem; }
}

/* ======================================
   FLOATING CALL BUTTON
   ====================================== */
.call-float {
  position: fixed;
  bottom: 92px; /* above WhatsApp button (28 + 54 + 10px gap) */
  right: 88px;
  width: 54px;
  height: 54px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(11,31,58,0.4), 0 2px 8px rgba(0,0,0,0.15);
  z-index: 998;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-decoration: none;
  border: 2px solid rgba(201,161,74,0.4);
}
.call-float i {
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1;
}
.call-float:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 30px rgba(201,161,74,0.45), 0 4px 12px rgba(0,0,0,0.2);
}
.call-float:hover i {
  color: var(--navy);
}
/* Tooltip */
.call-float .call-tooltip {
  position: absolute;
  right: 64px;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.call-float .call-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a1a1a;
  border-right: none;
}
.call-float:hover .call-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 576px) {
  .call-float {
    bottom: 78px; /* 20 + 48 + 10 */
    right: 78px;
    width: 48px;
    height: 48px;
  }
  .call-float i { font-size: 1.15rem; }
}

/* ======================================
   CONSENT CHECKBOX
   ====================================== */
.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.consent-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--gold);
  margin-top: 2px;
  cursor: pointer;
}
.consent-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.consent-group label a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-group label a:hover { color: var(--gold-dark); }
.consent-group.has-error label { color: #dc2626; }

/* ======================================
   FOOTER LOGO + BRAND TEXT
   ====================================== */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo .logo-img {
  height: 56px;
  width: auto;
  flex-shrink: 0;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.footer-brand-main {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.footer-brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
}
