/* =====================================================
   FIIT 365 — Premium VIP Stylesheet
   Steven Gomez · Elite Personal Trainer
   ===================================================== */

:root {
  --black: #0a0a0a;
  --black-2: #121212;
  --black-3: #1a1a1a;
  --gold: #d4af37;
  --gold-2: #f1c84b;
  --gold-3: #b8941f;
  --white: #ffffff;
  --gray: #a0a0a0;
  --gray-2: #6a6a6a;
  --gray-3: #2a2a2a;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --gold-grad: linear-gradient(135deg, #f1c84b 0%, #d4af37 50%, #b8941f 100%);
  --gold-grad-2: linear-gradient(45deg, #b8941f, #f1c84b, #d4af37);
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  cursor: none;
  position: relative;
}

@media (max-width: 1024px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-outline { display: none !important; }
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.gold { color: var(--gold); }
.italic { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; }

/* ===== SELECTION ===== */
::selection { background: var(--gold); color: var(--black); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--gold-grad); border-radius: 10px; }

/* =====================================================
   PRELOADER
===================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  width: 140px;
  filter: brightness(0) invert(1) drop-shadow(0 0 30px var(--gold));
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.85; } }
.preloader-bar {
  width: 220px; height: 2px; background: var(--gray-3);
  margin: 30px auto 14px; overflow: hidden; border-radius: 4px;
}
.preloader-bar span {
  display: block; height: 100%; background: var(--gold-grad);
  animation: load 1.8s ease-in-out infinite;
}
@keyframes load {
  0% { transform: translateX(-100%); width: 100%; }
  50% { transform: translateX(0); width: 100%; }
  100% { transform: translateX(100%); width: 100%; }
}
.preloader-text { color: var(--gold); font-family: 'Cinzel'; letter-spacing: 3px; font-size: 11px; }

/* =====================================================
   CUSTOM CURSOR
===================================================== */
.cursor-dot, .cursor-outline {
  position: fixed; top: 0; left: 0; pointer-events: none;
  z-index: 9998; transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%; transition: width .2s, height .2s, background .2s;
}
.cursor-outline {
  width: 40px; height: 40px; border: 1.5px solid var(--gold);
  border-radius: 50%; transition: transform 0.2s ease, width .25s, height .25s, opacity .25s;
}
.cursor-outline.hover { width: 60px; height: 60px; background: rgba(212,175,55,0.1); }
.cursor-dot.hover { width: 0; height: 0; }

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 10px 0; z-index: 1000;
  transition: padding 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  background: #ffffff;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.navbar.scrolled {
  background: #f8f5ea;
  padding: 6px 0;
  box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img {
  width: 105px; height: 105px; object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(212,175,55,0.55));
  transition: width 0.35s ease, height 0.35s ease, transform 0.4s var(--bounce);
}
.navbar.scrolled .nav-logo img { width: 80px; height: 80px; }

@media (max-width: 768px) {
  .nav-logo img { width: 72px; height: 72px; }
  .navbar.scrolled .nav-logo img { width: 60px; height: 60px; }
}
.nav-logo:hover img { transform: rotate(-8deg) scale(1.1); }
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: 'Cinzel', serif; font-weight: 900; font-size: 22px; color: var(--white); letter-spacing: 2px; }
.brand-sub { font-size: 10px; letter-spacing: 4px; color: var(--gold); margin-top: 4px; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 34px; }
.nav-link {
  position: relative; font-size: 14px; font-weight: 600;
  color: #1a1a1a; letter-spacing: 1px;
  text-transform: uppercase; transition: color 0.3s ease;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: var(--gold-grad);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold-3); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.cta-link {
  background: #0a0a0a; color: var(--gold) !important;
  padding: 10px 22px; border-radius: 50px; font-weight: 700;
  border: 1.5px solid var(--gold);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.cta-link::after { display: none; }
.cta-link:hover {
  transform: translateY(-2px);
  background: var(--gold-grad);
  color: var(--black) !important;
  box-shadow: 0 10px 30px rgba(212,175,55,0.5);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 32px; }
.nav-toggle span {
  height: 2px; width: 100%; background: #0a0a0a;
  transition: 0.3s ease; transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO
===================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 140px 0 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0,0); }
  to { transform: scale(1.15) translate(-2%, -2%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(212,175,55,0.15) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.7) 60%, var(--black) 100%);
}

.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-particles span {
  position: absolute; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  opacity: 0.5; box-shadow: 0 0 10px var(--gold);
}
.hero-particles span:nth-child(1) { top: 20%; left: 10%; animation: float1 8s ease-in-out infinite; }
.hero-particles span:nth-child(2) { top: 70%; left: 80%; animation: float2 10s ease-in-out infinite; }
.hero-particles span:nth-child(3) { top: 40%; left: 90%; animation: float1 12s ease-in-out infinite; }
.hero-particles span:nth-child(4) { top: 80%; left: 20%; animation: float2 9s ease-in-out infinite; }
.hero-particles span:nth-child(5) { top: 30%; left: 60%; animation: float1 11s ease-in-out infinite; }
.hero-particles span:nth-child(6) { top: 60%; left: 5%; animation: float2 13s ease-in-out infinite; }
.hero-particles span:nth-child(7) { top: 10%; left: 50%; animation: float1 7s ease-in-out infinite; }
.hero-particles span:nth-child(8) { top: 90%; left: 70%; animation: float2 14s ease-in-out infinite; }
.hero-particles span:nth-child(9) { top: 50%; left: 30%; animation: float1 9s ease-in-out infinite; }
.hero-particles span:nth-child(10) { top: 25%; left: 75%; animation: float2 10s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, -50px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-50px, 30px); } }

.hero-content { position: relative; z-index: 2; text-align: center; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 22px; border: 1px solid rgba(212,175,55,0.4);
  border-radius: 50px; background: rgba(0,0,0,0.4);
  font-family: 'Cinzel', serif; font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
}
.tag-line { width: 30px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 28px;
}
.title-line { display: block; }
.title-line:nth-child(1), .title-line:nth-child(2) {
  font-size: clamp(48px, 9vw, 130px);
  letter-spacing: 4px;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #aaa 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(255,255,255,0.1);
}
.title-line.gold {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 5px 30px rgba(212,175,55,0.4));
}
.title-line.gold .italic {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 500;
  font-size: 0.88em;
}
.title-line.small {
  font-size: clamp(16px, 2vw, 22px);
  font-family: 'Inter', sans-serif;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--white); font-weight: 300;
  margin-top: 18px;
}

.hero-subtitle {
  max-width: 720px; margin: 0 auto 40px;
  color: var(--gray); font-size: 17px;
}

.hero-cta {
  display: flex; gap: 18px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 70px;
}

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 36px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
  font-family: 'Inter', sans-serif;
}
.btn-gold {
  background: var(--gold-grad);
  color: var(--black);
  box-shadow: 0 12px 35px rgba(212,175,55,0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(212,175,55,0.6);
}
.btn-gold::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s ease;
}
.btn-gold:hover::before { left: 100%; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex; gap: 50px; justify-content: center; align-items: center;
  flex-wrap: wrap;
  padding: 28px 40px; border: 1px solid rgba(212,175,55,0.2);
  background: rgba(0,0,0,0.4); backdrop-filter: blur(12px);
  border-radius: 16px; max-width: 800px; margin: 0 auto;
}
.hero-stat { text-align: center; }
.hero-stat .stat-num, .hero-stat .plus {
  font-family: 'Bebas Neue', sans-serif; font-size: 50px;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px; line-height: 1;
}
.hero-stat p {
  color: var(--gray); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; margin-top: 6px;
}
.divider { width: 1px; height: 50px; background: rgba(212,175,55,0.3); }

.scroll-down {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  text-align: center; color: var(--gold);
}
.scroll-down span {
  display: block; width: 22px; height: 38px;
  border: 1.5px solid var(--gold); border-radius: 14px;
  margin: 0 auto 6px; position: relative;
}
.scroll-down span::before {
  content: ''; position: absolute; top: 8px; left: 50%;
  width: 3px; height: 8px;
  background: var(--gold); border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll 1.6s ease-in-out infinite;
}
@keyframes scroll { 0%,100% { opacity: 1; transform: translate(-50%,0); } 50% { opacity: 0.4; transform: translate(-50%, 14px); } }
.scroll-down p { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; }

/* =====================================================
   MARQUEE
===================================================== */
.marquee {
  background: var(--gold-grad);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  transform: rotate(-1.2deg);
  margin: -20px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 10px 40px rgba(212,175,55,0.3);
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--black);
  letter-spacing: 4px;
  text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====================================================
   SECTION HELPERS
===================================================== */
section { padding: 120px 0; position: relative; }
.section-label {
  display: inline-block; font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 5px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 18px; position: relative;
  padding-left: 40px;
}
.section-label::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 30px; height: 1px; background: var(--gold);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05; margin-bottom: 22px;
  letter-spacing: 2px;
}
.section-title.center { text-align: center; }
.section-lead {
  font-size: 18px; color: var(--gray-2);
  margin-bottom: 20px; color: var(--gray);
}
.section-lead.center { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-text { color: var(--gray); font-size: 16px; margin-bottom: 18px; }
.section-head { margin-bottom: 70px; }

/* =====================================================
   ABOUT
===================================================== */
.about {
  background:
    radial-gradient(ellipse at top right, rgba(212,175,55,0.06), transparent 60%),
    var(--black);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}
.img-main, .img-sub {
  position: absolute; overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(212,175,55,0.15);
}
.img-main {
  top: 0; left: 0; width: 75%; height: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.img-sub {
  bottom: 30px; right: 0; width: 50%; height: 45%;
  border: 6px solid var(--black);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  z-index: 2;
}
.img-main img, .img-sub img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.img-main:hover img, .img-sub:hover img { transform: scale(1.08); }

.badge-experience {
  position: absolute; top: 20px; right: 10px;
  width: 140px; height: 140px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--black);
  box-shadow: 0 20px 50px rgba(212,175,55,0.5);
  z-index: 3;
  animation: spin-slow 14s linear infinite;
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.badge-experience::after {
  content: ''; position: absolute; inset: 8px;
  border: 1px dashed var(--black); border-radius: 50%;
}
.badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px; line-height: 1;
  animation: spin-reverse 14s linear infinite;
}
.badge-txt {
  font-family: 'Cinzel', serif; font-size: 11px;
  letter-spacing: 2px; text-align: center; text-transform: uppercase;
  margin-top: 2px;
  animation: spin-reverse 14s linear infinite;
}
@keyframes spin-reverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.about-features { margin: 30px 0; }
.about-features li {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  color: var(--white); font-size: 15px;
  border-bottom: 1px solid var(--gray-3);
}
.about-features li:last-child { border-bottom: none; }
.about-features i {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold-grad); color: var(--black);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}

.about-cta {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
}
.ig-pill {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 22px;
  background: var(--black-3);
  border: 1px solid var(--gray-3);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.ig-pill:hover {
  border-color: var(--gold);
  background: var(--black-2);
  transform: translateY(-3px);
}
.ig-pill i {
  font-size: 24px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ig-pill div { display: flex; flex-direction: column; line-height: 1.2; }
.ig-pill strong { font-size: 14px; color: var(--white); }
.ig-pill small { font-size: 11px; color: var(--gray); }

/* =====================================================
   SERVICES
===================================================== */
.services {
  background: var(--black-2);
  position: relative;
}
.services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
/* ===== TRAIN. TRANSFORM. TRIUMPH ===== */
.ttt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.ttt-card {
  position: relative;
  height: 460px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--gray-3);
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s ease;
}
.ttt-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(212,175,55,0.25);
  border-color: var(--gold);
}
.ttt-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.6s ease;
  filter: grayscale(0.4) brightness(0.7);
}
.ttt-card:hover img {
  transform: scale(1.12);
  filter: grayscale(0) brightness(0.85);
}
.ttt-overlay {
  position: absolute; inset: 0;
  padding: 40px 30px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.95) 100%);
  color: var(--white);
}
.ttt-num {
  position: absolute; top: 28px; left: 30px;
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: 18px; letter-spacing: 3px;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.ttt-overlay h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 6px;
  margin-bottom: 12px;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(212,175,55,0.3));
  transition: transform 0.4s ease, letter-spacing 0.4s ease;
}
.ttt-card:hover .ttt-overlay h3 {
  letter-spacing: 8px;
}
.ttt-overlay p {
  font-size: 14px;
  color: var(--gray);
  max-width: 90%;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.ttt-card:hover .ttt-overlay p {
  transform: translateY(0);
  opacity: 1;
}
.ttt-overlay::before {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 4px; height: 0;
  background: var(--gold-grad);
  transition: height 0.5s ease;
}
.ttt-card:hover .ttt-overlay::before { height: 100%; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.service-card {
  background: var(--black-3);
  border: 1px solid var(--gray-3);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  position: relative;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease; z-index: 2;
}
.service-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(212,175,55,0.15);
}
.service-card:hover::before { transform: scaleX(1); }

.service-img {
  height: 240px; overflow: hidden; position: relative;
}
.service-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.85) 100%);
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.service-card:hover .service-img img { transform: scale(1.1); }

.service-body { padding: 30px; position: relative; }
.service-num {
  position: absolute; top: -25px; right: 30px;
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: 64px;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.service-card:hover .service-num { opacity: 0.7; transform: translateY(-5px); }

.service-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 2px;
  margin-bottom: 12px; color: var(--white);
}
.service-body p { color: var(--gray); font-size: 14px; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  transition: gap 0.3s ease;
}
.service-link:hover { gap: 14px; }

/* =====================================================
   STATS SECTION
===================================================== */
.stats-section {
  position: relative; padding: 100px 0;
  overflow: hidden;
}
.stats-bg { position: absolute; inset: 0; z-index: 0; }
.stats-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5); }
.stats-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92), rgba(10,10,10,0.8));
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.stat-box {
  text-align: center; padding: 40px 20px;
  border: 1px solid rgba(212,175,55,0.15);
  background: rgba(0,0,0,0.5);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.stat-box:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  background: rgba(212,175,55,0.05);
}
.stat-box i {
  font-size: 36px; color: var(--gold);
  margin-bottom: 16px;
}
.big-num, .stat-box .plus {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-box p {
  color: var(--gray); font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase;
  margin-top: 12px;
}

/* =====================================================
   WHY CHOOSE
===================================================== */
.why-choose {
  background: var(--black);
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-list { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 18px;
  border-left: 2px solid var(--gold);
  background: var(--black-2);
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}
.why-item:hover {
  transform: translateX(8px);
  background: var(--black-3);
}
.why-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: var(--gold-grad);
  color: var(--black); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.why-item h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 2px; color: var(--white);
  margin-bottom: 4px;
}
.why-item p { font-size: 14px; color: var(--gray); margin: 0; }

.why-image { position: relative; }
.why-image img {
  width: 100%; height: 600px; object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.floating-card {
  position: absolute; bottom: 30px; left: -30px;
  background: var(--white); color: var(--black);
  padding: 16px 22px; border-radius: 12px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  animation: bounce-soft 2.5s ease-in-out infinite;
}
@keyframes bounce-soft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.floating-card i {
  font-size: 28px; color: var(--gold);
}
.floating-card strong { display: block; font-size: 16px; }
.floating-card small { font-size: 11px; color: var(--gray-2); }

/* =====================================================
   GALLERY
===================================================== */
.gallery { background: var(--black-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 8px;
  cursor: pointer;
  border: 1px solid var(--gray-3);
}
.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 0.8s ease, filter 0.5s ease;
  filter: brightness(0.8);
}
.gallery-item:hover img { transform: scale(1.12); filter: brightness(1); }
.gallery-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  transform: translateY(100%); transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-info { transform: translateY(0); }
.gallery-info span {
  font-family: 'Cinzel', serif; font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
}
.gallery-info i { color: var(--gold); }

/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonials {
  background: var(--black);
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: '"'; position: absolute;
  top: 10%; right: 5%;
  font-family: 'Playfair Display', serif;
  font-size: 600px; line-height: 1;
  color: var(--gold); opacity: 0.04;
  pointer-events: none;
  overflow: hidden;
  max-width: 100%;
}
.testimonials { overflow: hidden; }
.testimonial-slider { position: relative; max-width: 1100px; margin: 0 auto; overflow: hidden; }
.testimonial-track {
  display: flex; transition: transform 0.6s var(--ease);
}
.testimonial-card {
  min-width: 100%;
  padding: 50px;
  background: var(--black-2);
  border: 1px solid var(--gray-3);
  border-radius: 16px;
  text-align: center;
  position: relative;
}
.testimonial-card .quote {
  font-size: 60px;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  opacity: 0.8;
}
.testimonial-card p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 26px;
  line-height: 1.7;
  max-width: 800px; margin-left: auto; margin-right: auto;
}
.stars { color: var(--gold); margin-bottom: 26px; letter-spacing: 4px; }
.author {
  display: inline-flex; align-items: center; gap: 14px;
}
.author img {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.author strong { display: block; font-size: 15px; color: var(--white); }
.author span { font-size: 12px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 30px; margin-top: 40px;
}
.slider-btn {
  width: 50px; height: 50px; border: 1px solid var(--gray-3);
  border-radius: 50%; color: var(--gold);
  transition: all 0.3s ease;
}
.slider-btn:hover {
  background: var(--gold-grad);
  color: var(--black);
  border-color: var(--gold);
}
.slider-dots { display: flex; gap: 10px; }
.slider-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray-3); cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dots span.active {
  background: var(--gold); width: 30px; border-radius: 6px;
}

/* =====================================================
   INSTAGRAM CTA
===================================================== */
.ig-cta {
  background: var(--black-2);
  position: relative;
}
.ig-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.ig-grid-imgs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ig-tile {
  aspect-ratio: 1; overflow: hidden; border-radius: 8px;
  position: relative; display: block;
}
.ig-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.ig-tile:hover img { transform: scale(1.1); }
.ig-tile span {
  position: absolute; inset: 0;
  background: linear-gradient(45deg, rgba(240,148,51,0.85), rgba(220,39,67,0.85), rgba(188,24,136,0.85));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 36px;
  opacity: 0; transition: opacity 0.4s ease;
}
.ig-tile:hover span { opacity: 1; }

/* =====================================================
   CONTACT
===================================================== */
.contact {
  background: var(--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.2fr;
  gap: 80px;
}
.contact-list { margin-top: 30px; display: flex; flex-direction: column; gap: 22px; }
.contact-list li {
  display: flex; gap: 18px; align-items: center;
}
.contact-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: var(--black-3); border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 18px;
}
.contact-list small {
  display: block; color: var(--gray); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2px;
}
.contact-list a, .contact-list span { color: var(--white); font-weight: 500; transition: color 0.3s ease; }
.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: var(--black-2);
  border: 1px solid var(--gray-3);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.contact-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 2px;
  color: var(--white); margin-bottom: 30px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 22px; }
.form-group { position: relative; }
.form-group.full { margin-bottom: 22px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 18px 16px 8px;
  background: var(--black-3);
  border: 1px solid var(--gray-3);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit; font-size: 15px;
  transition: border-color 0.3s ease;
  resize: vertical;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group label {
  position: absolute; top: 18px; left: 16px;
  color: var(--gray); font-size: 14px;
  pointer-events: none; transition: 0.3s ease;
  background: var(--black-3); padding: 0 6px;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select.has-value + label {
  top: -8px; font-size: 11px; color: var(--gold); letter-spacing: 1px;
}

.full-btn { width: 100%; justify-content: center; }
.form-success {
  margin-top: 20px; padding: 14px; border-radius: 8px;
  background: rgba(212,175,55,0.1); border: 1px solid var(--gold);
  color: var(--gold); font-size: 14px; text-align: center;
  display: none;
}
.form-success.show { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }


/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: var(--black-2);
  padding-top: 80px;
  border-top: 1px solid var(--gray-3);
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px; padding-bottom: 50px;
}
.footer-brand img {
  width: 100px;
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(212,175,55,0.6));
  margin-bottom: 20px;
}

.zenesa-link {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}
.zenesa-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.zenesa-link:hover { color: var(--gold-2); }
.zenesa-link:hover::after { transform: scaleX(1); }
.footer-brand p { color: var(--gray); font-size: 14px; margin-bottom: 22px; max-width: 320px; }

.socials { display: flex; gap: 12px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--gray-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); transition: all 0.3s ease;
}
.socials a:hover {
  background: var(--gold-grad); color: var(--black);
  border-color: var(--gold); transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Cinzel', serif; font-size: 14px;
  color: var(--white); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 22px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px; background: var(--gold);
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a {
  color: var(--gray); font-size: 14px;
  transition: all 0.3s ease;
}
.footer-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-col p { color: var(--gray); font-size: 14px; margin-bottom: 16px; }

.news-form {
  display: flex; border: 1px solid var(--gray-3);
  border-radius: 50px; overflow: hidden;
}
.news-form input {
  flex: 1; padding: 12px 18px;
  background: transparent; border: none;
  color: var(--white); font-family: inherit; font-size: 14px;
}
.news-form input:focus { outline: none; }
.news-form button {
  padding: 0 22px; background: var(--gold-grad); color: var(--black);
  transition: filter 0.3s ease;
}
.news-form button:hover { filter: brightness(1.15); }

.footer-bottom {
  border-top: 1px solid var(--gray-3);
  padding: 26px 0;
}
.footer-bottom .container {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { color: var(--gray); font-size: 13px; }

/* =====================================================
   BACK TO TOP
===================================================== */
.back-top {
  position: fixed; right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  background: var(--gold-grad); color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; z-index: 100;
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-5px) scale(1.08); }

/* =====================================================
   AOS-LIKE ANIMATIONS
===================================================== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s var(--ease);
}
[data-aos="fade-up"] { transform: translateY(50px); }
[data-aos="fade-down"] { transform: translateY(-50px); }
[data-aos="fade-left"] { transform: translateX(50px); }
[data-aos="fade-right"] { transform: translateX(-50px); }
[data-aos="zoom-in"] { transform: scale(0.85); }

[data-aos].animate {
  opacity: 1;
  transform: translate(0,0) scale(1);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1100px) {
  .about-grid, .why-grid, .contact-grid, .ig-grid {
    grid-template-columns: 1fr; gap: 60px;
  }
  .about-images { height: 500px; }
  .why-image img { height: 460px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ttt-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 60px; }
  .ttt-card { height: 360px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .floating-card { left: 20px; right: auto; }
  .why-image { padding-bottom: 30px; }
  .marquee { overflow: hidden; }
  .ttt-overlay h3, .ttt-overlay p { max-width: 100%; }
  .hero, .hero-content, section { max-width: 100vw; overflow-x: hidden; }

  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px;
    height: 100vh;
    background: var(--black-2);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: right 0.5s var(--ease);
    border-left: 1px solid var(--gold);
    padding: 40px;
    z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-menu .nav-link { color: #ffffff; }
  .nav-menu .nav-link:hover, .nav-menu .nav-link.active { color: var(--gold); }

  .nav-toggle { display: flex; position: relative; z-index: 1001; }
  .nav-toggle span { background: #0a0a0a; }
  .nav-toggle.active span { background: var(--gold); }
  .cta-link { padding: 12px 28px; }
  .brand-name { font-size: 18px; }
  .brand-sub { font-size: 9px; letter-spacing: 3px; }
  .nav-logo img { width: 42px; height: 42px; }

  section { padding: 80px 0; }
  .hero { padding: 130px 0 60px; min-height: 100vh; }
  .hero-tag { font-size: 9px; letter-spacing: 3px; padding: 8px 16px; }
  .tag-line { width: 18px; }
  .hero-subtitle { font-size: 15px; }
  .hero-stats { gap: 24px; padding: 22px; }
  .hero-stat .stat-num, .hero-stat .plus { font-size: 36px; }
  .hero-stat p { font-size: 10px; }
  .divider { display: none; }
  .scroll-down { display: none; }

  .marquee-track { font-size: 18px; gap: 32px; }

  .section-head { margin-bottom: 50px; }
  .about-images { height: 420px; }
  .img-main { width: 80%; }
  .img-sub { width: 55%; }
  .badge-experience { width: 110px; height: 110px; }
  .badge-num { font-size: 42px; }
  .badge-txt { font-size: 9px; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .big-num, .stat-box .plus { font-size: 44px; }
  .stat-box { padding: 26px 14px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }

  .testimonial-card { padding: 32px 22px; }
  .testimonial-card p { font-size: 17px; }

  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 6px; }

  .btn { padding: 14px 28px; font-size: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .title-line.small { letter-spacing: 4px; }
  .hero-cta { width: 100%; flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .marquee-track { font-size: 14px; gap: 24px; }
  .ig-grid-imgs { grid-template-columns: 1fr 1fr; }
  .floating-card { left: 50%; transform: translateX(-50%); bottom: 20px; }
  @keyframes bounce-soft { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,-10px); } }
}
