/* ==========================================================================
   SURAJ WANJARI PERSONAL TRAINER & UNISEX GYM — Design System
   ========================================================================== */

:root {
  --black:        #08090a;
  --black-soft:   #121315;
  --black-card:   #1a1b1e;
  --gray-line:    #2a2b2e;
  --white:        #f5f6f7;
  --gray-text:    #a3a6ab;
  --orange:       #ff4415;
  --orange-2:     #ff7a3d;
  --orange-glow:  rgba(255, 68, 21, 0.45);
  --yellow:       #ffcf3d;

  --font-display: 'Anton', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --container-w: 1220px;
  --radius: 14px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .5px;
  line-height: 1.1;
  text-transform: uppercase;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; padding: 110px 0; }
@media (max-width: 768px) { section { padding: 70px 0; } }

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

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: .12s; }
.reveal-delay-2.in-view { transition-delay: .24s; }
.reveal-delay-3.in-view { transition-delay: .36s; }
.reveal-delay-4.in-view { transition-delay: .48s; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader-num {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--orange);
  animation: pulse 1s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1;} 50% { transform: scale(1.15); opacity: .6; } }

/* ---------- Scroll progress bar ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  z-index: 10000; transition: width .1s ease;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
  background: linear-gradient(to bottom, rgba(8,9,10,.85), transparent);
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(8,9,10,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 30px rgba(0,0,0,.5);
  border-bottom: 1px solid var(--gray-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  display: flex; align-items: baseline; gap: 6px;
  white-space: nowrap;
}
.logo span { color: var(--orange); }
.logo small {
  font-family: var(--font-body);
  font-size: .55rem;
  letter-spacing: 2px;
  color: var(--gray-text);
  font-weight: 600;
  align-self: center;
}
.main-nav { display: flex; gap: 28px; flex: 1; justify-content: center; }
.main-nav a {
  font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
  color: var(--gray-text); position: relative; padding: 6px 0;
  transition: color .25s ease;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--orange); transition: width .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-cta { white-space: nowrap; }

.hamburger { display: none; flex-direction: column; gap: 5px; z-index: 1100; width: 30px; }
.hamburger span { display: block; height: 2px; width: 100%; background: var(--white); 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); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px;
  font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: 1px;
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 8px 24px var(--orange-glow);
}
.btn-primary:hover { background: var(--orange-2); transform: translateY(-3px); box-shadow: 0 14px 30px var(--orange-glow); }
.btn-outline { border-color: rgba(255,255,255,.35); color: var(--white); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 44px; font-size: .95rem; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange); font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  font-size: .78rem; margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 30px; height: 2px; background: var(--orange); }
.section-title { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 18px; }
.section-sub { color: var(--gray-text); max-width: 620px; font-size: 1.05rem; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-tag::before { display: none; }
.section-head.center .section-sub { margin: 0 auto; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  padding-top: 120px;
  background:
    linear-gradient(180deg, rgba(8,9,10,.35) 0%, rgba(8,9,10,.75) 55%, var(--black) 100%),
    url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, var(--orange-glow), transparent 45%);
  mix-blend-mode: screen; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: end; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,68,21,.12); border: 1px solid var(--orange);
  color: var(--orange-2); padding: 8px 18px; border-radius: 100px;
  font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: .95;
  margin-bottom: 26px;
  text-shadow: 0 10px 40px rgba(0,0,0,.6);
}
.hero-title .line2 { color: var(--orange); -webkit-text-stroke: 0; }
.hero-desc { max-width: 520px; color: #d7d9dc; font-size: 1.1rem; margin-bottom: 36px; }
.hero-cta-row { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 28px;
}
.hero-stat b {
  font-family: var(--font-display); font-size: 2.4rem; color: var(--white); display: block;
}
.hero-stat span { color: var(--gray-text); font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }

.hero-side-card {
  background: rgba(18,19,21,.75);
  border: 1px solid var(--gray-line);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 30px;
}
.hero-side-card h4 { font-family: var(--font-body); font-weight: 700; text-transform: none; font-size: 1rem; margin-bottom: 10px; display:flex; align-items:center; gap:10px;}
.hero-side-card h4 i { color: var(--orange); }
.hero-side-card p { color: var(--gray-text); font-size: .9rem; }

.scroll-cue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gray-text); font-size: .7rem; letter-spacing: 2px; text-transform: uppercase;
  z-index: 2;
}
.scroll-cue .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: bounce 1.6s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); opacity:1; } 50% { transform: translateY(10px); opacity: .3; } }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  background: var(--orange); color: #fff; padding: 16px 0; overflow: hidden;
  white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 40px; animation: scrollLeft 24s linear infinite; }
.marquee span { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 40px; }
.marquee i { font-size: .8rem; }
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   WHY US / FEATURES
   ========================================================================== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feature-card {
  background: var(--black-card); border: 1px solid var(--gray-line);
  border-radius: var(--radius); padding: 34px 26px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.feature-card:hover { transform: translateY(-10px); border-color: var(--orange); box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px;
  box-shadow: 0 10px 24px var(--orange-glow);
}
.feature-card h3 { font-family: var(--font-body); font-weight: 700; text-transform: none; font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--gray-text); font-size: .92rem; }

@media (max-width: 1000px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CLASSES / PROGRAMS
   ========================================================================== */
.section-alt { background: var(--black-soft); }
.classes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.class-card {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background: var(--black-card); border: 1px solid var(--gray-line);
  transition: var(--transition);
}
.class-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,0,0,.5); }
.class-card-img { height: 230px; overflow: hidden; }
.class-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.class-card:hover .class-card-img img { transform: scale(1.1); }
.class-card-body { padding: 26px; }
.class-card-body .tag {
  color: var(--orange); font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}
.class-card-body h3 { font-family: var(--font-body); font-weight: 700; text-transform: none; font-size: 1.3rem; margin: 10px 0 12px; }
.class-card-body p { color: var(--gray-text); font-size: .92rem; margin-bottom: 16px; }
.class-card-body .meta { display: flex; gap: 18px; color: var(--gray-text); font-size: .82rem; }
.class-card-body .meta span { display: flex; align-items: center; gap: 6px; }
.class-card-body .meta i { color: var(--orange); }

@media (max-width: 1000px) { .classes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .classes-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   STATS COUNTER STRIP
   ========================================================================== */
.stats-strip {
  background: linear-gradient(120deg, #201206, var(--black));
  border-top: 1px solid var(--gray-line); border-bottom: 1px solid var(--gray-line);
  padding: 70px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item b { font-family: var(--font-display); font-size: 3.2rem; color: var(--orange); display: block; }
.stat-item span { color: var(--gray-text); text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   ABOUT SPLIT
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); width: 100%; height: 520px; object-fit: cover; }
.split-media .float-card {
  position: absolute; bottom: -30px; right: -30px;
  background: var(--orange); border-radius: var(--radius);
  padding: 24px 28px; box-shadow: 0 20px 40px rgba(0,0,0,.4);
  max-width: 220px;
}
.split-media .float-card b { font-family: var(--font-display); font-size: 2rem; display: block; }
.split-media .float-card span { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; }
.split-list { margin: 26px 0; display: flex; flex-direction: column; gap: 16px; }
.split-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--gray-text); }
.split-list i { color: var(--orange); margin-top: 4px; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split-media .float-card { position: static; margin-top: -60px; margin-left: 20px; width: fit-content; }
}

/* ==========================================================================
   TRAINERS
   ========================================================================== */
.trainers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.trainer-card { text-align: center; position: relative; }
.trainer-photo {
  position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 20px;
  aspect-ratio: 3/4;
}
.trainer-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.trainer-card:hover .trainer-photo img { transform: scale(1.08); }
.trainer-photo::after { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(8,9,10,.85), transparent 45%); }
.trainer-social {
  position: absolute; bottom: 16px; left: 0; right: 0; display: flex; justify-content: center; gap: 12px; z-index: 2;
}
.trainer-social a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px);
  transition: var(--transition);
}
.trainer-social a:hover { background: var(--orange); }
.trainer-card h3 { font-family: var(--font-body); font-weight: 700; text-transform: none; font-size: 1.2rem; }
.trainer-card span { color: var(--orange); font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 1000px) { .trainers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trainers-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-slider { position: relative; max-width: 780px; margin: 0 auto; text-align: center; min-height: 260px; }
.testimonial-slide {
  display: none; animation: fadeIn .6s ease;
}
.testimonial-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px);} to { opacity: 1; transform: translateY(0);} }
.testimonial-slide .stars { color: var(--yellow); margin-bottom: 20px; font-size: 1.1rem; }
.testimonial-slide p.quote { font-size: 1.4rem; font-weight: 300; margin-bottom: 30px; color: var(--white); }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); }
.testimonial-author b { display: block; font-size: .95rem; }
.testimonial-author span { color: var(--gray-text); font-size: .8rem; }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.slider-dots button { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-line); transition: var(--transition); }
.slider-dots button.active { background: var(--orange); width: 26px; border-radius: 6px; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
.price-card {
  background: var(--black-card); border: 1px solid var(--gray-line); border-radius: var(--radius);
  padding: 40px 32px; text-align: center; position: relative; transition: var(--transition);
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-8px); border-color: var(--orange); }
.price-card.featured { background: linear-gradient(160deg, #2a1508, var(--black-card)); border-color: var(--orange); transform: scale(1.05); }
.price-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; padding: 6px 20px; border-radius: 100px; font-size: .72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.price-card h3 { font-family: var(--font-body); font-weight: 700; text-transform: none; font-size: 1.2rem; margin-bottom: 16px; }
.price-card .price { font-family: var(--font-display); font-size: 3rem; color: var(--orange); margin-bottom: 4px; }
.price-card .price span { font-family: var(--font-body); font-size: .95rem; color: var(--gray-text); }
.price-card .cadence { color: var(--gray-text); font-size: .85rem; margin-bottom: 26px; }
.price-card ul { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; text-align: left; flex: 1; }
.price-card ul li { display: flex; gap: 10px; color: var(--gray-text); font-size: .9rem; }
.price-card ul li i { color: var(--orange); margin-top: 3px; }
@media (max-width: 1000px) { .pricing-grid { grid-template-columns: 1fr; } .price-card.featured { transform: none; } }

/* ==========================================================================
   SCHEDULE
   ========================================================================== */
.day-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.day-tabs button {
  padding: 12px 22px; border-radius: 100px; border: 1px solid var(--gray-line);
  color: var(--gray-text); font-weight: 600; font-size: .85rem; transition: var(--transition);
}
.day-tabs button.active, .day-tabs button:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table thead th {
  text-align: left; color: var(--gray-text); text-transform: uppercase; font-size: .75rem; letter-spacing: 1px;
  padding: 14px 20px; border-bottom: 1px solid var(--gray-line);
}
.schedule-table tbody tr { transition: var(--transition); }
.schedule-table tbody tr:hover { background: var(--black-card); }
.schedule-table td {
  padding: 20px; border-bottom: 1px solid var(--gray-line); font-size: .92rem; vertical-align: middle;
}
.schedule-table td.time { font-family: var(--font-display); color: var(--orange); font-size: 1.1rem; }
.schedule-table td .class-name { font-weight: 600; }
.schedule-table td .coach { color: var(--gray-text); font-size: .82rem; }
.spots-badge { padding: 5px 14px; border-radius: 100px; font-size: .75rem; font-weight: 700; }
.spots-badge.high { background: rgba(76,209,109,.15); color: #4cd16d; }
.spots-badge.mid { background: rgba(255,207,61,.15); color: var(--yellow); }
.spots-badge.low { background: rgba(255,68,21,.15); color: var(--orange); }
.schedule-table-wrap { overflow-x: auto; background: var(--black-card); border: 1px solid var(--gray-line); border-radius: var(--radius); -webkit-overflow-scrolling: touch; }
.schedule-swipe-hint { display: none; text-align: center; color: var(--gray-text); font-size: .78rem; margin-bottom: 14px; }
@media (max-width: 700px) {
  .schedule-table { min-width: 620px; }
  .schedule-table td, .schedule-table th { padding: 14px 12px; }
  .schedule-swipe-hint { display: flex; align-items: center; justify-content: center; gap: 8px; }
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 18px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item::after {
  content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(255,68,21,.55); color: #fff; font-size: 1.4rem; opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-item.wide { grid-column: span 2; } }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; } }

.lightbox {
  position: fixed; inset: 0; background: rgba(8,9,10,.95); z-index: 3000;
  display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 88vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox-close, .lightbox-nav {
  position: absolute; color: #fff; font-size: 1.6rem; background: rgba(255,255,255,.1);
  width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--orange); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, #2b1608, var(--black) 60%),
              url('https://images.unsplash.com/photo-1549060279-7e168fcee0c2?auto=format&fit=crop&w=1600&q=80') center/cover;
  background-blend-mode: multiply;
  border-radius: var(--radius);
  padding: 80px 40px; text-align: center;
  margin: 0 24px;
  position: relative; overflow: hidden;
}
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 18px; }
.cta-banner p { color: #d7d9dc; max-width: 560px; margin: 0 auto 34px; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form-card, .contact-info-card {
  background: var(--black-card); border: 1px solid var(--gray-line); border-radius: var(--radius); padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-text); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--black-soft); border: 1px solid var(--gray-line); color: var(--white);
  padding: 14px 16px; border-radius: 8px; font-family: inherit; font-size: .95rem; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } .contact-grid { grid-template-columns: 1fr; } }

.alert { padding: 16px 20px; border-radius: 10px; margin-bottom: 24px; font-size: .9rem; display:flex; gap:10px; align-items:center; }
.alert-success { background: rgba(76,209,109,.12); color: #4cd16d; border: 1px solid rgba(76,209,109,.3); }
.alert-error { background: rgba(255,68,21,.12); color: var(--orange-2); border: 1px solid rgba(255,68,21,.3); }

.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 30px; }
.contact-info-list .item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-list .ic {
  width: 46px; height: 46px; border-radius: 12px; background: rgba(255,68,21,.12); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-list h4 { font-family: var(--font-body); text-transform: none; font-size: .95rem; margin-bottom: 4px; }
.contact-info-list p, .contact-info-list a { color: var(--gray-text); font-size: .9rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-line); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(.3) invert(.92) contrast(.85); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--black-soft); border-top: 1px solid var(--gray-line); padding: 80px 0 0; position: relative; overflow: hidden; }
.footer-glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 500px; height: 300px; background: var(--orange-glow); filter: blur(120px); border-radius: 50%; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; position: relative; z-index: 1; padding-bottom: 50px; }
.footer-col h4 { font-family: var(--font-body); font-weight: 700; text-transform: none; font-size: 1rem; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: var(--gray-text); font-size: .9rem; margin-bottom: 12px; }
.footer-col a:hover { color: var(--orange); }
.footer-brand p { margin: 16px 0 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%; background: var(--black-card); border: 1px solid var(--gray-line);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.social-links a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-4px); }
.newsletter-form { display: flex; gap: 8px; margin-top: 4px; }
.newsletter-form input {
  flex: 1; background: var(--black-card); border: 1px solid var(--gray-line); color: #fff;
  padding: 12px 14px; border-radius: 8px; font-family: inherit;
}
.newsletter-form button { padding: 12px 18px; border-radius: 8px; }
.form-msg { font-size: .82rem; margin-top: 10px; }
.form-msg.success { color: #4cd16d; }
.form-msg.error { color: var(--orange-2); }
.hours i { color: var(--orange); margin-right: 6px; }
.footer-bottom { border-top: 1px solid var(--gray-line); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom-inner p { color: var(--gray-text); font-size: .82rem; }
.footer-bottom-inner a:hover { color: var(--orange); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .footer-bottom { padding-bottom: 90px; } }

/* ---------- Floating CTA + Back to top ---------- */
.floating-cta {
  position: fixed; bottom: 30px; right: 30px; z-index: 900;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 12px 30px var(--orange-glow);
  animation: floatBob 2.4s ease-in-out infinite;
}
@keyframes floatBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.back-to-top {
  position: fixed; bottom: 30px; right: 104px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%; background: var(--black-card); border: 1px solid var(--gray-line);
  color: #fff; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--orange); }
@media (max-width: 600px) {
  .floating-cta { width: 52px; height: 52px; bottom: 20px; right: 20px; font-size: 1.2rem; }
  .back-to-top { display: none; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 200px 0 90px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(8,9,10,.5), var(--black) 90%),
    url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=1600&q=80') center/cover;
}
.page-hero .section-tag { justify-content: center; }
.page-hero .section-tag::before { display: none; }
.breadcrumb { color: var(--gray-text); font-size: .85rem; margin-top: 16px; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: .7rem; margin: 0 8px; }

/* ---------- Mobile nav ---------- */
@media (max-width: 992px) {
  .main-nav {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 80vw);
    background: var(--black-soft); flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 40px; gap: 26px; transition: right .4s ease; z-index: 1050;
    border-left: 1px solid var(--gray-line);
  }
  .main-nav.open { right: 0; box-shadow: -20px 0 50px rgba(0,0,0,.5); }
  .main-nav a { font-size: 1rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ---------- Misc utility ---------- */
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }

/* ==========================================================================
   ADMIN PANEL
   ========================================================================== */
.admin-body { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.admin-login-card {
  width: 100%; max-width: 400px; background: var(--black-card); border: 1px solid var(--gray-line);
  border-radius: var(--radius); padding: 44px 36px; text-align: center;
}
.admin-login-card .logo { justify-content: center; margin-bottom: 6px; }
.admin-login-card h1 { font-size: 1.1rem; font-family: var(--font-body); text-transform: none; color: var(--gray-text); margin-bottom: 30px; font-weight: 500; }
.admin-login-card form { text-align: left; }

.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 250px; background: var(--black-soft); border-right: 1px solid var(--gray-line);
  padding: 30px 22px; flex-shrink: 0; display: flex; flex-direction: column;
}
.admin-sidebar .logo { margin-bottom: 40px; }
.admin-sidebar nav { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.admin-sidebar nav a {
  padding: 12px 16px; border-radius: 8px; color: var(--gray-text); font-weight: 600; font-size: .9rem;
  display: flex; align-items: center; gap: 10px; transition: var(--transition);
}
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { background: rgba(255,68,21,.12); color: var(--orange); }
.admin-main { flex: 1; padding: 40px; max-width: 100%; overflow-x: auto; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 34px; flex-wrap: wrap; gap: 16px; }
.admin-topbar h1 { font-family: var(--font-body); text-transform: none; font-size: 1.6rem; font-weight: 700; }
.admin-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; margin-bottom: 36px; }
.admin-card { background: var(--black-card); border: 1px solid var(--gray-line); border-radius: var(--radius); padding: 24px; }
.admin-card b { font-family: var(--font-display); font-size: 2.2rem; color: var(--orange); display: block; }
.admin-card span { color: var(--gray-text); font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }
.admin-table-wrap { background: var(--black-card); border: 1px solid var(--gray-line); border-radius: var(--radius); overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.admin-table th { text-align: left; color: var(--gray-text); text-transform: uppercase; font-size: .72rem; letter-spacing: 1px; padding: 14px 20px; border-bottom: 1px solid var(--gray-line); }
.admin-table td { padding: 16px 20px; border-bottom: 1px solid var(--gray-line); font-size: .88rem; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,.02); }
.admin-empty { padding: 40px; text-align: center; color: var(--gray-text); }
@media (max-width: 800px) {
  .admin-shell { flex-direction: column; }
  .admin-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; align-items: center; padding: 16px 20px; row-gap: 12px; }
  .admin-sidebar nav { flex-direction: row; flex: none; flex-wrap: wrap; }
  .admin-sidebar .logo { margin-bottom: 0; margin-right: auto; }
  .admin-sidebar > p { width: 100%; order: 3; margin: 0; }
  .admin-main { padding: 24px; }
}
@media (max-width: 420px) {
  .admin-sidebar nav a { padding: 10px 12px; font-size: .82rem; }
}
