/* ================================================================
   TRANSFORM GYM — CSS DESIGN SYSTEM
   Premium Dark-Theme Fitness Website
   Version: 1.0.0
   ================================================================ */

/* ----------------------------------------------------------------
   0. GOOGLE FONTS IMPORT
   ---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ----------------------------------------------------------------
   1. DESIGN TOKENS (Custom Properties)
   ---------------------------------------------------------------- */
:root {
  /* — Colors — */
  --bg-primary: #0a0a0e;
  --bg-secondary: #0e1014;
  --bg-tertiary: #12141a;
  --bg-card: linear-gradient(180deg, #191b23, #13151b);

  --accent-primary: #adfd07;
  --accent-secondary: #00f0ff;
  --accent-red: #ff6b6b;
  --accent-purple: #a855f7;
  --accent-amber: #ffb800;

  --text-white: #ffffff;
  --text-primary: #e0e0e0;
  --text-secondary: #bbbbbb;
  --text-muted: #888888;
  --text-dim: #666666;

  --border-default: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(173, 253, 7, 0.25);

  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;

  --gradient-green: linear-gradient(135deg, #adfd07, #7dd307);
  --gradient-cyan: linear-gradient(135deg, #00f0ff, #0088ff);
  --gradient-instagram: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);

  /* — Typography — */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', 'Inter', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  /* — Spacing (4px base unit) — */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */

  /* — Border Radius — */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* — Transitions — */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* — Shadows — */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-accent: 0 4px 24px rgba(173, 253, 7, 0.15);
  --shadow-accent-lg: 0 8px 40px rgba(173, 253, 7, 0.2);
  --shadow-whatsapp: 0 4px 20px rgba(37, 211, 102, 0.3);

  /* — Z-Indexes — */
  --z-header: 1000;
  --z-mobile-menu: 1500;
  --z-modal: 2000;
  --z-contact-bar: 999999;

  /* — Container Widths — */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 60px; /* Space for fixed contact bar */
}

/* — Selection — */
::selection {
  background-color: var(--accent-primary);
  color: var(--bg-primary);
}

::-moz-selection {
  background-color: var(--accent-primary);
  color: var(--bg-primary);
}

/* — Custom Scrollbar — */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--text-dim);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--text-dim) var(--bg-secondary);
}

/* — Focus Visible — */
:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* — Typography Base — */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

/* — Links — */
a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-primary);
}

/* — Media — */
img,
video {
  max-width: 100%;
  display: block;
  height: auto;
}

/* — Lists — */
ul, ol {
  list-style: none;
}

/* — Misc — */
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

hr {
  border: none;
  border-top: 1px solid var(--border-default);
  margin: var(--space-8) 0;
}

/* ----------------------------------------------------------------
   3. CONTAINER & LAYOUT
   ---------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

/* — Sections — */
.section {
  padding: 80px 0;
  position: relative;
  overflow-x: hidden;
}

.section--dark {
  background-color: var(--bg-secondary);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section__title {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: var(--space-4);
}

.section__subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* — Grids — */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

/* ----------------------------------------------------------------
   4. HEADER & NAVIGATION
   ---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: 16px 0;
  background: rgba(10, 10, 14, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.header--scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 14, 0.95);
  border-bottom-color: var(--border-default);
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.header__logo-link {
  display: flex;
  align-items: center;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header__nav-link {
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  padding: var(--space-1) 0;
  transition: color var(--transition-fast);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--accent-primary);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  width: 100%;
}

.header__cta {
  background: var(--accent-primary);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.header__cta:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-accent);
  color: var(--bg-primary);
}

/* — Hamburger — */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: calc(var(--z-mobile-menu) + 1);
  position: relative;
}

.header__hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: absolute;
}

.header__hamburger-bar:nth-child(1) {
  transform: translateY(-7px);
}

.header__hamburger-bar:nth-child(2) {
  transform: translateY(0);
}

.header__hamburger-bar:nth-child(3) {
  transform: translateY(7px);
}

/* Animated to X */
.header__hamburger.active .header__hamburger-bar:nth-child(1) {
  transform: translateY(0) rotate(45deg);
  background: var(--accent-primary);
}

.header__hamburger.active .header__hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.header__hamburger.active .header__hamburger-bar:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
  background: var(--accent-primary);
}

/* — Mobile Menu — */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-mobile-menu);
  background: rgba(10, 10, 14, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  color: var(--text-white);
  font-size: 1.5rem;
  font-weight: 700;
  transition: color var(--transition-fast);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-base);
}

.mobile-menu.active .mobile-menu__link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.active .mobile-menu__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active .mobile-menu__link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu__link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu__link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu__link:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu__link:nth-child(7) { transition-delay: 0.35s; }

.mobile-menu__link:hover {
  color: var(--accent-primary);
}

.mobile-menu__cta {
  margin-top: var(--space-6);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-base);
}

.mobile-menu.active .mobile-menu__cta {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.4s;
}

/* ----------------------------------------------------------------
   5. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 0 80px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero__stats-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}

.hero--short {
  min-height: 90vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 14, 0.7) 0%,
    rgba(10, 10, 14, 0.5) 40%,
    rgba(10, 10, 14, 0.85) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(173, 253, 7, 0.08);
  border: 1px solid rgba(173, 253, 7, 0.2);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: var(--space-6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero__accent {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__accent--cyan {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* — Hero Video Buttons — */
.hero__videos {
  margin-top: var(--space-6);
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__video-thumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.hero__video-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-2px);
}

/* — Hero Stats Bar — */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-default);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-primary);
  line-height: 1.1;
  margin-bottom: var(--space-1);
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ----------------------------------------------------------------
   6. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.2;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
}

/* Primary */
.btn--primary {
  background: var(--accent-primary);
  color: var(--bg-primary);
  border-color: var(--accent-primary);
}

.btn--primary:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-accent);
  color: var(--bg-primary);
}

.btn--primary:active {
  transform: scale(0.98);
}

/* Secondary / Outline Accent */
.btn--secondary {
  background: transparent;
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.btn--secondary:hover {
  background: rgba(173, 253, 7, 0.08);
  transform: scale(1.03);
  color: var(--accent-primary);
}

/* Outline White */
.btn--outline {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  border-color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}

/* WhatsApp */
.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--text-white);
  border-color: var(--whatsapp);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  box-shadow: var(--shadow-whatsapp);
  transform: scale(1.03);
  color: var(--text-white);
}

.btn--whatsapp .btn__icon {
  width: 18px;
  height: 18px;
}

/* Instagram */
.btn--instagram {
  background: var(--gradient-instagram);
  color: var(--text-white);
  border-color: transparent;
}

.btn--instagram:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.35);
  color: var(--text-white);
}

/* Cyan */
.btn--cyan {
  background: var(--accent-secondary);
  color: var(--bg-primary);
  border-color: var(--accent-secondary);
}

.btn--cyan:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.25);
  color: var(--bg-primary);
}

/* Size variants */
.btn--sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* Button Icon */
.btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   7. CARDS (Generic)
   ---------------------------------------------------------------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-accent);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(173, 253, 7, 0.08);
  margin-bottom: var(--space-5);
  flex-shrink: 0;
}

.card__icon img,
.card__icon svg {
  width: 24px;
  height: 24px;
}

.card__icon--cyan {
  background: rgba(0, 240, 255, 0.08);
}

.card__icon--red {
  background: rgba(255, 107, 107, 0.08);
}

.card__icon--purple {
  background: rgba(168, 85, 247, 0.08);
}

.card__icon--amber {
  background: rgba(255, 184, 0, 0.08);
}

.card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-3);
}

.card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Card Variants */
.card--service {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.card--service .card__image {
  height: 200px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.card--service .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card--service:hover .card__image img {
  transform: scale(1.05);
}

.card--service .card__body {
  padding: 24px 28px 28px;
}

/* Pricing card base */
.card--pricing {
  text-align: center;
  padding: 32px 28px;
}

.card--pricing .card__price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: var(--space-2);
}

.card--pricing .card__price-period {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.card--pricing .card__tier {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
}

/* Featured pricing */
.card--pricing--featured {
  border-color: var(--accent-primary);
  border-width: 2px;
  position: relative;
}

.card--pricing--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-green);
}

.card--pricing__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-primary);
  color: var(--bg-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ----------------------------------------------------------------
   8. SERVICE CARDS (Mağaza / Homepage)
   ---------------------------------------------------------------- */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-accent);
}

.service-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image img {
  transform: scale(1.06);
}

.service-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10, 10, 14, 0.9), transparent);
  pointer-events: none;
}

.service-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(173, 253, 7, 0.12);
  border: 1px solid rgba(173, 253, 7, 0.25);
  color: var(--accent-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card__badge--red {
  background: rgba(255, 107, 107, 0.12);
  border-color: rgba(255, 107, 107, 0.25);
  color: var(--accent-red);
}

.service-card__badge--purple {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
  color: var(--accent-purple);
}

.service-card__badge--cyan {
  background: rgba(0, 240, 255, 0.12);
  border-color: rgba(0, 240, 255, 0.25);
  color: var(--accent-secondary);
}

.service-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-2);
}

.service-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex: 1;
}

.service-card__price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-primary);
  margin-bottom: var(--space-4);
}

.service-card__price-period {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.service-card__cta {
  margin-top: auto;
}

/* ----------------------------------------------------------------
   9. PRICING TABLES
   ---------------------------------------------------------------- */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-accent);
}

.pricing-card--featured {
  border-color: var(--accent-primary);
  border-width: 2px;
  transform: scale(1.03);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-green);
}

.pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-primary);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card__tier {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-4);
}

.pricing-card__price {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: var(--space-1);
  line-height: 1;
}

.pricing-card__price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  vertical-align: top;
  margin-right: 2px;
}

.pricing-card__price-period {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.pricing-card__divider {
  border: none;
  border-top: 1px solid var(--border-default);
  margin: var(--space-6) 0;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-8);
  text-align: left;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pricing-feature::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(173, 253, 7, 0.1);
  color: var(--accent-primary);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-feature--disabled {
  opacity: 0.4;
}

.pricing-feature--disabled::before {
  content: '✕';
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
}

/* ----------------------------------------------------------------
   10. TESTIMONIALS
   ---------------------------------------------------------------- */
.testimonials {
  overflow: hidden;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
}

.testimonial-card__star {
  color: var(--accent-amber);
  font-size: 0.9rem;
}

.testimonial-card__text {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  position: relative;
  padding-left: var(--space-4);
  border-left: 2px solid var(--border-hover);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-default);
}

.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0;
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ----------------------------------------------------------------
   11. FAQ ACCORDION
   ---------------------------------------------------------------- */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border-default);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: color var(--transition-fast);
  gap: var(--space-4);
}

.faq__question:hover {
  color: var(--accent-primary);
}

.faq__question-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all var(--transition-base);
  position: relative;
}

.faq__question-icon::before {
  content: '+';
}

.faq__question.active {
  color: var(--accent-primary);
}

.faq__question.active .faq__question-icon {
  background: rgba(173, 253, 7, 0.1);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow) ease,
              padding var(--transition-base) ease;
}

.faq__answer.active {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq__answer-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-right: 48px;
}

/* ----------------------------------------------------------------
   12. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--bg-secondary);
  padding: 60px 0 0;
  border-top: 1px solid var(--border-default);
  overflow-x: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.footer__brand {
  display: flex;
  flex-direction: column;
}

.footer__brand-logo {
  height: 36px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer__brand-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.footer__title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-5);
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__link {
  display: block;
  color: var(--text-secondary);
  font-size: 0.88rem;
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--accent-primary);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: var(--space-3);
}

.footer__contact-icon {
  color: var(--accent-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid var(--border-default);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(173, 253, 7, 0.08);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   13. FIXED CONTACT BAR
   ---------------------------------------------------------------- */
.contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-contact-bar);
  background: rgba(14, 16, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-default);
  padding: 10px 0;
}

.contact-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 16px;
  gap: var(--space-3);
}

.contact-bar__btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.contact-bar__btn--phone {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border: 1px solid var(--border-default);
}

.contact-bar__btn--phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
}

.contact-bar__btn--whatsapp {
  background: var(--whatsapp);
  color: var(--text-white);
  position: relative;
}

.contact-bar__btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  color: var(--text-white);
}

.contact-bar__btn--whatsapp::before {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-primary);
  animation: pulse 2s ease-in-out infinite;
}

.contact-bar__btn--location {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border: 1px solid var(--border-default);
}

.contact-bar__btn--location:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
}

.contact-bar__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   14. CALCULATOR TOOLS
   ---------------------------------------------------------------- */
.calc {
  max-width: 700px;
  margin: 0 auto;
}

.calc__form {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.calc__group {
  margin-bottom: var(--space-5);
}

.calc__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-2);
}

.calc__input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: 0.92rem;
  transition: border-color var(--transition-fast);
}

.calc__input::placeholder {
  color: var(--text-dim);
}

.calc__input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(173, 253, 7, 0.08);
}

.calc__select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: 0.92rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1.41.59L6 5.17 10.59.59 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  transition: border-color var(--transition-fast);
}

.calc__select:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(173, 253, 7, 0.08);
}

.calc__select option {
  background: var(--bg-tertiary);
  color: var(--text-white);
}

.calc__radio-group {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.calc__radio {
  display: none;
}

.calc__radio-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calc__radio-label:hover {
  border-color: var(--border-hover);
  color: var(--text-white);
}

.calc__radio:checked + .calc__radio-label {
  background: rgba(173, 253, 7, 0.1);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  font-weight: 600;
}

.calc__submit {
  width: 100%;
  margin-top: var(--space-4);
}

/* Result */
.calc__result {
  display: none;
  margin-top: var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 28px;
  animation: fadeInUp 0.4s ease;
}

.calc__result.active {
  display: block;
}

.calc__result-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-4);
}

.calc__result-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-primary);
  margin-bottom: var(--space-2);
}

.calc__result-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Meter / Progress */
.calc__meter {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: var(--space-4);
}

.calc__meter-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--gradient-green);
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0;
}

.calc__meter-fill--cyan {
  background: var(--gradient-cyan);
}

.calc__meter-fill--red {
  background: linear-gradient(135deg, #ff6b6b, #ff4040);
}

/* ----------------------------------------------------------------
   15. BLOG COMPONENTS
   ---------------------------------------------------------------- */

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* Blog Card */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-accent);
}

.blog-card__image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__image--lazy {
  background: var(--bg-tertiary);
}

.blog-card__body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-primary);
  background: rgba(173, 253, 7, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
  align-self: flex-start;
}

.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-3);
  line-height: 1.35;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-card__title {
  color: var(--accent-primary);
}

.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-card__meta-separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-dim);
}

/* Blog Post (Single) */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 120px;
}

.blog-post__header {
  text-align: center;
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border-default);
}

.blog-post__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-primary);
  margin-bottom: var(--space-4);
}

.blog-post__title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: var(--space-5);
  line-height: 1.15;
}

.blog-post__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.blog-post__reading-time {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

/* Blog Post Content — Prose Styling */
.blog-post__content {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.blog-post__content h2 {
  font-size: 1.6rem;
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.blog-post__content h3 {
  font-size: 1.3rem;
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.blog-post__content h4 {
  font-size: 1.1rem;
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.blog-post__content p {
  margin-bottom: var(--space-5);
}

.blog-post__content ul,
.blog-post__content ol {
  margin-bottom: var(--space-5);
  padding-left: var(--space-6);
}

.blog-post__content ul {
  list-style: disc;
}

.blog-post__content ol {
  list-style: decimal;
}

.blog-post__content li {
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
}

.blog-post__content img {
  border-radius: var(--radius-md);
  margin: var(--space-8) 0;
}

.blog-post__content blockquote {
  border-left: 3px solid var(--accent-primary);
  padding: var(--space-4) var(--space-6);
  margin: var(--space-6) 0;
  background: rgba(173, 253, 7, 0.04);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text-secondary);
  font-style: italic;
}

.blog-post__content code {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-primary);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.88em;
}

.blog-post__content pre {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  overflow-x: auto;
  margin: var(--space-6) 0;
}

.blog-post__content pre code {
  background: none;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.blog-post__content a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-post__content strong {
  color: var(--text-white);
  font-weight: 700;
}

/* Blog Post Inline CTA */
.blog-post__cta {
  margin: var(--space-10) 0;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-post__cta::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.blog-post__cta-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.blog-post__cta-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-5);
}

/* Related Posts */
.blog-post__related {
  margin-top: var(--space-16);
  padding-top: var(--space-10);
  border-top: 1px solid var(--border-default);
}

.blog-post__related-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-6);
}

/* ----------------------------------------------------------------
   16. BREADCRUMBS
   ---------------------------------------------------------------- */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.82rem;
  padding: var(--space-4) 0;
}

.breadcrumbs__item {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumbs__item:hover {
  color: var(--accent-primary);
}

.breadcrumbs__separator {
  color: var(--text-dim);
  font-size: 0.7rem;
}

.breadcrumbs__separator::after {
  content: '>';
}

.breadcrumbs__current {
  color: var(--text-secondary);
  font-weight: 500;
}

/* ----------------------------------------------------------------
   17. SCHEDULE TABLE
   ---------------------------------------------------------------- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-default);
}

.schedule-table thead {
  background: rgba(173, 253, 7, 0.1);
}

.schedule-table th {
  background: rgba(173, 253, 7, 0.12);
  color: var(--accent-primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  text-align: left;
}

.schedule-table td {
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-default);
  transition: background var(--transition-fast);
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.schedule-table__time {
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
}

.schedule-table__class {
  font-weight: 600;
  color: var(--text-white);
}

.schedule-table__instructor {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Responsive table wrapper */
.schedule-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}

/* ----------------------------------------------------------------
   18. PRODUCT DETAIL (Hizmet Sayfası)
   ---------------------------------------------------------------- */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
  padding-top: 120px;
}

.product__gallery {
  position: sticky;
  top: 100px;
}

/* Main Image */
.product__gallery-main,
.product__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  margin-bottom: var(--space-4);
  display: block;
  cursor: zoom-in;
  transition: opacity 0.3s ease;
}

/* Thumbnail Strip */
.product__gallery-thumbs,
.product__thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-primary) transparent;
}

.product__gallery-thumbs::-webkit-scrollbar,
.product__thumbnails::-webkit-scrollbar {
  height: 4px;
}

.product__gallery-thumbs::-webkit-scrollbar-thumb,
.product__thumbnails::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 4px;
}

/* Individual Thumbnail */
.product__gallery-thumb,
.product__thumb {
  flex: 0 0 auto;
  width: 88px;
  height: 66px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
  opacity: 0.55;
  scroll-snap-align: start;
  object-fit: cover;
}

.product__gallery-thumb.active,
.product__gallery-thumb:hover,
.product__thumb.active,
.product__thumb:hover {
  border-color: var(--accent-primary);
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(173, 253, 7, 0.2);
}

.product__gallery-thumb img,
.product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product__info {
  padding-top: var(--space-2);
}

.product__title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: var(--space-4);
}

/* Badge in product context — override absolute positioning */
.product__info .service-card__badge {
  position: static;
  display: inline-block;
  margin-bottom: var(--space-3);
}

.product__price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-primary);
  margin-bottom: var(--space-6);
}

.product__price-old {
  font-size: 1rem;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-left: var(--space-3);
  font-weight: 400;
}

.product__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.product__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
}

.product__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.product__meta-icon {
  color: var(--accent-primary);
  flex-shrink: 0;
}

.product__meta-label {
  font-weight: 600;
  color: var(--text-white);
  margin-right: var(--space-1);
}

.product__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.product__feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-default);
}

.product__feature-icon {
  color: var(--accent-primary);
  flex-shrink: 0;
}

.product__cta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   19. SCROLL REVEAL ANIMATIONS
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered Delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Loading shimmer skeleton */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-tertiary) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    var(--bg-tertiary) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ----------------------------------------------------------------
   20. UTILITY CLASSES
   ---------------------------------------------------------------- */

/* — Text alignment — */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* — Text colors — */
.text-accent  { color: var(--accent-primary) !important; }
.text-cyan    { color: var(--accent-secondary) !important; }
.text-white   { color: var(--text-white) !important; }
.text-muted   { color: var(--text-muted) !important; }
.text-red     { color: var(--accent-red) !important; }
.text-purple  { color: var(--accent-purple) !important; }
.text-amber   { color: var(--accent-amber) !important; }

/* — Backgrounds — */
.bg-primary   { background-color: var(--bg-primary) !important; }
.bg-secondary { background-color: var(--bg-secondary) !important; }
.bg-tertiary  { background-color: var(--bg-tertiary) !important; }

/* — Margin bottom — */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--space-2) !important; }   /* 8px */
.mb-2 { margin-bottom: var(--space-4) !important; }   /* 16px */
.mb-3 { margin-bottom: var(--space-6) !important; }   /* 24px */
.mb-4 { margin-bottom: var(--space-8) !important; }   /* 32px */
.mb-5 { margin-bottom: var(--space-12) !important; }  /* 48px */

/* — Margin top — */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--space-2) !important; }
.mt-2 { margin-top: var(--space-4) !important; }
.mt-3 { margin-top: var(--space-6) !important; }
.mt-4 { margin-top: var(--space-8) !important; }
.mt-5 { margin-top: var(--space-12) !important; }

/* — Padding Y — */
.py-1 { padding-top: var(--space-2) !important; padding-bottom: var(--space-2) !important; }
.py-2 { padding-top: var(--space-4) !important; padding-bottom: var(--space-4) !important; }
.py-3 { padding-top: var(--space-6) !important; padding-bottom: var(--space-6) !important; }
.py-4 { padding-top: var(--space-8) !important; padding-bottom: var(--space-8) !important; }
.py-5 { padding-top: var(--space-12) !important; padding-bottom: var(--space-12) !important; }

/* — Display — */
.hidden  { display: none !important; }
.block   { display: block !important; }
.inline  { display: inline !important; }

/* — Screen reader only — */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* — Flex utilities — */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }
.flex-wrap    { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }

/* — Gap — */
.gap-1 { gap: var(--space-2); }
.gap-2 { gap: var(--space-4); }
.gap-3 { gap: var(--space-6); }
.gap-4 { gap: var(--space-8); }

/* — Width — */
.w-full { width: 100%; }

/* — Overflow — */
.overflow-hidden { overflow: hidden; }

/* — Border — */
.border-t { border-top: 1px solid var(--border-default); }
.border-b { border-bottom: 1px solid var(--border-default); }

/* — Rounded — */
.rounded-sm   { border-radius: var(--radius-sm); }
.rounded-md   { border-radius: var(--radius-md); }
.rounded-lg   { border-radius: var(--radius-lg); }
.rounded-xl   { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* — Gradient text — */
.gradient-text {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text--cyan {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* — Glassmorphism — */
.glass {
  background: rgba(14, 16, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-default);
}

/* — Truncate — */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ================================================================
   21. RESPONSIVE BREAKPOINTS
   ================================================================ */

/* ─────────────────────────────────────────────────
   TABLET  (max-width: 1024px)
   ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Typography */
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.3rem; }

  /* Section */
  .section {
    padding: 60px 0;
  }

  .section__title {
    font-size: 2rem;
  }

  /* Grids */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero */
  .hero__title {
    font-size: 2.8rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }

  .hero__stat-number {
    font-size: 1.6rem;
  }

  /* Pricing */
  .pricing-table {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8) var(--space-6);
  }

  /* Product */
  .product {
    gap: var(--space-8);
  }

  .product__title {
    font-size: 1.7rem;
  }

  .product__price {
    font-size: 1.7rem;
  }

  .blog-post__title {
    font-size: 2rem;
  }
}

/* ─────────────────────────────────────────────────
   MOBILE LARGE / TABLET SMALL  (max-width: 849px)
   ───────────────────────────────────────────────── */
@media (max-width: 849px) {
  /* Header — show hamburger */
  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }

  /* Section */
  .section {
    padding: 50px 0;
  }

  .section__title {
    font-size: 1.7rem;
  }

  .section__subtitle {
    font-size: 0.95rem;
  }

  /* Grids */
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
    background-attachment: scroll; /* fixed mobilde çalışmaz */
    background-position: center top;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .hero__stat-number {
    font-size: 1.5rem;
  }

  /* Buttons */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Cards */
  .card {
    padding: 22px;
  }

  /* Pricing */
  .pricing-table {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-post {
    padding-top: 100px;
  }

  .blog-post__title {
    font-size: 1.7rem;
  }

  .blog-post__content {
    font-size: 1rem;
  }

  /* Product */
  .product {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }

  .product__gallery {
    position: relative;
    top: auto;
  }

  .product__features {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Schedule Table */
  .schedule-table th,
  .schedule-table td {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  /* Contact Bar - Mobile Fix */
  .contact-bar__label {
    display: none;
  }

  .contact-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 1.2rem;
  }

  .contact-bar__btn {
    padding: 12px 18px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }

  .contact-bar__inner {
    justify-content: center;
    gap: var(--space-3);
  }

  /* Calc */
  .calc__form {
    padding: 24px;
  }

  .calc__radio-group {
    flex-direction: column;
  }
}

/* ─────────────────────────────────────────────────
   MOBILE  (max-width: 549px)
   ───────────────────────────────────────────────── */
@media (max-width: 549px) {
  html {
    font-size: 15px;
  }

  /* Typography */
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }

  /* Container */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Section */
  .section {
    padding: 40px 0;
  }

  .section__title {
    font-size: 1.45rem;
  }

  .section__subtitle {
    font-size: 0.88rem;
  }

  .section__header {
    margin-bottom: var(--space-8);
  }

  /* Grids — all single column */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  /* Hero */
  .hero {
    padding: 90px 0 50px;
  }

  .hero__badge {
    font-size: 0.72rem;
    padding: 5px 14px;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__subtitle {
    font-size: 0.88rem;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    margin-top: var(--space-8);
    padding-top: var(--space-6);
  }

  .hero__stat-number {
    font-size: 1.3rem;
  }

  .hero__stat-label {
    font-size: 0.7rem;
  }

  /* Buttons */
  .btn {
    padding: 12px 22px;
    font-size: 0.85rem;
  }

  .btn--lg {
    padding: 14px 28px;
    font-size: 0.92rem;
  }

  /* Cards */
  .card {
    padding: 20px;
    border-radius: var(--radius-md);
  }

  /* Service Cards */
  .service-card__image {
    height: 180px;
  }

  .service-card__body {
    padding: 18px 20px;
  }

  .service-card__title {
    font-size: 1rem;
  }

  .service-card__price {
    font-size: 1.3rem;
  }

  /* Pricing */
  .pricing-card {
    padding: 28px 22px;
  }

  .pricing-card__price {
    font-size: 2.25rem;
  }

  /* FAQ */
  .faq__question {
    font-size: 0.9rem;
    padding: 16px 0;
  }

  .faq__answer-text {
    font-size: 0.85rem;
    padding-right: 0;
  }

  /* Blog */
  .blog-card__image {
    height: 170px;
  }

  .blog-post {
    padding-top: 80px;
  }

  .blog-post__title {
    font-size: 1.4rem;
  }

  .blog-post__meta {
    font-size: 0.78rem;
  }

  .blog-post__content {
    font-size: 0.95rem;
  }

  .blog-post__content h2 {
    font-size: 1.35rem;
  }

  .blog-post__content h3 {
    font-size: 1.15rem;
  }

  .blog-post__cta {
    padding: 22px;
  }

  /* Product */
  .product {
    padding-top: 80px;
  }

  .product__title {
    font-size: 1.5rem;
  }

  .product__price {
    font-size: 1.5rem;
  }

  .product__cta {
    flex-direction: column;
  }

  .product__cta .btn {
    width: 100%;
  }

  /* Footer */
  .footer {
    padding: 40px 0 0;
  }

  .footer__bottom {
    padding: 18px 0;
  }

  /* Schedule */
  .schedule-table th,
  .schedule-table td {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  /* Contact Bar */
  .contact-bar {
    padding: 8px 0;
  }

  /* Calc */
  .calc__form {
    padding: 20px;
  }

  .calc__input,
  .calc__select {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .calc__result {
    padding: 22px;
  }

  .calc__result-value {
    font-size: 1.6rem;
  }

  /* Breadcrumbs */
  .breadcrumbs {
    font-size: 0.75rem;
  }

  /* Mobile menu adjustments */
  .mobile-menu__link {
    font-size: 1.25rem;
  }
}

/* ─────────────────────────────────────────────────
   EXTRA SMALL  (max-width: 374px)
   ───────────────────────────────────────────────── */
@media (max-width: 374px) {
  .hero__title {
    font-size: 1.5rem;
  }

  .hero__stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero__stat-number {
    font-size: 1.15rem;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* ================================================================
   22. ACCESSIBILITY: REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }

  .card:hover {
    transform: none;
  }

  .service-card:hover {
    transform: none;
  }

  .blog-card:hover {
    transform: none;
  }

  .btn--primary:hover,
  .btn--secondary:hover,
  .btn--whatsapp:hover,
  .btn--instagram:hover {
    transform: none;
  }

  .pricing-card:hover {
    transform: none;
  }

  .testimonial-card:hover {
    transform: none;
  }

  .footer__social-link:hover {
    transform: none;
  }
}

/* ================================================================
   23. PRINT STYLES
   ================================================================ */
@media print {
  body {
    background: #fff;
    color: #000;
    padding-bottom: 0;
  }

  .header,
  .contact-bar,
  .mobile-menu,
  .footer__social,
  .btn--whatsapp {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  .section {
    padding: 20px 0;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .card,
  .service-card,
  .blog-card,
  .pricing-card,
  .testimonial-card {
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}

/* ================================================================
   PREMIUM COMPONENTS (Slider, Before/After, Goal Cards, Parallax)
   ================================================================ */

/* ── Slider / Carousel System ── */
.tg-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.tg-slider__viewport {
  overflow: hidden;
}

.tg-slider__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tg-slider__slide {
  min-width: 100%;
  flex-shrink: 0;
}

.tg-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tg-slider__prev,
.tg-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 16, 20, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.tg-slider__prev { left: 16px; }
.tg-slider__next { right: 16px; }

.tg-slider__prev:hover,
.tg-slider__next:hover {
  background: rgba(173, 253, 7, 0.15);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.tg-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
}

.tg-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.tg-slider__dot.active {
  background: var(--accent-primary);
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(173, 253, 7, 0.4);
}

.tg-slider__dot:hover {
  background: rgba(173, 253, 7, 0.5);
}

/* Testimonial Slider Card */
.tg-slider .testimonial-card {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

/* ── Before / After Comparison ── */
.ba-compare {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 4/3;
}

.ba-compare__before,
.ba-compare__after {
  position: absolute;
  inset: 0;
}

.ba-compare__before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-compare__after {
  z-index: 1;
}

.ba-compare__before img,
.ba-compare__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-compare__slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--accent-primary);
  z-index: 3;
  cursor: ew-resize;
  box-shadow: 0 0 12px rgba(173, 253, 7, 0.4);
}

.ba-compare__slider::before,
.ba-compare__slider::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
}

.ba-compare__slider::before {
  top: 50%;
  margin-top: -30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-primary);
  border: 3px solid var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(173, 253, 7, 0.5);
}

.ba-compare__label {
  position: absolute;
  bottom: 16px;
  z-index: 4;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}

.ba-compare__label--before {
  left: 16px;
  background: rgba(255, 107, 107, 0.85);
  color: #fff;
}

.ba-compare__label--after {
  right: 16px;
  background: rgba(173, 253, 7, 0.85);
  color: #000;
}

/* ── Interactive Goal Cards ── */
.goal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.goal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  display: block;
}

.goal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(173, 253, 7, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.goal-card--active {
  border-color: var(--accent-primary);
  background: rgba(173, 253, 7, 0.05);
  box-shadow: 0 0 24px rgba(173, 253, 7, 0.15);
}

.goal-card__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.goal-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.goal-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Goal card color variants */
.goal-card--green { border-top: 3px solid var(--accent-primary); }
.goal-card--cyan { border-top: 3px solid var(--accent-secondary); }
.goal-card--purple { border-top: 3px solid #9b5de5; }
.goal-card--amber { border-top: 3px solid #ffb800; }
.goal-card--red { border-top: 3px solid #ff6b6b; }

/* ── Parallax Hero ── */
.hero--parallax {
  position: relative;
  overflow: hidden;
}

.hero--parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  transform: translateY(var(--parallax-y, 0));
  z-index: -1;
}

/* ── Facility Tour Cards ── */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.tour-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.tour-card:hover img {
  transform: scale(1.08);
}

.tour-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background var(--transition-base);
}

.tour-card:hover .tour-card__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
}

.tour-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.tour-card__desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ── Price Ticker Animation ── */
.price-ticker {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
}

.price-ticker--animate {
  animation: priceReveal 0.6s ease forwards;
}

@keyframes priceReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Dropdown Menu (Desktop + Mobile) ── */
.header__dropdown {
  position: relative;
}

.header__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: rgba(14, 16, 20, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 100;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.header__dropdown-menu--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header__dropdown-item {
  display: block;
  padding: 10px 14px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.header__dropdown-item:hover {
  background: rgba(173, 253, 7, 0.08);
  color: var(--accent-primary);
}

.header__dropdown-arrow {
  font-size: 0.7rem;
  margin-left: 2px;
  transition: transform 0.25s ease;
}

.header__dropdown:hover .header__dropdown-arrow {
  transform: rotate(180deg);
}

/* ── Glassmorphism Card ── */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

/* ── Responsive for Premium Components ── */
@media (max-width: 1024px) {
  .goal-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 849px) {
  .header__dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 8px;
    background: rgba(14, 16, 20, 0.98);
    box-shadow: none;
  }
  
  .header__dropdown-menu--visible {
    transform: none;
  }
}

@media (max-width: 549px) {
  .goal-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  
  .ba-compare { aspect-ratio: 3/4; }
  
  .tg-slider__prev,
  .tg-slider__next {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .tg-slider__prev { left: 8px; }
  .tg-slider__next { right: 8px; }
}
