/* =============================================
   FITNESS FUTURE – MASTER STYLESHEET
   Dark Gold Premium Gym Theme
   Supports LTR (English) + RTL (Arabic)
============================================= */

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

/* ── VARIABLES ── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #9A7A2E;
  --black:       #0A0A0A;
  --dark:        #111111;
  --dark-2:      #1A1A1A;
  --dark-3:      #222222;
  --dark-4:      #2E2E2E;
  --white:       #FFFFFF;
  --off-white:   #F5F5F0;
  --muted:       #888888;
  --muted-2:     #555555;
  --success:     #22C55E;
  --error:       #EF4444;
  --border:      rgba(201,168,76,0.18);
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --shadow:      0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.15);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
[lang="ar"] body, body.rtl {
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  text-align: right;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }
input, textarea, select { outline: none; font-family: inherit; }

/* ── UTILITIES ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { line-height: 1.15; letter-spacing: -0.02em; }
.heading-xl {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
}
.heading-lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
}
.heading-md {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}
.heading-sm {
  font-size: 1.25rem;
  font-weight: 700;
}
.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.label::before, .label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 24px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark-3);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-dark:hover {
  background: var(--dark-4);
  border-color: var(--gold);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 20px 48px; font-size: 1.05rem; }

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

/* ── CARDS ── */
.card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 60px 0;
  opacity: 0.3;
}

/* ───────────────────────────────────────────
   HEADER / NAVIGATION
─────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.topbar {
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}
.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-contacts a {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.topbar-contacts a:hover { color: var(--gold); }
.topbar-contacts svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-btn {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn:hover { background: var(--gold); color: var(--black); }
.whatsapp-top {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.2);
  color: #25D366;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  transition: var(--transition);
}
.whatsapp-top:hover { background: #25D366; color: var(--white); }
.whatsapp-top svg { width: 12px; height: 12px; fill: currentColor; }
.navbar {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -1px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-size: 1.15rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ───────────────────────────────────────────
   HERO
─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 50%, #0a0a0a 100%);
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(0.6);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.95) 40%, rgba(10,10,10,0.4) 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 60px 24px;
}
.hero-content {}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.hero-stat .number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label-stat {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.hero-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hero-img-card:hover img { transform: scale(1.05); }
.hero-img-card.span-2 { grid-column: span 2; }
.hero-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76, 0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-top: 24px;
}

/* ───────────────────────────────────────────
   SECTION HEADERS
─────────────────────────────────────────── */
.section-header {
  margin-bottom: 64px;
}
.section-header .heading-lg {
  margin-bottom: 16px;
}
.section-header p {
  color: var(--muted);
  max-width: 600px;
  font-size: 1.05rem;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered p {
  margin: 0 auto;
}

/* ───────────────────────────────────────────
   STATS STRIP
─────────────────────────────────────────── */
.stats-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ───────────────────────────────────────────
   SERVICES
─────────────────────────────────────────── */
.services-section { background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}
.service-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.service-card:hover::before { opacity: 1; }
.service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--dark-2), transparent);
}
.service-body {
  padding: 24px;
  position: relative;
  z-index: 1;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.service-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ───────────────────────────────────────────
   PACKAGES / PRICING
─────────────────────────────────────────── */
.packages-section { background: var(--black); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.package-card {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1c1600, var(--dark-2));
  box-shadow: 0 0 60px rgba(201,168,76,0.15);
}
.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.6);
}
.package-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--black);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rtl .package-badge { right: auto; left: 24px; }
.package-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.package-price {
  margin-bottom: 28px;
}
.package-price .amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.package-price .currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  vertical-align: super;
}
.package-price .period {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 4px;
}
.package-features {
  flex: 1;
  margin-bottom: 32px;
}
.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.package-features li:last-child { border-bottom: none; }
.feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.7rem;
}
.feature-x {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted-2);
  font-size: 0.7rem;
}

/* ───────────────────────────────────────────
   REVIEWS
─────────────────────────────────────────── */
.reviews-section { background: var(--dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-gold);
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1rem;
}
.review-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--black);
  font-size: 1rem;
  flex-shrink: 0;
}
.review-author-info .name {
  font-weight: 700;
  font-size: 0.95rem;
}
.review-author-info .role {
  font-size: 0.78rem;
  color: var(--gold);
}
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 60px;
}
.rating-big {
  text-align: center;
}
.rating-big .number {
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.rating-big .stars {
  font-size: 1.4rem;
  color: var(--gold);
  margin: 8px 0;
}
.rating-big .count {
  font-size: 0.88rem;
  color: var(--muted);
}
.rating-bars { flex: 1; max-width: 400px; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}
.rating-bar-row .bar-label {
  width: 30px;
  text-align: right;
  color: var(--muted);
  flex-shrink: 0;
}
.rating-bar-row .bar-track {
  flex: 1;
  height: 6px;
  background: var(--dark-4);
  border-radius: 100px;
  overflow: hidden;
}
.rating-bar-row .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 100px;
}
.rating-bar-row .bar-pct {
  width: 36px;
  color: var(--muted);
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* ───────────────────────────────────────────
   CTA BAND
─────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #1a1208, #0f0d00, #1a1208);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12), transparent 70%);
}
.cta-band .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 24px;
}
.cta-band-text h2 { margin-bottom: 12px; }
.cta-band-text p { color: var(--muted); max-width: 480px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ───────────────────────────────────────────
   FORM STYLES
─────────────────────────────────────────── */
.form-section {
  background: var(--dark);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid.full { grid-template-columns: 1fr; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.form-group.required label::after {
  content: ' *';
  color: var(--gold);
}
.form-control {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
  width: 100%;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-control::placeholder { color: var(--muted-2); }
.form-control.error { border-color: var(--error); }
.form-error {
  font-size: 0.78rem;
  color: var(--error);
  display: none;
  align-items: center;
  gap: 4px;
}
.form-error.show { display: flex; }
textarea.form-control {
  min-height: 130px;
  resize: vertical;
}
select.form-control option {
  background: var(--dark-3);
  color: var(--white);
}
.captcha-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.captcha-challenge {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-family: 'Courier New', monospace;
  user-select: none;
  position: relative;
  overflow: hidden;
}
.captcha-challenge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.03) 2px,
    rgba(255,255,255,0.03) 4px
  );
}
.captcha-refresh {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}
.captcha-refresh:hover { background: rgba(201,168,76,0.25); }
.form-success {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: var(--success);
}
.form-success.show { display: block; }
.form-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.form-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.form-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 36px;
}
.info-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.info-item:last-child { border-bottom: none; }
.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}
.info-content .info-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.info-content a, .info-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.info-content a:hover { color: var(--gold); }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 250px;
  margin-top: 24px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.5) invert(0.9) hue-rotate(170deg);
}

/* ───────────────────────────────────────────
   FOOTER
─────────────────────────────────────────── */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-top {
  padding: 80px 0 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 320px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--muted);
}
.footer-contact-item svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--muted-2);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--muted-2);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.45);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ───────────────────────────────────────────
   PAGE BANNERS (inner pages)
─────────────────────────────────────────── */
.page-banner {
  padding-top: 120px;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
}
.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(0.5);
}
.page-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,1) 30%, rgba(10,10,10,0.5) 100%);
}
.page-banner .container {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); transition: opacity var(--transition); }
.breadcrumb a:hover { opacity: 0.75; }
.breadcrumb span { color: var(--muted-2); }

/* ───────────────────────────────────────────
   GALLERY / ABOUT
─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.about-img.tall img { height: 340px; }
.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.about-feature .check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ───────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .cta-band-text p { margin: 0 auto; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-summary { flex-direction: column; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .form-card { padding: 28px 20px; }
  .section-pad { padding: 60px 0; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
