/* ===========================
   ELITE FITNESS — PREMIUM CSS
   =========================== */

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

:root {
  --black:      #000000;
  --off-black:  #0a0a0a;
  --dark:       #111111;
  --dark-mid:   #181818;
  --dark-card:  #141414;
  --border:     rgba(212,175,55,0.18);
  --border-sub: rgba(255,255,255,0.07);
  --gold:       #D4AF37;
  --gold-light: #e8c84a;
  --gold-dark:  #a88b25;
  --gold-glow:  rgba(212,175,55,0.35);
  --white:      #FFFFFF;
  --grey:       #888888;
  --grey-light: #aaaaaa;

  --font-heading: 'Bebas Neue', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --section-pad: 110px 0;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- SELECTION ---- */
::selection { background: var(--gold); color: var(--black); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: var(--font-heading); letter-spacing: 0.04em; line-height: 1.05; }

.gold-text { color: var(--gold); }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-tag::before, .section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 18px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--grey-light);
  max-width: 520px;
  line-height: 1.7;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold:hover { color: var(--black); box-shadow: 0 6px 30px var(--gold-glow); }
.btn-gold span, .btn-gold svg { position: relative; z-index: 1; }
.btn-gold > * { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.15);
}

/* ---- AOS ANIMATION SETUP ---- */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="fade-down"]  { transform: translateY(-30px); }
[data-aos].aos-animate  { opacity: 1; transform: translate(0); }

/* =====================
   PRELOADER
   ===================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.preloader-logo {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 30px rgba(212,175,55,0.6));
  animation: preloader-pulse 1.6s ease-in-out infinite;
}
@keyframes preloader-pulse {
  0%, 100% { opacity: 0.7; filter: drop-shadow(0 4px 20px rgba(212,175,55,0.4)); }
  50%       { opacity: 1;   filter: drop-shadow(0 4px 60px rgba(212,175,55,0.85)); }
}
.preloader-bar {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  animation: preloader-load 1.4s ease-out forwards;
}
@keyframes preloader-load {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}
.preloader-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.8), 0 1px 0 rgba(212,175,55,0.15);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.5));
  transition: var(--transition);
}
.nav-logo-img:hover { filter: drop-shadow(0 0 22px rgba(212,175,55,0.8)); transform: scale(1.06); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-link {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-cta { padding: 10px 24px !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: left;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg); }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.80) 75%,
    rgba(0,0,0,0.98) 100%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo-wrap {
  margin-bottom: 28px;
}
.hero-logo-img {
  width: 320px;
  height: auto;
  filter: drop-shadow(0 4px 40px rgba(212,175,55,0.6));
  animation: hero-logo-pulse 4s ease-in-out infinite;
}
@keyframes hero-logo-pulse {
  0%, 100% { filter: drop-shadow(0 4px 40px rgba(212,175,55,0.55)); }
  50%       { filter: drop-shadow(0 4px 70px rgba(212,175,55,0.85)); }
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-badge-line { width: 30px; height: 1px; background: var(--gold); }

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 12vw, 9.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 36px;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.08);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  z-index: 1;
  animation: scroll-fade 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scroll-fade {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* =====================
   TICKER
   ===================== */
.ticker-wrap {
  background: var(--gold);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0;  background: linear-gradient(to right, var(--gold), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left,  var(--gold), transparent); }
.ticker {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 26s linear infinite;
}
.ticker span {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 24px;
}
.ticker-sep {
  font-size: 0.65rem !important;
  padding: 0 4px !important;
  opacity: 0.55;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* =====================
   ABOUT
   ===================== */
.about {
  position: relative;
  padding: var(--section-pad);
  overflow: hidden;
}
.about-bg-img-wrap {
  position: absolute;
  right: 0; top: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}
.about-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(0.6);
}
.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 5%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.15) 100%);
}
.about .container { position: relative; z-index: 1; }
.about-inner {
  max-width: 600px;
}
.about-body p {
  color: var(--grey-light);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 22px;
}
.about-body p strong {
  color: var(--white);
  font-weight: 700;
}
.about-body { margin-bottom: 40px; }

/* =====================
   SERVICES
   ===================== */
.services {
  padding: var(--section-pad);
  background: var(--off-black);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-header .section-sub { margin: 0 auto; }
.section-header .section-tag { justify-content: center; }
.section-header .section-tag::before, .section-header .section-tag::after { display: none; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-md);
  padding: 48px 36px 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: border-color 0.35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(212,175,55,0.08); }
.service-card:hover::before { border-color: rgba(212,175,55,0.4); }
.service-card.featured {
  border-color: rgba(212,175,55,0.22);
  background: linear-gradient(135deg, var(--dark-card) 0%, rgba(212,175,55,0.04) 100%);
}
.service-card.featured::before { border-color: rgba(212,175,55,0.25); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: var(--transition);
}
.service-icon svg { width: 28px; height: 28px; color: var(--gold); }
.service-card:hover .service-icon {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  color: var(--white);
}
.service-card p {
  font-size: 0.93rem;
  color: var(--grey-light);
  line-height: 1.75;
  margin-bottom: 28px;
}
.service-card-line {
  width: 36px;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover .service-card-line { width: 70px; }
.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials {
  padding: var(--section-pad);
  background: var(--black);
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.22);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.06);
}
.testimonial-card.featured {
  border-color: rgba(212,175,55,0.25);
  background: linear-gradient(145deg, var(--dark-card) 0%, rgba(212,175,55,0.04) 100%);
}
.testimonial-quote-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  opacity: 0.3;
  flex-shrink: 0;
}
.testimonial-quote-icon svg { width: 100%; height: 100%; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.82;
  font-style: italic;
  flex: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 3px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-sub);
  padding-top: 20px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 3px;
  letter-spacing: 0.08em;
}

/* =====================
   PRICING
   ===================== */
.pricing {
  padding: var(--section-pad);
  background: var(--off-black);
  position: relative;
}
.pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 860px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.pricing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: border-color 0.4s ease;
  pointer-events: none;
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card:hover::after { border-color: rgba(212,175,55,0.3); box-shadow: 0 0 40px rgba(212,175,55,0.08) inset; }
.pricing-card.featured {
  background: linear-gradient(145deg, #161512 0%, #1a1809 60%, #111109 100%);
  border-color: rgba(212,175,55,0.28);
}
.pricing-card.featured::after {
  border-color: rgba(212,175,55,0.28);
  box-shadow: 0 0 60px rgba(212,175,55,0.05) inset;
}
.featured-ribbon {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 20px 6px 14px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%);
}

.pricing-card-top { margin-bottom: 36px; }
.pricing-icon {
  width: 52px; height: 52px;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pricing-icon svg { width: 26px; height: 26px; color: var(--gold); }
.plan-name {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 16px;
}
.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}
.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 8px;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.price-period {
  font-size: 1rem;
  color: var(--grey);
  align-self: flex-end;
  margin-bottom: 12px;
  margin-left: 4px;
  font-weight: 500;
}

.plan-features {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.93rem;
  color: var(--grey-light);
  font-weight: 500;
}
.check-icon {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.plan-btn { width: 100%; justify-content: center; }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--grey);
}

/* =====================
   SCHEDULE
   ===================== */
.schedule {
  padding: var(--section-pad);
  background: var(--black);
  position: relative;
}
.schedule::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}

.schedule-card {
  background: var(--dark-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.schedule-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 44px;
  transition: background 0.25s ease;
}
.schedule-row:hover { background: rgba(255,255,255,0.02); }
.sched-days { display: flex; gap: 8px; min-width: 210px; flex-wrap: wrap; }
.sched-day-badge {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(212,175,55,0.08);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.18);
}
.sched-day-badge.closed-day {
  background: rgba(255,255,255,0.04);
  color: var(--grey);
  border-color: rgba(255,255,255,0.06);
}
.sched-info { flex: 1; }
.sched-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}
.sched-hours {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--white);
}
.schedule-row.closed .sched-hours { color: var(--grey); }
.open-badge, .closed-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  flex-shrink: 0;
}
.open-badge {
  background: rgba(64,195,100,0.1);
  color: #40c364;
  border: 1px solid rgba(64,195,100,0.22);
}
.closed-badge {
  background: rgba(255,70,70,0.08);
  color: #ff4646;
  border: 1px solid rgba(255,70,70,0.18);
}
.schedule-divider {
  height: 1px;
  background: var(--border-sub);
  margin: 0 44px;
}

/* =====================
   CONTACT
   ===================== */
.contact {
  padding: var(--section-pad);
  background: var(--off-black);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-detail-icon {
  width: 52px; height: 52px;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 24px; height: 24px; color: var(--gold); }
.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.call-btn {
  font-size: 0.85rem;
  padding: 16px 28px;
}
.call-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-social-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
}
.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  text-decoration: none;
  transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.08);
  box-shadow: 0 0 16px rgba(212,175,55,0.2);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-light);
}
.form-group input, .form-group textarea {
  background: var(--dark-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group textarea:focus {
  border-color: rgba(212,175,55,0.45);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}
.submit-btn {
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 16px 44px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  color: #40c364;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(64,195,100,0.08);
  border: 1px solid rgba(64,195,100,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; stroke: #40c364; }
.form-success.visible { display: flex; }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--off-black);
  border-top: 1px solid rgba(212,175,55,0.12);
}
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 18px rgba(212,175,55,0.45));
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
}
.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links-col ul li a {
  font-size: 0.88rem;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-links-col ul li a:hover { color: var(--gold); }
.footer-hours-info {
  font-size: 0.88rem;
  color: var(--grey);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--grey);
}
.footer-divider { opacity: 0.2; }

/* =====================
   FLOATING CTA
   ===================== */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(212,175,55,0.5);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.floating-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 50px;
}
.floating-btn:hover::before { transform: scaleX(1); }
.floating-btn:hover {
  box-shadow: 0 12px 40px rgba(212,175,55,0.65);
  transform: translateY(-2px);
}
.floating-btn svg { width: 18px; height: 18px; flex-shrink: 0; position: relative; z-index: 1; }
.floating-btn span { position: relative; z-index: 1; }

/* =====================
   BACK TO TOP
   ===================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 6px 24px rgba(212,175,55,0.45);
}
.back-to-top svg { width: 20px; height: 20px; }

/* =====================
   WHATSAPP BUTTON
   ===================== */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #25D366;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}
.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =====================
   LOCATION SECTION
   ===================== */
.location {
  padding: var(--section-pad);
  background: var(--off-black);
  position: relative;
}
.location::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  align-items: stretch;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.location-card {
  background: var(--dark-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  gap: 20px;
  flex: 1;
  transition: var(--transition);
}
.location-card:hover {
  border-color: rgba(212,175,55,0.22);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.06);
}
.location-icon {
  width: 52px;
  height: 52px;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}
.location-text { flex: 1; }
.location-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}
.location-address {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}
.location-reference {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.location-ref-tag {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(212,175,55,0.08);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.18);
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}
.location-btn {
  align-self: flex-start;
}
.location-btn svg {
  width: 18px;
  height: 18px;
}
.location-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-sub);
  min-height: 380px;
  position: relative;
}
.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

/* =====================
   FLOATING CTA — multi-button stack
   ===================== */
.floating-cta {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  align-items: flex-end;
}
.floating-whatsapp {
  background: #25D366 !important;
  color: var(--white) !important;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45) !important;
}
.floating-whatsapp:hover {
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6) !important;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { gap: 48px; }
  .about-bg-img-wrap { width: 45%; }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px 0; }

  /* Navbar mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 90px 36px 36px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid rgba(212,175,55,0.12);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-link {
    display: block;
    padding: 16px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-cta { margin-top: 20px; width: 100%; justify-content: center; text-align: center; }

  /* Hero mobile */
  .hero-logo-img { width: 200px; }
  .hero-headline { font-size: clamp(3.2rem, 12vw, 5.5rem); }
  .hero-cta-group { gap: 12px; }
  .hero-stats { gap: 28px; }
  .stat-num { font-size: 2rem; }

  /* Sections */
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .about-bg-img-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 24px; }
  .location-map, .location-map iframe { min-height: 320px; }

  .schedule-row {
    flex-wrap: wrap;
    padding: 24px 24px;
    gap: 16px;
  }
  .sched-days { min-width: unset; width: 100%; }
  .schedule-divider { margin: 0 24px; }

  /* Floating CTA — icon only on mobile */
  .floating-btn span { display: none; }
  .floating-btn { padding: 14px; border-radius: 50%; }
  .floating-cta { bottom: 24px; right: 24px; }
  .back-to-top { bottom: 24px; left: 24px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-info { gap: 24px; }
  .pricing-card { padding: 36px 24px; }
  .price-amount { font-size: 4rem; }
}
