/* =============================================
   TƏRLAN ƏLİYEV — FITNESS TRAINER
   style.css
   ============================================= */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,400&display=swap");

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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #9a7a2e;
  --silver: #a8b2c0;
  --black: #080808;
  --dark: #0f0f0f;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --dark4: #252525;
  --white: #f5f5f0;
  --white2: #ddddd5;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  cursor: default;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}
ul {
  list-style: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}

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

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  width: 400px;
  height: 400px;
  animation: loaderPulse 1.5s ease infinite;
}
.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--dark3);
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-light)
  );
  animation: loaderSlide 1.5s ease forwards;
}
@keyframes loaderPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes loaderSlide {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ── CURSOR ── */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
.cursor-follower {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition:
    transform 0.15s ease,
    width 0.3s ease,
    height 0.3s ease,
    opacity 0.3s ease;
}
.cursor-follower.expanded {
  width: 56px;
  height: 56px;
  opacity: 0.6;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 75px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(8, 8, 8, 0.97);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  height: 65px;
  backdrop-filter: blur(10px);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  overflow: hidden;
  object-fit: cover;
}
.nav-brand-text {
  line-height: 1.2;
}
.nav-brand-name {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-brand-name span {
  color: var(--gold);
}
.nav-brand-sub {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--silver);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--silver);
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switcher {
  display: flex;
  gap: 4px;
}
.lang-btn {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--silver);
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  text-transform: uppercase;
  transition: var(--transition);
  font-family: "Montserrat", sans-serif;
}
.lang-btn:hover,
.lang-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.btn-nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 10px 24px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  transition: var(--transition);
}
.btn-nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  display: block;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.98);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 30px 40px;
  z-index: 999;
  backdrop-filter: blur(10px);
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--silver);
  text-transform: uppercase;
}
.mobile-menu a:hover {
  color: var(--gold);
}
.mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

/* ── HERO ── */
#hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* background-image: url('assets/images/main-1.jpg'); */
  background-size: cover;
  background-position: center top;
  transform: scale(1.1);
  transition: transform 0.1s linear;
  filter: brightness(0.65);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 8, 8, 0.55) 0%,
    rgba(8, 8, 8, 0.25) 50%,
    rgba(8, 8, 8, 0.05) 100%
  );
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(201, 168, 76, 0.03) 0,
      rgba(201, 168, 76, 0.03) 1px,
      transparent 1px,
      transparent 100px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(201, 168, 76, 0.02) 0,
      rgba(201, 168, 76, 0.02) 1px,
      transparent 1px,
      transparent 100px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 720px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s ease forwards;
}
.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  line-height: 0.95;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.35s ease forwards;
}
.hero-title .line1 {
  font-size: 88px;
  font-weight: 900;
  color: var(--gold);
  display: block;
}
.hero-title .line2 {
  font-size: 72px;
  font-weight: 400;
  font-style: italic;
  color: var(--silver);
  display: block;
}

.hero-separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.45s ease forwards;
}
.hero-separator span {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--silver);
  text-transform: uppercase;
}
.hero-separator::before,
.hero-separator::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold-dark), transparent);
}

.hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.55);
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.55s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.8s 0.65s ease forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::after {
  transform: translateX(0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white2);
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(245, 245, 240, 0.25);
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 80px;
  z-index: 2;
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.8s ease forwards;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--silver);
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--silver);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.8s 1s ease forwards;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.6);
    opacity: 0.4;
  }
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 25s linear infinite;
}
.ticker-item {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 32px;
}
.ticker-dot {
  color: rgba(8, 8, 8, 0.4);
  padding: 0 8px;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SECTION BASE ── */
.section {
  padding: 110px 80px;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 70px;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.section-desc {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.55);
  font-weight: 300;
  margin-top: 16px;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── SERVICES ── */
#services {
  background: var(--dark);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.12);
}
.service-card {
  background: var(--dark2);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover {
  background: #1a1608;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card-num {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.1);
  margin-bottom: 20px;
  line-height: 1;
}
.service-card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.5);
  font-weight: 300;
}
.service-card-price {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

/* ── PAIN POINTS ── */
#pain {
  background: var(--black);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.08);
}
.pain-item {
  background: var(--dark);
  padding: 36px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.pain-problem {
  flex: 1;
}
.pain-problem p {
  font-size: 15px;
  color: rgba(245, 245, 240, 0.5);
  font-weight: 300;
  line-height: 1.6;
}
.pain-arrow {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}
.pain-solution {
  flex: 1;
}
.pain-solution-tag {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}
.pain-solution p {
  font-size: 14px;
  color: var(--white2);
  font-weight: 400;
  line-height: 1.6;
}

/* ── ABOUT ── */
#about {
  background: var(--dark);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-frame {
  position: relative;
  overflow: hidden;
}
.about-img-frame img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.about-img-frame:hover img {
  transform: scale(1.04);
}
.about-img-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(8, 8, 8, 0.5));
  z-index: 1;
}
.about-img-border {
  position: absolute;
  top: 16px;
  left: -16px;
  right: 16px;
  bottom: -16px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
  z-index: 0;
}
.about-img-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(8, 8, 8, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 12px 20px;
}
.about-img-label span {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
}

.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(245, 245, 240, 0.65);
  font-weight: 300;
  margin-bottom: 18px;
}
.about-quote {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  border-left: 2px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  line-height: 1.6;
  background: rgba(201, 168, 76, 0.04);
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.badge {
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 7px 18px;
  text-transform: uppercase;
}

/* ── ACHIEVEMENTS ── */
#achievements {
  background: var(--black);
}
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.achievement-card {
  position: relative;
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.1);
}
.achievement-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
  filter: brightness(0.8);
}
.achievement-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}
.achievement-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 0%, transparent 100%);
  padding: 30px 24px 24px;
}
.achievement-tag {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.achievement-title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

/* ── STATS COUNTER ── */
.stats-bar {
  background: var(--gold);
  padding: 50px 80px;
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat-item {
  text-align: center;
  flex: 1;
  position: relative;
}
.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(8, 8, 8, 0.2);
}
.stat-num {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.stat-suffix {
  font-size: 28px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(8, 8, 8, 0.6);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 8px;
}

/* ── TRAINING ── */
#training {
  background: var(--dark);
}
.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.training-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
}
.training-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
  filter: brightness(0.7);
}
.training-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}
.training-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.9) 0%, transparent 60%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.training-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.training-desc {
  font-size: 13px;
  color: rgba(245, 245, 240, 0.6);
  font-weight: 300;
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--black);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.08);
  padding: 36px 32px;
  position: relative;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-family: "Montserrat", sans-serif;
  font-size: 72px;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.7);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 28px;
  padding-top: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.author-result {
  font-size: 11px;
  color: var(--gold);
  margin-top: 2px;
  letter-spacing: 0.5px;
}
.stars {
  color: var(--gold);
  font-size: 11px;
  margin-bottom: 4px;
  letter-spacing: 2px;
}

/* ── HOW IT WORKS ── */
#how {
  background: var(--dark);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
  margin-top: 60px;
}
.step-card {
  background: var(--dark2);
  padding: 48px 40px;
  position: relative;
}
.step-num {
  font-family: "Montserrat", sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  margin-bottom: 20px;
  position: absolute;
  top: 20px;
  right: 28px;
}
.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.step-title {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.55);
  font-weight: 300;
}

/* ── FAQ ── */
#faq {
  background: var(--black);
}
.faq-list {
  max-width: 800px;
}
.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.faq-question {
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-question.open {
  color: var(--gold);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.3s;
}
.faq-question.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(201, 168, 76, 0.1);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.6);
  font-weight: 300;
}

/* ── BOOKING ── */
#booking {
  background: var(--dark);
}
.booking-inner {
  max-width: 680px;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--silver);
  text-transform: uppercase;
  font-weight: 500;
}
.form-input,
.form-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--white);
  padding: 15px 18px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}
.form-input::placeholder {
  color: rgba(245, 245, 240, 0.2);
}
.form-select option {
  background: var(--dark2);
  color: var(--white);
}

.otp-note {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--silver);
}
.otp-note-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.btn-submit {
  background: var(--gold);
  color: var(--black);
  padding: 18px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
  transition: var(--transition);
}
.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.3);
}
.form-note {
  font-size: 11px;
  color: rgba(245, 245, 240, 0.3);
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: #050505;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.footer-top {
  padding: 70px 80px 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand-name {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-brand-name span {
  color: var(--gold);
}
.footer-brand-sub {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--silver);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(245, 245, 240, 0.4);
  line-height: 1.7;
  font-weight: 300;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(245, 245, 240, 0.5);
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}
.footer-contact-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--silver);
  text-transform: uppercase;
}
.footer-contact-val {
  font-size: 13px;
  color: rgba(245, 245, 240, 0.6);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--silver);
  transition: var(--transition);
  font-weight: 600;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.footer-bottom {
  padding: 24px 80px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 11px;
  color: rgba(245, 245, 240, 0.25);
  letter-spacing: 1px;
}
.footer-made {
  font-size: 11px;
  color: rgba(245, 245, 240, 0.25);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  #navbar {
    padding: 0 40px;
  }
  .nav-links {
    gap: 24px;
  }
  .hero-content {
    padding: 0 50px;
  }
  .hero-title .line1 {
    font-size: 72px;
  }
  .hero-title .line2 {
    font-size: 60px;
  }
  .section {
    padding: 90px 50px;
  }
  .stats-bar {
    padding: 50px 40px;
  }
  .footer-top {
    padding: 60px 50px 40px;
    gap: 40px;
  }
  .footer-bottom {
    padding: 24px 50px;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-right .btn-nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-right .lang-switcher {
    display: flex;
  }

  .hero-title .line1 {
    font-size: 60px;
  }
  .hero-title .line2 {
    font-size: 50px;
  }
  .hero-stats {
    right: 40px;
    bottom: 40px;
    gap: 28px;
  }
  .hero-stat-num {
    font-size: 30px;
  }
  .hero-scroll {
    left: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-img-frame img {
    height: 400px;
  }
  .achievements-grid {
    grid-template-columns: 1fr 1fr;
  }
  .training-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .stats-bar {
    padding: 40px 30px;
    gap: 0;
  }
  .stat-num {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  #navbar {
    padding: 0 24px;
    height: 65px;
  }
  .hero-content {
    padding: 0 24px;
  }
  .hero-title .line1 {
    font-size: 48px;
  }
  .hero-title .line2 {
    font-size: 40px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats {
    display: none;
  }
  .hero-scroll {
    display: none;
  }
  .section {
    padding: 70px 24px;
  }
  .section-title {
    font-size: 34px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  .training-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    padding: 36px 24px;
    flex-wrap: wrap;
    gap: 24px;
  }
  .stat-item::before {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
    padding: 50px 24px 30px;
  }
  .footer-bottom {
    padding: 20px 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
