/* ═══════════════════════════════════════════════════════════════
   THE RAW STUDIOS — White · Black · Orange Gradient Theme v2
   Pure White BG · Black Text · Orange-Red-Yellow Gradient Accents
═══════════════════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --bg0: #FFFFFF;
  --bg1: #F8F8F8;
  --bg2: #F0F0F0;
  --bg3: #FFFFFF;
  --bg4: #FAFAFA;

  --b0: rgba(0,0,0,0.05);
  --b1: rgba(0,0,0,0.10);
  --b2: rgba(0,0,0,0.18);

  --white: #ffffff;
  --t1:   #0A0A0A;
  --t2:   #333333;
  --t3:   #777777;

  /* Orange palette — red-orange → orange → yellow-orange */
  --orange:  #FF6200;
  --orangel: #FFB300;
  --oranged: #D93800;
  --dark:    #0A0A0A;

  --gold:   #FF6200;
  --goldl:  #FFB300;
  --steel:  #FF6200;
  --steell: #FFB300;
  --dbg:    #111111;
  --dbgl:   #2A2A2A;

  --g-main:    linear-gradient(135deg, #D93800 0%, #FF6200 45%, #FFB300 100%);
  --g-gold:    linear-gradient(135deg, #D93800 0%, #FF6200 45%, #FFB300 100%);
  --g-steel:   linear-gradient(135deg, #0A0A0A 0%, #222222 100%);
  --g-shimmer: linear-gradient(90deg, #0A0A0A 0%, #D93800 15%, #FF6200 30%, #FFB300 48%, #0A0A0A 65%, #FF6200 80%, #0A0A0A 100%);

  --shadow:  0 10px 50px rgba(0,0,0,0.12);
  --glow-w:  0 0 40px rgba(255,98,0,0.06);
  --glow-g:  0 0 30px rgba(255,98,0,0.30);
  --glow-b:  0 0 40px rgba(255,98,0,0.22);

  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --nav-h:     70px;

  /* Neon green placeholder for template editing */
  --neon: #00FF00;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: #FFFFFF;
  color: #0A0A0A;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #FFFFFF; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #FF6200; }

/* ─── Selection ─────────────────────────────────────────────── */
::selection { background: rgba(255,98,0,0.20); color: #0A0A0A; }

/* ─── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  color: #0A0A0A;
  line-height: 1.25;
}
a { text-decoration: none; color: inherit; transition: color .3s; }
img { max-width: 100%; }

/* ─── Gradient Text ──────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, #D93800 0%, #FF6200 45%, #FFB300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gold {
  background: linear-gradient(135deg, #D93800 0%, #FF6200 45%, #FFB300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE LOADER OVERLAY — Full-screen catchy loader
═══════════════════════════════════════════════════════════════ */
#trs-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.loader-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.lo-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,56,0,0.22) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: loOrbPulse 4s ease-in-out infinite alternate;
}
.lo-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,179,0,0.15) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation: loOrbPulse 5s ease-in-out infinite alternate-reverse;
}
.lo-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,98,0,0.18) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%,-50%);
  animation: loOrbPulse 3s ease-in-out infinite alternate;
}
@keyframes loOrbPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.3); opacity: 1; }
}
.lo-3 { animation: loOrb3 3s ease-in-out infinite alternate; }
@keyframes loOrb3 {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%,-50%) scale(1.4); opacity: 0.9; }
}
.loader-staff-lines {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  pointer-events: none;
  opacity: 0.12;
}
.loader-staff-lines span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FF6200, #FFB300, transparent);
  margin: 10px 0;
  animation: staffSlide 2.5s ease-in-out infinite alternate;
}
.loader-staff-lines span:nth-child(2) { animation-delay: 0.2s; }
.loader-staff-lines span:nth-child(3) { animation-delay: 0.4s; }
.loader-staff-lines span:nth-child(4) { animation-delay: 0.6s; }
.loader-staff-lines span:nth-child(5) { animation-delay: 0.8s; }
@keyframes staffSlide {
  0%   { transform: scaleX(0.5); opacity: 0.4; }
  100% { transform: scaleX(1); opacity: 1; }
}
.loader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}
.loader-music-icon {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #D93800 0%, #FF6200 45%, #FFB300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: iconSpin 3s ease-in-out infinite;
  display: block;
  margin-bottom: 1rem;
}
@keyframes iconSpin {
  0%,100% { transform: rotate(-8deg) scale(1); }
  50%      { transform: rotate(8deg) scale(1.15); }
}
.loader-brand-text {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  background: linear-gradient(90deg, #D93800 0%, #FF6200 30%, #FFB300 55%, #FF6200 80%, #D93800 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2.5s linear infinite;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.loader-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 6px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}
.loader-progress-wrap {
  width: min(320px, 80vw);
  margin: 0 auto 1.5rem;
}
.loader-progress-track {
  height: 4px;
  background: rgba(255,255,255,0.10);
  border-radius: 4px;
  overflow: hidden;
}
.loader-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #D93800, #FF6200, #FFB300);
  border-radius: 4px;
  animation: loaderFill 1.2s cubic-bezier(.4,0,.2,1) forwards;
  box-shadow: 0 0 14px rgba(255,98,0,0.70);
}
@keyframes loaderFill {
  0%   { width: 0%; }
  100% { width: 100%; }
}
.loader-notes-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  font-family: serif;
  font-size: 1.6rem;
  color: rgba(255,98,0,0.55);
}
.loader-notes-row span {
  display: inline-block;
  animation: notesBounce 1.4s ease-in-out infinite;
}
.loader-notes-row span:nth-child(2) { animation-delay: 0.2s; }
.loader-notes-row span:nth-child(3) { animation-delay: 0.4s; }
.loader-notes-row span:nth-child(4) { animation-delay: 0.6s; }
.loader-notes-row span:nth-child(5) { animation-delay: 0.8s; }
@keyframes notesBounce {
  0%,100% { transform: translateY(0); opacity: 0.55; }
  50%      { transform: translateY(-12px); opacity: 1; }
}

/* ─── Old top-bar loader (kept for JS compat) ────────────────── */
#pageLoader {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0; z-index: 9999;
  background: linear-gradient(90deg, #D93800, #FF6200, #FFB300, #FF6200);
  box-shadow: 0 0 14px rgba(255,98,0,0.70);
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING STAFF NOTATIONS
═══════════════════════════════════════════════════════════════ */
.staff-layer {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
  z-index: 0;
}
.staff-svg {
  position: absolute;
  color: rgba(0,0,0,0.05);
  pointer-events: none;
}
.staff-fragment {
  position: absolute;
  pointer-events: none;
  color: rgba(0,0,0,0.06);
}
.music-note-float {
  position: absolute;
  pointer-events: none;
  font-family: serif;
  color: rgba(255,98,0,0.16);
  user-select: none;
  will-change: transform, opacity;
}
.eq-bar-wrap {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
}
.eq-bar {
  width: 4px;
  background: var(--orange);
  border-radius: 2px 2px 0 0;
  animation: eqBounce 0.8s ease-in-out infinite alternate;
}
@keyframes eqBounce {
  0%   { height: 6px; }
  100% { height: var(--h, 22px); }
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
.trs-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid rgba(0,0,0,0.06);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.trs-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.09);
  border-bottom: 2px solid rgba(255,98,0,0.20);
}
.trs-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #D93800 0%, #FF6200 45%, #FFB300 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(255,98,0,0.38);
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.trs-brand:hover .brand-icon {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 6px 22px rgba(255,98,0,0.55);
}
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 700;
  background: var(--g-shimmer);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  white-space: nowrap;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* Toggler */
.trs-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1.5px solid rgba(0,0,0,0.12);
  cursor: pointer;
  padding: 8px 10px;
  margin-left: auto;
  border-radius: 8px;
  flex-shrink: 0;
}
.toggler-bar {
  width: 22px; height: 2px;
  background: #0A0A0A;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  display: block;
}

/* Nav links */
.trs-nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333333;
  padding: 4px 2px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.trs-nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #D93800, #FF6200, #FFB300);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.trs-nav-link:hover { color: #0A0A0A; }
.trs-nav-link:hover::after,
.trs-nav-link.active::after { transform: scaleX(1); }
.trs-nav-link.active { color: #FF6200; font-weight: 600; }

.btn-nav-cta {
  background: linear-gradient(135deg, #D93800 0%, #FF6200 45%, #FFB300 100%);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(255,98,0,0.35);
  white-space: nowrap;
  -webkit-text-fill-color: #fff;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255,98,0,0.52);
}

/* Mobile menu dropdown */
.navbar-collapse {
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

@media (max-width: 991px) {
  .trs-nav {
    padding: 0 1rem;
    height: auto;
    min-height: var(--nav-h);
    flex-wrap: wrap;
    align-items: stretch;
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255,98,0,0.18);
  }
  .trs-nav > .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    min-height: var(--nav-h);
  }
  .trs-toggler {
    display: flex;
    order: 3;
  }
  .navbar-collapse {
    width: 100%;
    order: 4;
    background: #FFFFFF;
    border-top: 1px solid rgba(0,0,0,0.07);
    padding: 0;
  }
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    /* handled by Bootstrap */
  }
  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    padding: 12px 0 16px;
    width: 100%;
  }
  .navbar-nav .nav-item {
    width: 100%;
  }
  .navbar-nav .trs-nav-link {
    display: block;
    padding: 12px 20px;
    font-size: 0.96rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #0A0A0A;
  }
  .navbar-nav .trs-nav-link:hover,
  .navbar-nav .trs-nav-link.active {
    color: #FF6200;
    background: rgba(255,98,0,0.05);
  }
  .navbar-nav .trs-nav-link::after { display: none; }
  .navbar-nav .ms-lg-3 {
    margin: 14px 20px 4px !important;
    width: calc(100% - 40px) !important;
  }
  .navbar-nav .ms-lg-3 .btn-nav-cta {
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  background: radial-gradient(ellipse 140% 120% at 50% -10%, #FFF3E8 0%, #FFFFFF 55%);
}
.hero-bg-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255,98,0,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(255,179,0,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 55% 20%, rgba(217,56,0,0.06) 0%, transparent 60%);
  animation: auroraShift 12s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0%   { opacity: 0.7; transform: scale(1); }
  50%  { opacity: 1; transform: scale(1.04); }
  100% { opacity: 0.8; transform: scale(1.01); }
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(248,248,248,0.5));
  pointer-events: none;
  z-index: 1;
}
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
  z-index: 1;
}
.float-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}
.orb-1 { width: 420px; height: 420px; background: rgba(217,56,0,0.09); top: -10%; left: -8%; }
.orb-2 { width: 300px; height: 300px; background: rgba(255,179,0,0.08); bottom: 10%; right: 5%; }
.orb-3 { width: 200px; height: 200px; background: rgba(255,98,0,0.07); top: 40%; left: 60%; }

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  isolation: isolate;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.90);
  border: 1.5px solid rgba(255,98,0,0.30);
  color: #FF6200;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 16px rgba(255,98,0,0.10);
}
.hero-brand-wrap {
  overflow: visible;
  padding-bottom: 0.3em;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 3;
}
.hero-brand {
  font-family: 'Futura', 'Century Gothic', 'Apple Gothic', 'Trebuchet MS', 'Franklin Gothic Medium', sans-serif;
  font-weight: 700;
  font-size: clamp(4.5rem, 14vw, 10.5rem);
  line-height: 1.05;
  letter-spacing: 6px;
  opacity: 0;
  transform: scale(0.88);
  background: linear-gradient(90deg, #D93800 0%, #FF6200 30%, #FFB300 55%, #FF6200 75%, #D93800 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear infinite;
  will-change: background-position;
  text-shadow: none;
  filter: drop-shadow(0 4px 24px rgba(255,98,0,0.35));
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 5.5vw, 3.6rem);
  color: #0A0A0A;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  z-index: 3;
}
.hero-title .text-gradient {
  letter-spacing: 3px;
}
.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  font-weight: 500;
  color: #444444;
  max-width: 600px;
  margin: 0 auto 2.2rem;
  opacity: 0;
  transform: translateY(24px);
  line-height: 1.8;
  position: relative;
  z-index: 3;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-primary-trs {
  background: linear-gradient(135deg, #D93800 0%, #FF6200 45%, #FFB300 100%);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  box-shadow: 0 6px 24px rgba(255,98,0,0.35);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.btn-primary-trs:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255,98,0,0.50);
  filter: brightness(1.08);
  color: #fff;
}
.btn-outline-trs {
  background: transparent;
  color: #FF6200;
  border: 2px solid #FF6200;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.btn-outline-trs:hover {
  background: #FF6200;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255,98,0,0.40);
}

.hero-ctas {
  opacity: 0;
  transform: translateY(24px);
  margin-bottom: 2rem;
}
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  font-size: 0.78rem;
  color: #888888;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.scroll-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FF6200;
  box-shadow: 0 0 10px rgba(255,98,0,0.60);
  animation: scrollBounce 1.4s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(8px); opacity: 0.5; }
}

/* ─── Section Divider ────────────────────────────────────────── */
.section-divider {
  line-height: 0;
  background: transparent;
  overflow: hidden;
}
.section-divider svg { display: block; width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   HERO CAROUSEL SECTION
═══════════════════════════════════════════════════════════════ */
.hero-carousel-section {
  background: #F8F8F8;
  position: relative;
  overflow: hidden;
}
.hero-carousel-section .container { max-width: 100%; padding: 0; }
.carousel-trs {
  border-radius: 0;
  overflow: hidden;
}
.carousel-img-wrap {
  width: 100%;
  aspect-ratio: 21 / 7;
  min-height: 260px;
  background: var(--neon);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-img-wrap.no-img::after {
  content: 'Add Landscape Image Here';
  position: absolute;
  color: #000;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}
.carousel-caption-trs {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 60px 40px 30px;
  text-align: left;
}
.carousel-caption-trs .carousel-badge {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #D93800, #FF6200, #FFB300);
  color: #fff;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.carousel-caption-trs h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.carousel-btn-trs {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s, border-color 0.3s;
}
.carousel-btn-trs:hover {
  background: rgba(255,98,0,0.80);
  border-color: #FF6200;
}
.carousel-btn-trs.carousel-control-prev { left: 16px; }
.carousel-btn-trs.carousel-control-next { right: 16px; }
.carousel-btn-trs .carousel-control-prev-icon,
.carousel-btn-trs .carousel-control-next-icon { display: none; }
.carousel-indicators [data-bs-target] {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  margin: 0 4px;
  transition: background 0.3s, transform 0.3s;
}
.carousel-indicators .active {
  background: #FF6200 !important;
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════════
   GENERIC SECTIONS
═══════════════════════════════════════════════════════════════ */
.trs-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.section-header { margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FF6200;
  background: rgba(255,98,0,0.08);
  border: 1px solid rgba(255,98,0,0.22);
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  color: #0A0A0A;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}
.section-subtitle {
  font-size: 1.02rem;
  color: #555555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
}
.subsection-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 400;
  color: #0A0A0A;
  margin-bottom: 1.5rem;
  padding-left: 16px;
  border-left: 4px solid #FF6200;
  opacity: 0;
  transform: translateY(16px);
}

/* ═══════════════════════════════════════════════════════════════
   COURSE CARDS
═══════════════════════════════════════════════════════════════ */
.course-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 0 0 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.23,1.01,.32,1), box-shadow 0.4s;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.course-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,98,0,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.course-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #D93800, #FF6200, #FFB300);
  opacity: 0;
  transition: opacity 0.4s;
}
.course-card:hover {
  transform: translateY(-10px) rotateX(1deg);
  box-shadow: 0 22px 60px rgba(255,98,0,0.16), 0 6px 20px rgba(0,0,0,0.07);
}
.course-card:hover::before { opacity: 1; }
.course-card:hover::after  { opacity: 1; }
.course-card-glow {
  position: absolute; inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, rgba(255,98,0,0.14), rgba(255,179,0,0.10), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}
.course-card:hover .course-card-glow { opacity: 1; }

/* Course card image */
.course-card-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  height: 160px;
  position: relative;
  flex-shrink: 0;
  background: var(--neon);
}
.course-card-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(255,98,0,0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}
.course-card:hover .course-card-img-wrap::after { opacity: 1; }
.course-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.23,1.01,.32,1);
}
.course-card:hover .course-card-img { transform: scale(1.07); }

/* Icon + body content inside card */
.course-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,98,0,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6200;
  font-size: 1.3rem;
  margin: 18px 24px 10px;
  position: relative; z-index: 1;
  transition: transform 0.4s, background 0.3s, box-shadow 0.3s;
}
.course-icon-wrap.large {
  width: 60px; height: 60px;
  border-radius: 16px;
  font-size: 1.5rem;
  margin: 18px 24px 12px;
}
.course-card:hover .course-icon-wrap {
  transform: rotate(-8deg) scale(1.12);
  background: rgba(255,98,0,0.15);
  box-shadow: 0 6px 20px rgba(255,98,0,0.28);
}
.course-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 24px 4px;
  position: relative; z-index: 1;
}
.course-by {
  font-size: 0.82rem;
  color: #FF6200;
  font-weight: 600;
  margin: 0 24px 8px;
  position: relative; z-index: 1;
}
.course-desc {
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.65;
  margin: 0 24px 16px;
  flex-grow: 1;
  position: relative; z-index: 1;
}
.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 24px;
  position: relative; z-index: 1;
  margin-top: auto;
}
.course-price {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FF6200;
}
.btn-course-learn {
  font-size: 0.82rem;
  font-weight: 600;
  color: #555555;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 50px;
  padding: 5px 14px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  display: inline-flex; align-items: center; gap: 5px;
  text-decoration: none;
}
.btn-course-learn:hover {
  background: #FF6200;
  color: #fff;
  border-color: #FF6200;
}

/* Full-page course card */
.course-card-full {
  display: flex;
  flex-direction: column;
}
.course-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 24px;
  position: relative; z-index: 1;
}
.course-category-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FF6200;
  background: rgba(255,98,0,0.09);
  border: 1px solid rgba(255,98,0,0.20);
  padding: 4px 14px;
  border-radius: 50px;
}
.course-card-body {
  flex-grow: 1;
  position: relative; z-index: 1;
  padding: 0 24px;
}
.course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 24px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  position: relative; z-index: 1;
  margin-top: 16px;
}
.course-price-big {
  font-size: 1rem;
  color: #555555;
}
.course-price-big strong {
  font-size: 1.15rem;
  color: #FF6200;
}
.btn-enroll {
  background: linear-gradient(135deg, #D93800 0%, #FF6200 45%, #FFB300 100%);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  box-shadow: 0 4px 16px rgba(255,98,0,0.30);
  display: inline-flex; align-items: center; gap: 4px;
  text-decoration: none;
}
.btn-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,98,0,0.45);
  filter: brightness(1.08);
  color: #fff;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.filter-btn {
  background: rgba(0,0,0,0.04);
  border: 1.5px solid rgba(0,0,0,0.11);
  color: #444444;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s, box-shadow 0.3s;
  display: inline-flex; align-items: center; gap: 5px;
}
.filter-btn:hover {
  background: rgba(255,98,0,0.09);
  color: #FF6200;
  border-color: rgba(255,98,0,0.28);
}
.filter-btn.active {
  background: linear-gradient(135deg, #D93800 0%, #FF6200 45%, #FFB300 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 18px rgba(255,98,0,0.35);
}

/* ═══════════════════════════════════════════════════════════════
   INSTRUCTOR CARDS — with photo frames
═══════════════════════════════════════════════════════════════ */
.instructor-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl);
  padding: 32px 26px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.instructor-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 3px;
  background: linear-gradient(90deg, #D93800, #FF6200, #FFB300, #FF6200, #D93800);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.4s;
}
.instructor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(255,98,0,0.16), 0 6px 20px rgba(0,0,0,0.08);
}
.instructor-card:hover::after { opacity: 1; }

/* Photo frame */
.instructor-photo-frame {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #D93800, #FF6200, #FFB300);
  margin: 0 auto 20px;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 6px 28px rgba(255,98,0,0.30);
  transition: transform 0.4s, box-shadow 0.4s;
}
.instructor-card:hover .instructor-photo-frame {
  transform: scale(1.06);
  box-shadow: 0 10px 38px rgba(255,98,0,0.45);
}
.instructor-photo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,98,0,0.12), rgba(255,179,0,0.10));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.instructor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 1;
}
.instructor-photo-initial {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FF6200;
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,98,0,0.08), rgba(255,179,0,0.06));
  z-index: 0;
}
.instructor-photo-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #D93800;
  border-right-color: #FFB300;
  animation: ringRotate 4s linear infinite;
  pointer-events: none;
}
@keyframes ringRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.instructor-card:hover .instructor-photo-ring { animation-duration: 0.7s; }

.featured-instructor {
  background: linear-gradient(145deg, #FFFFFF 0%, rgba(255,98,0,0.04) 100%);
  border-color: rgba(255,98,0,0.20);
}
.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, #D93800, #FF6200, #FFB300);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1px;
  font-weight: 400;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 3px 12px rgba(255,98,0,0.38);
  display: flex; align-items: center; gap: 5px;
}
.new-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, #111111, #333333);
  color: #FFB300;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
  display: flex; align-items: center; gap: 5px;
}

.instructor-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 10px;
}
.instructor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-bottom: 14px;
}
.itag {
  font-size: 0.76rem;
  font-weight: 600;
  background: rgba(255,98,0,0.09);
  color: #FF6200;
  border: 1px solid rgba(255,98,0,0.20);
  padding: 3px 12px;
  border-radius: 50px;
}
.instructor-exp {
  font-size: 0.86rem;
  font-weight: 600;
  color: #FF6200;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.instructor-bio {
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}
.btn-book-lesson {
  background: linear-gradient(135deg, #D93800 0%, #FF6200 45%, #FFB300 100%);
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  box-shadow: 0 5px 18px rgba(255,98,0,0.32);
  display: inline-flex; align-items: center; gap: 4px;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.btn-book-lesson:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255,98,0,0.48);
  filter: brightness(1.08);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   IMAGE GALLERY — Collage grid
═══════════════════════════════════════════════════════════════ */
.gallery-section { background: #F8F8F8; }

.gallery-collage {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 160px;
  gap: 10px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--neon);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.23,1.01,.32,1);
}
.gallery-item:hover img { transform: scale(1.09); }
.gi-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(217,56,0,0.35), rgba(255,179,0,0.20));
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gi-overlay { opacity: 1; }
.gi-overlay i { color: #fff; font-size: 1.8rem; }

/* Gallery item size variations */
.gi-wide  { grid-column: span 2; }
.gi-tall  { grid-row: span 2; }
.gi-big   { grid-column: span 2; grid-row: span 2; }

/* Gallery Lightbox */
#galleryLightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  flex-direction: column;
}
#galleryLightbox.active { display: flex; }
.glb-img-wrap {
  max-width: 90vw; max-height: 80vh;
  display: flex; align-items: center; justify-content: center;
}
.glb-img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.7);
}
.glb-close {
  position: absolute; top: 18px; right: 22px;
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; transition: background 0.2s;
}
.glb-close:hover { background: rgba(255,98,0,0.7); }
.glb-prev, .glb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.1rem;
  cursor: pointer; transition: background 0.2s;
}
.glb-prev { left: 16px; }
.glb-next { right: 16px; }
.glb-prev:hover, .glb-next:hover { background: rgba(255,98,0,0.7); }
.glb-counter {
  position: absolute; bottom: 18px;
  color: rgba(255,255,255,0.7); font-size: 0.9rem; letter-spacing: 0.05em;
}
@media (max-width: 576px) {
  .glb-prev { left: 6px; } .glb-next { right: 6px; }
  .glb-img { max-width: 96vw; }
}

/* ═══════════════════════════════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, #D93800 0%, #FF6200 50%, #FFB300 100%);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.stats-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.05) 0%, transparent 45%);
  pointer-events: none;
}
.stats-staff-deco {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0.25;
  pointer-events: none;
}
.stat-card {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  opacity: 0;
  transform: translateY(30px);
  backdrop-filter: blur(6px);
}
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.50);
  border-radius: 2px 2px 0 0;
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.20);
}
.stat-icon { font-size: 1.8rem; color: #fff; margin-bottom: 12px; display: block; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS SECTION
═══════════════════════════════════════════════════════════════ */
.reviews-section {
  background: #FFFFFF;
  padding: 90px 0;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,98,0,0.09);
  color: #FF6200;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,98,0,0.25);
  margin-left: 10px;
  vertical-align: middle;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FF6200;
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.6; }
}
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1.5px solid rgba(0,0,0,0.09);
  border-radius: 50px;
  padding: 8px 22px;
  margin-top: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  flex-wrap: wrap;
  justify-content: center;
}
.google-logo { height: 20px; width: auto; }
.google-rating-badge .stars i { color: #FF6200; font-size: 0.88rem; }
.rating-text { font-size: 0.88rem; font-weight: 700; color: #0A0A0A; }

.reviews-swiper-outer {
  position: relative;
  padding-bottom: 60px;
  opacity: 0;
  transform: translateY(24px);
}
.reviews-swiper { overflow: hidden; padding: 10px 4px 10px; }
.review-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl);
  padding: 28px 24px 22px;
  position: relative;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(255,98,0,0.12), 0 4px 14px rgba(0,0,0,0.06);
}
.review-quote-icon { font-size: 1.5rem; color: #FF6200; margin-bottom: 12px; opacity: 0.7; }
.review-stars { margin-bottom: 12px; }
.review-stars i { color: #FF6200; font-size: 0.9rem; margin-right: 2px; }
.review-text {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 18px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.review-author > div { flex: 1; }
.review-author strong { display: block; font-size: 0.88rem; font-weight: 700; color: #0A0A0A; }
.review-author span { font-size: 0.76rem; color: #888888; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,98,0,0.22);
  flex-shrink: 0;
}
.google-small-logo { height: 16px; width: auto; flex-shrink: 0; }

.reviews-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.reviews-pagination-wrap {
  flex: 1; max-width: 200px;
  display: flex; align-items: center; justify-content: center;
}
.reviews-pagination-wrap .swiper-pagination { position: static; }
.swiper-nav-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid rgba(255,98,0,0.28);
  color: #FF6200;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.swiper-nav-btn:hover {
  background: #FF6200; color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(255,98,0,0.35);
}
.swiper-pagination-bullet { background: rgba(0,0,0,0.15) !important; opacity: 1 !important; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: #FF6200 !important; transform: scale(1.25); }

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════════ */
.cta-banner {
  background: #0A0A0A;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(255,98,0,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(255,179,0,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,98,0,0.09);
  filter: blur(80px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-staff-lines { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-staff-line { position: absolute; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.05); }
.cta-staff-line:nth-child(1) { top: 20%; }
.cta-staff-line:nth-child(2) { top: 35%; }
.cta-staff-line:nth-child(3) { top: 50%; }
.cta-staff-line:nth-child(4) { top: 65%; }
.cta-staff-line:nth-child(5) { top: 80%; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.2rem;
  position: relative; z-index: 1;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  position: relative; z-index: 1;
}
.cta-banner .btn-outline-trs {
  border-color: rgba(255,255,255,0.40);
  color: rgba(255,255,255,0.85);
}
.cta-banner .btn-outline-trs:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO — Inner Pages
═══════════════════════════════════════════════════════════════ */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 100% at 50% 0%, #FFF3E8 0%, #FFFFFF 65%);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(255,98,0,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 40%, rgba(255,179,0,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: #0A0A0A;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(24px);
}
.page-hero-subtitle {
  font-size: 1.05rem;
  color: #555555;
  max-width: 580px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
}

/* ═══════════════════════════════════════════════════════════════
   LABEL / VIDEO CARDS
═══════════════════════════════════════════════════════════════ */
.video-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.video-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 22px 60px rgba(255,98,0,0.16);
}
.video-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.video-card:hover .thumb-img { transform: scale(1.06); }
.video-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.42);
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.video-card:hover .video-overlay { background: rgba(0,0,0,0.18); }
.play-btn-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D93800, #FF6200, #FFB300);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  position: relative; z-index: 2;
  box-shadow: 0 6px 24px rgba(255,98,0,0.55);
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-card:hover .play-btn {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(255,98,0,0.65);
}
.play-ripple {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255,98,0,0.40);
  animation: rippleOut 2s ease-out infinite;
}
.play-ripple.delay1 { animation-delay: 0.7s; }
@keyframes rippleOut {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}
.video-iframe-wrap { display: none; position: absolute; inset: 0; }
.video-iframe-wrap.active { display: block; }
.video-iframe { width: 100%; height: 100%; border: none; }
.video-info { padding: 18px 20px; }
.video-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #0A0A0A; margin-bottom: 4px; }
.video-artist { font-size: 0.82rem; color: #FF6200; font-weight: 600; margin-bottom: 10px; }
.youtube-link {
  font-size: 0.8rem; color: #888888;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color 0.3s;
}
.youtube-link:hover { color: #FF6200; }
.label-cta-text { font-size: 1.05rem; color: #555555; line-height: 1.75; }

/* ── Reel / Shorts Coming-Soon Card ─────────────────────────── */
.reel-coming-soon-card {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: linear-gradient(160deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  box-shadow: 0 20px 60px rgba(131,58,180,0.35);
  transition: transform 0.4s, box-shadow 0.4s;
}
.reel-coming-soon-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 80px rgba(131,58,180,0.45);
}
.reel-cs-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 24px 20px;
  color: #fff;
  text-align: center;
}
.reel-cs-topbar {
  display: flex;
  gap: 6px;
  align-self: flex-start;
}
.reel-cs-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}
.reel-cs-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.reel-cs-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  animation: reelRing 3s ease-out infinite;
}
.reel-cs-ring-1 { width: 110px; height: 110px; }
.reel-cs-ring-2 { width: 150px; height: 150px; animation-delay: 0.9s; }
@keyframes reelRing {
  0%   { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}
.reel-cs-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
  position: relative; z-index: 1;
}
.reel-cs-body { width: 100%; }
.reel-cs-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.reel-cs-sub {
  font-size: 0.82rem;
  opacity: 0.85;
  line-height: 1.55;
  margin-bottom: 16px;
}
.reel-cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.reel-cs-dot-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}
.reel-cs-platform {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.75;
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — fixed layout + founder image
═══════════════════════════════════════════════════════════════ */
.about-story-section { background: #FFFFFF; }
.about-story-section .row { position: relative; }

/* Founder image block */
.about-founder-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 30px 20px 10px;
  position: relative;
}
.about-founder-frame {
  width: 360px;
  height: 420px;
  border-radius: 24px;
  padding: 5px;
  background: linear-gradient(135deg, #D93800 0%, #FF6200 50%, #FFB300 100%);
  box-shadow: 0 20px 60px rgba(255,98,0,0.28);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s, box-shadow 0.4s;
}
.about-founder-frame:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: 0 30px 80px rgba(255,98,0,0.38);
}
.about-founder-img-inner {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,98,0,0.10), rgba(255,179,0,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.founder-placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  text-align: center;
  font-size: 0.9rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  pointer-events: none;
}
.about-founder-badge {
  background: linear-gradient(135deg, #D93800 0%, #FF6200 45%, #FFB300 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 22px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(255,98,0,0.38);
  text-align: center;
  line-height: 1.5;
}
.about-img-float1,
.about-img-float2 {
  font-size: 2rem;
  animation: floatIcon 3.5s ease-in-out infinite;
  pointer-events: none;
  position: absolute;
}
.about-img-float1 { top: 10px; right: 10px; animation-delay: 0s; }
.about-img-float2 { bottom: 60px; right: -10px; animation-delay: 1.2s; }
@keyframes floatIcon {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(15deg); }
}
.about-story-text { font-size: 1rem; color: #444444; line-height: 1.85; }
.about-hero-notes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */
.contact-info-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.contact-info-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #D93800, #FF6200, #FFB300);
}
.contact-info-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #0A0A0A; margin-bottom: 6px; }
.contact-info-subtitle { font-size: 0.92rem; color: #555555; margin-bottom: 24px; }
.contact-detail-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.cd-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,98,0,0.09);
  display: flex; align-items: center; justify-content: center;
  color: #FF6200;
  font-size: 1rem;
  flex-shrink: 0;
}
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(0,0,0,0.09); margin-top: 22px; }
.contact-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }

.contact-form-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.contact-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFB300, #FF6200, #D93800);
}
.contact-form-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #0A0A0A; margin-bottom: 6px; }
.contact-form-subtitle { font-size: 0.92rem; color: #555555; margin-bottom: 24px; }
.trs-label { font-size: 0.85rem; font-weight: 600; color: #333333; margin-bottom: 6px; display: block; }
.required { color: #FF6200; margin-left: 2px; }
.trs-input-wrap {
  position: relative;
  margin-bottom: 18px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(0,0,0,0.12);
  background: #FAFAFA;
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.trs-input-wrap:focus-within {
  border-color: #FF6200;
  box-shadow: 0 0 0 3px rgba(255,98,0,0.12);
}
.input-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: #FF6200;
  font-size: 0.95rem;
  pointer-events: none;
}
.trs-input-field {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.92rem;
  color: #0A0A0A;
  padding: 12px 14px 12px 40px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
}
.trs-input-field::placeholder { color: #AAAAAA; font-size: 0.88rem; }
.trs-select {
  width: 100%;
  background: #FAFAFA;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  color: #0A0A0A;
  font-size: 0.92rem;
  padding: 12px 14px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: 'Poppins', sans-serif;
  appearance: none;
}
.trs-select:focus { border-color: #FF6200; box-shadow: 0 0 0 3px rgba(255,98,0,0.12); }
.btn-submit-big {
  background: linear-gradient(135deg, #D93800 0%, #FF6200 45%, #FFB300 100%);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  box-shadow: 0 6px 22px rgba(255,98,0,0.35);
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Poppins', sans-serif;
}
.btn-submit-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255,98,0,0.50);
  filter: brightness(1.08);
}
.trs-alert-success {
  background: rgba(255,98,0,0.09);
  border: 1px solid rgba(255,98,0,0.28);
  border-radius: var(--radius);
  color: #D93800;
  padding: 14px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.trs-alert-error {
  background: rgba(220,60,60,0.08);
  border: 1px solid rgba(220,60,60,0.22);
  border-radius: var(--radius);
  color: #c0392b;
  padding: 14px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.trs-footer {
  background: #0A0A0A;
  color: rgba(255,255,255,0.75);
  position: relative;
}
.footer-wave {
  line-height: 0;
  overflow: hidden;
  background: #FFFFFF;
}
.footer-wave svg { display: block; width: 100%; }
.footer-top { padding: 60px 0 40px; }
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 10px;
  opacity: 0; transform: translateY(20px);
}
.footer-subtext {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 22px;
  opacity: 0; transform: translateY(16px);
}
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  opacity: 0; transform: translateY(14px);
}
.contact-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,98,0,0.14);
  display: flex; align-items: center; justify-content: center;
  color: #FF6200;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 0.85rem; color: #fff; margin-bottom: 2px; }
.contact-info-item p { font-size: 0.82rem; color: rgba(255,255,255,0.52); margin: 0; line-height: 1.6; }
.contact-info-item a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.contact-info-item a:hover { color: #FF6200; }
.social-links {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 22px;
  opacity: 0; transform: translateY(14px);
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
  text-decoration: none;
}
.social-link:hover {
  border-color: #FF6200;
  color: #FF6200;
  background: rgba(255,98,0,0.10);
  transform: translateY(-3px);
}
.footer-brand-block { margin-bottom: 24px; opacity: 0; transform: translateY(16px); }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: #fff;
  margin-bottom: 12px;
}
.footer-logo i { color: #FF6200; font-size: 1.1rem; }
.footer-about { font-size: 0.86rem; color: rgba(255,255,255,0.52); line-height: 1.75; margin-bottom: 14px; }
.footer-call { font-size: 0.84rem; color: rgba(255,255,255,0.52); line-height: 2; }
.footer-call a { color: #FF6200; font-weight: 600; transition: color 0.3s; }
.footer-call a:hover { color: #FFB300; }
.footer-call .fa-phone-volume { color: #FF6200; margin-right: 6px; }
.quick-links { opacity: 0; transform: translateY(16px); }
.quick-links h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.quick-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.quick-links li a {
  font-size: 0.86rem; color: rgba(255,255,255,0.52);
  transition: color 0.3s, padding-left 0.3s;
  display: flex; align-items: center; gap: 7px;
}
.quick-links li a i { font-size: 0.65rem; color: #FF6200; }
.quick-links li a:hover { color: #FF6200; padding-left: 4px; }
.footer-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  opacity: 0; transform: translateY(16px);
}
.footer-form-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 18px; }
.trs-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.88rem;
  padding: 10px 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: 'Poppins', sans-serif;
}
.trs-input:focus {
  outline: none;
  border-color: rgba(255,98,0,0.50);
  box-shadow: 0 0 0 3px rgba(255,98,0,0.10);
  background: rgba(255,255,255,0.09);
}
.trs-input::placeholder { color: rgba(255,255,255,0.28); }
.btn-footer-submit {
  background: linear-gradient(135deg, #D93800 0%, #FF6200 45%, #FFB300 100%);
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  box-shadow: 0 4px 16px rgba(255,98,0,0.30);
  font-family: 'Poppins', sans-serif;
}
.btn-footer-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255,98,0,0.46);
  filter: brightness(1.08);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin: 0; }
.heart { color: #FF6200; }
.footer-bottom-social { display: flex; gap: 12px; }
.footer-bottom-social a {
  color: rgba(255,255,255,0.32);
  font-size: 0.82rem;
  transition: color 0.3s, transform 0.2s;
}
.footer-bottom-social a:hover { color: #FF6200; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════
   GSAP INITIAL STATES
═══════════════════════════════════════════════════════════════ */
.gsap-fade-up  { opacity: 0; transform: translateY(30px); }
.gsap-reveal   { opacity: 0; transform: translateY(24px); }
.gsap-card     { opacity: 0; transform: translateY(28px) scale(0.96); }
.gsap-instructor { opacity: 0; }
.gsap-stat     { opacity: 0; transform: translateY(30px); }
.gsap-footer   { opacity: 0; transform: translateY(20px); }
.gsap-brand    { opacity: 0; transform: scale(0.88); }

/* ═══════════════════════════════════════════════════════════════
   PAGE TRANSITION
═══════════════════════════════════════════════════════════════ */
#pageTransition {
  position: fixed; inset: 0;
  background: linear-gradient(135deg, #D93800 0%, #FF6200 50%, #FFB300 100%);
  z-index: 9998;
  pointer-events: none;
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════════
   CURSOR GLOW & TRAIL
═══════════════════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,98,0,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9990;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-note {
  position: fixed;
  pointer-events: none;
  z-index: 9991;
  font-family: serif;
  color: rgba(255,98,0,0.90);
  text-shadow: 0 0 10px rgba(255,98,0,0.55);
  user-select: none;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}
.click-ripple {
  position: fixed;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,98,0,0.70);
  pointer-events: none;
  z-index: 9989;
  transform: translate(-50%, -50%) scale(0);
  will-change: transform, opacity;
}
#globalNoteLayer {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
#globalNoteLayer span {
  position: absolute;
  font-family: serif;
  color: rgba(255,98,0,0.09);
  user-select: none;
  pointer-events: none;
}
.waveform-deco {
  position: absolute;
  bottom: 14px; left: 0; right: 0;
  display: flex; align-items: flex-end;
  justify-content: center; gap: 4px;
  height: 52px;
  pointer-events: none;
  opacity: 0.22; z-index: 0;
}
.wf-bar {
  width: 4px;
  background: rgba(255,255,255,0.65);
  border-radius: 3px 3px 0 0;
  height: var(--h, 20px);
  animation: wfBounce 0.9s ease-in-out infinite alternate;
  animation-delay: var(--dly, 0s);
}
@keyframes wfBounce {
  0%   { height: 5px; }
  100% { height: var(--h, 20px); }
}
.perspective-section { perspective: 1200px; }
@keyframes orangePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,98,0,0); }
  50%      { box-shadow: 0 0 0 8px rgba(255,98,0,0.12); }
}
@keyframes warmFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-14px) rotate(4deg); }
  66%      { transform: translateY(-8px) rotate(-3deg); }
}
@keyframes staffDrift {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(-80px) rotate(8deg); opacity: 0; }
}
@keyframes noteFloat {
  0%   { transform: translateY(0) rotate(-10deg); opacity: 0; }
  20%  { opacity: 0.20; }
  80%  { opacity: 0.16; }
  100% { transform: translateY(-320px) rotate(15deg); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

/* ─── ≤ 1199px (large tablet) ───────────────────────────────── */
@media (max-width: 1199px) {
  .gallery-collage {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
  }
}

/* ─── ≤ 991px (tablet) ───────────────────────────────────────── */
@media (max-width: 991px) {
  .trs-section { padding: 64px 0; }
  .hero-section { padding-bottom: 60px; }

  .gallery-collage {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 140px;
  }

  .carousel-img-wrap { aspect-ratio: 16/6; }

  .about-founder-block {
    align-items: center;
    padding: 10px 0 30px;
  }
  .about-founder-frame { width: 300px; height: 360px; }
}

/* ─── ≤ 767px (mobile) ───────────────────────────────────────── */
@media (max-width: 767px) {
  .hero-brand { font-size: clamp(2.8rem, 14vw, 5rem); letter-spacing: 3px; }
  .hero-title { font-size: clamp(1.3rem, 5vw, 2rem); letter-spacing: 2px; }
  .hero-subtitle { font-size: 0.95rem; }
  .trs-section { padding: 52px 0; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }

  .gallery-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
    gap: 8px;
  }
  .gi-big { grid-column: span 2; }

  .stat-card { padding: 22px 14px; }
  .stat-number { font-size: clamp(1.9rem, 7vw, 2.6rem); }

  .cta-banner { padding: 64px 0; }
  .cta-title  { font-size: clamp(1.5rem, 5vw, 2.2rem); }

  .reviews-swiper-outer { padding-bottom: 54px; }
  .review-card { padding: 22px 18px 18px; }

  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  .course-card-img-wrap { height: 140px; }
  .course-card-img      { height: 140px; }
  .course-icon-wrap     { margin: 14px 18px 8px; }
  .course-title, .course-by, .course-desc { margin-left: 18px; margin-right: 18px; }
  .course-footer        { padding: 0 18px; }

  .instructor-card { padding: 26px 18px 20px; }
  .instructor-photo-frame { width: 96px; height: 96px; }

  .contact-info-card,
  .contact-form-card { padding: 26px 18px; }

  .orb-1 { width: 260px; height: 260px; }
  .orb-2 { width: 180px; height: 180px; }
  .orb-3 { width: 130px; height: 130px; }

  .hero-ctas .btn-primary-trs,
  .hero-ctas .btn-outline-trs {
    padding: 11px 22px;
    font-size: 0.88rem;
  }

  .carousel-caption-trs { padding: 40px 20px 20px; }
  .carousel-caption-trs h3 { font-size: 1rem; }

  .about-founder-frame { width: 260px; height: 310px; }
  .about-img-float1, .about-img-float2 { display: none; }
}

/* ─── ≤ 480px (small mobile) ────────────────────────────────── */
@media (max-width: 480px) {
  .hero-brand { font-size: clamp(2.2rem, 15vw, 3.2rem); letter-spacing: 2px; }
  .hero-title { font-size: 1.2rem; letter-spacing: 1.5px; }
  .hero-badge { font-size: 0.76rem; padding: 5px 14px; }
  .section-tag { font-size: 0.78rem; letter-spacing: 2px; }
  .section-title { font-size: 1.55rem; }

  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.78rem; }

  .gallery-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 100px;
    gap: 6px;
  }
  .gi-big, .gi-wide { grid-column: span 2; }
  .gi-tall { grid-row: span 1; }

  .instructor-photo-frame { width: 86px; height: 86px; }
  .instructor-name { font-size: 1.22rem; }

  .footer-form-card { padding: 22px 16px; }
  .footer-top { padding: 44px 0 30px; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-primary-trs,
  .cta-actions .btn-outline-trs { width: 100%; justify-content: center; }

  .hero-ctas { flex-direction: column; align-items: center; display: flex; gap: 10px; }
  .hero-ctas .btn-primary-trs,
  .hero-ctas .btn-outline-trs { width: 100%; justify-content: center; margin: 0 !important; }

  .reviews-nav-row { gap: 8px; }
  .swiper-nav-btn { width: 36px; height: 36px; font-size: 0.8rem; }

  .page-hero-title { font-size: 2rem; }
  .filter-btn { padding: 7px 16px; font-size: 0.82rem; }

  .carousel-btn-trs { width: 36px; height: 36px; font-size: 0.8rem; }
  .carousel-caption-trs { display: none; }

  .about-founder-frame { width: 220px; height: 265px; }
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  width: 58px;
  height: 58px;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.50);
  z-index: 9980;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  animation: waPulse 2.8s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.65);
  color: #fff;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.50); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,0.80), 0 0 0 10px rgba(37,211,102,0.10); }
}
@media (max-width: 480px) {
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.45rem; bottom: 18px; right: 18px; }
}
