/* Consistent course card title at top */
.course-title-top {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #fff;
  letter-spacing: 0.01em;
}
.course-card-titled {
  position: relative;
}
/* === Base styles === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #05060a;
  color: #f5f5f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto; /* <-- centers the whole container */
    padding: 0 1rem;
}


/* === Header & Navigation === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 6, 10, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.75rem 0;
}

.logo {
  display: none;
}

.logo span {
  color: #ff3b6c;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

/* === TOP NAVIGATION === */

@media (min-width: 769px) {
  .nav {
    display: flex;
  }
}

/* Mobile nav adjustment */
@media (max-width: 768px) {
  .nav {
    gap: 1rem;
    font-size: 0.9rem;
  }
}

/* Base link style */
.nav a {
  color: #ffffff;
  opacity: 0.75;
  position: relative;
  padding: 0.25rem 0;          /* small vertical padding */
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Underline (hidden by default) */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;               /* 🔹 closer to the text */
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff3b6c, #ffb347);
  transition: width 0.25s ease;
}

/* Hover state */
.nav a:hover {
  opacity: 1;
}

.nav a:hover::after {
  width: 100%;                /* underline on hover for ALL tabs */
}

/* ACTIVE PAGE */
.nav a.active {
  opacity: 1;
  font-weight: 600;
}

.nav a.active::after {
  width: 100%;                /* underline always visible on current page */
}



/* Mobile menu button (hidden on desktop) */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  font-size: 1.1rem;
  color: #f5f5f5;
  cursor: pointer;
}

/* ============================ */
/* === HERO =================== */
/* ============================ */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("hero.jpg"); /* your image */
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 6, 10, 0.75) 0%,
    rgba(5, 6, 10, 0.25) 55%,
    rgba(5, 6, 10, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.hero-text-block {
  max-width: 32rem;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.hero-details {
  list-style: none;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1.25rem;
}

.hero-details li {
  margin-bottom: 0.25rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-location {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ============================ */
/* ========= SECTIONS ========= */
/* ============================ */


.section {
    padding: 3.5rem 0;
}

.section-alt {
    background: #070913;
}

/* Title centered properly */
.section-title {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    text-align: center;     /* centers the title */
    width: 100%;            /* ensures it spans full container */
}

/* Subtitle */
.section-subtitle {
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 36rem;
    text-align: center;     /* optional: centers subtitles too */
    margin-left: auto;
    margin-right: auto;
}


/* Cards & layout helpers */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: rgba(10, 12, 20, 0.95);
  border-radius: 1rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.card p {
  opacity: 0.9;
  font-size: 0.95rem;
}

.list {
  list-style: none;
  margin-top: 0.5rem;
}

.list li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn.primary {
  background: linear-gradient(120deg, #ff3b6c, #ffb347);
  color: #05060a;
}

.btn.outline {
  border-color: rgba(255, 255, 255, 0.5);
}

.btn.block {
  width: 100%;
  margin-top: 0.75rem;
}

/* Button row for each event */
.event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

/* Secondary button style (Reserve Table) */
.btn.secondary {
    background: transparent;
    border-radius: 999px;
    padding: 0.85rem 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

/* =========================
    Price Badge (Privates Summary)
 ========================= */

 .price-badge {
   display: inline-block;
   padding: 0.18rem 0.6rem;
   border: 1.6px solid rgba(255, 255, 255, 0.95);
   border-radius: 999px;
   color: #ffffff;
   background: rgba(255, 255, 255, 0.08);
   box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.18);
 }

 /* =========================
    PayPal Button Styling
========================= */

.btn-paypal{
  background: #0070ba;           /* PayPal blue */
  border: 1.2px solid #0070ba;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn-paypal:hover{
  background: #005ea6;           /* Darker PayPal blue */
  border-color: #005ea6;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 112, 186, 0.4);
}

.btn-paypal.disabled,
.btn-paypal[aria-disabled="true"]{
  opacity: 0.55;
  pointer-events: none;
  filter: grayscale(20%);
}

/* =========================
   Stripe Button Styling
========================= */

.btn-stripe{
  background: #635bff;          /* Stripe blurple */
  border: 1.2px solid #635bff;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn-stripe:hover{
  background: #4c46e0;          /* Darker blurple */
  border-color: #4c46e0;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(99, 91, 255, 0.4);
}

.btn-stripe:disabled,
.btn-stripe[aria-disabled="true"]{
  opacity: 0.55;
  pointer-events: none;
  filter: grayscale(20%);
}


/* ============================ */
/* == CLASS CARDS (Classes) === */
/* ============================ */

.grid-classes {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 900px;
  margin: 1.5rem auto 0;
}

.class-card {
  position: relative;
  background: radial-gradient(circle at top left, rgba(255, 59, 108, 0.12), transparent 55%),
              rgba(10, 10, 15, 0.95);
  border-radius: 1rem;
  padding: 1.3rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

/* 🔥 Removed the left color strip */
.class-card::before {
  content: none;
}

.class-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.22);
}

.class-info {
  flex: 1;
}

.class-info h3 {
  font-size: 1.15rem;
  font-weight: 700;       /* bold title */
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.class-info p {
  font-size: 1rem;
  font-weight: 400;       /* normal text, not bold */
  color: #dddddd;         /* softer white */
  margin: 0;
}

.class-btn {
  white-space: nowrap;
  padding: 0.55rem 1.3rem;
  font-size: 0.9rem;
}

/* === Instructors Grid === */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.instructor-card {
  text-align: center;
  padding-top: 2.2rem;
}

.instructor-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-name {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.instructor-role {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.instructor-bio {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.instructor-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.instructor-social a {
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.9;
}

/* Highlight instructor when reached via #hash (from Classes page) */
.instructor-card:target {
  border: 1px solid #fbbf24;
  box-shadow: 0 0 32px rgba(251, 191, 36, 0.55);
  position: relative;
}

/* Optional: little yellow ribbon like MOST POPULAR */
.instructor-card:target::before {
  content: "SELECTED";
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
}



/* === Social row above email signup === */
.signup-social {
  text-align: center;
  margin-bottom: 1.5rem;
}

.signup-social p {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  opacity: 0.9;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  opacity: 0.9;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

/* subtle “pop” animation */
@keyframes social-pop {
  0%, 70%, 100% { transform: translateY(0) scale(1); }
  80% { transform: translateY(-3px) scale(1.08); }
}

.social-links a:nth-child(1) { animation: social-pop 3s infinite ease-in-out; }
.social-links a:nth-child(2) { animation: social-pop 3s infinite ease-in-out 0.2s; }
.social-links a:nth-child(3) { animation: social-pop 3s infinite ease-in-out 0.4s; }
.social-links a:nth-child(4) { animation: social-pop 3s infinite ease-in-out 0.6s; }

.social-links a:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 0.35rem 0.8rem rgba(0,0,0,0.55);
  opacity: 1;
}



/* ============================ */
/* == CONTACT FORM / ABOUT ==== */
/* ============================ */

.about-highlight {
  background: rgba(10, 12, 20, 0.95);
  border-radius: 1rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #0c0f1a;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.55rem 0.7rem;
  color: #f5f5f5;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffb347;
  box-shadow: 0 0 0 1px rgba(255, 180, 71, 0.4);
}

.form-status {
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.note {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ============================ */


/* === EVENTS PAGE === */

.events-hero {
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

.events-title {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.events-list-page {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.event-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 1.25rem;
  background: rgba(10, 12, 20, 0.95);
  border-radius: 1rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
  align-items: center;
}

/* Left date block */
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  padding: 0.5rem 0.75rem;
  background: radial-gradient(circle at top, #ff3b6c, #ffb347);
  color: #05060a;
  font-weight: 700;
  min-height: 82px;
}

.event-month {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

.event-day {
  font-size: 1.4rem;
  line-height: 1;
}

/* Event main info */
.event-main {
  font-size: 0.9rem;
}

.event-title {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.event-meta-line {
  font-size: 0.86rem;
  opacity: 0.92;
  margin-bottom: 0.25rem;
}

.event-location {
  font-size: 0.82rem;
  opacity: 0.85;
  margin-bottom: 0.35rem;
}

.event-description {
  font-size: 0.86rem;
  opacity: 0.9;
}

/* Right side actions */
.event-actions {
  display: flex;
  align-items: center;
}

.event-btn {
  font-size: 0.85rem;
  padding-inline: 1.1rem;
}

/* Events page layout */
.events-section {
    padding: 6rem 0 7rem;
}

.events-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.events-title {
    font-size: 2.4rem;
    margin-bottom: 0.4rem;
}

.events-subtitle {
    opacity: 0.75;
    margin-bottom: 3rem;
}

/* Event card */

.event-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
    gap: 2.5rem;
    background: #111319;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    align-items: center;
    text-align: left;
}

/* Space between multiple event cards */
.event-card + .event-card {
    margin-top: 2.5rem;
}


.event-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    object-fit: cover;
}

/* Hover zoom effect */
.event-image {
    overflow: hidden;
    border-radius: 18px;
}

.event-image img {
    transition: transform 0.4s ease;
}

.event-image:hover img {
    transform: scale(1.08);
}




/* Right side */

.event-content h2 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.event-meta {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-bottom: 1.2rem;
}

.event-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
    font-size: 0.95rem;
}

.event-details li {
    margin-bottom: 0.35rem;
}

/* Button */

.btn.primary {
    background: #ff4d4d;
    border: none;
    padding: 0.9rem 1.9rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
    background: #ff5f5f;
}

/* Responsive */

@media (max-width: 900px) {
    .event-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .events-container {
        padding: 0 1.2rem;
    }

    .events-title {
        font-size: 2rem;
    }
}




/* Mobile layout */
@media (max-width: 768px) {
  .event-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .event-date {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: flex-start;
    min-height: auto;
    padding: 0.4rem 0.65rem;
  }

  .event-day {
    font-size: 1.1rem;
  }

  .event-actions {
    justify-content: flex-start;
    margin-top: 0.4rem;
  }
}

/* === EMAIL SIGNUP BOX === */
.email-signup {
  background: #070913;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.signup-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.signup-container h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.signup-container p {
  opacity: 0.85;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.signup-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.signup-form input[type="email"] {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  width: 60%;
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.signup-form button {
  padding: 0.75rem 1.4rem;
  border-radius: 10px;
  background: linear-gradient(120deg, #ff3b6c, #ffb347);
  border: none;
  color: #05060a;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}

/* === Performances / Video grid === */
.performance-grid {
  display: grid;
  gap: 1.5rem;
}

/* make iframes responsive 16:9 */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: 0.75rem;
  overflow: hidden;
  margin-top: 0.75rem;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* Centered text for Performances page */
.centered-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.centered-text h1,
.centered-text p {
  text-align: center;
}

.centered-text p {
  opacity: 0.85;
  margin-bottom: 1rem;
}



/* ========== PERFORMANCE TABS & GRID ========== */

.team-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.team-tab {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #f5f5f5;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.team-tab.active {
  background: linear-gradient(120deg, #ff3b6c, #ffb347);
  color: #05060a;
  border-color: transparent;
}

.performance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.performance-grid .card h3 {
  margin-bottom: 0.35rem;
}

.performance-grid .card p {
  margin-bottom: 0.75rem;
}

/* hide inactive team grids */
.hidden {
  display: none;
}




  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    padding: 0.5rem 0;
  }

  .header-inner {
    position: relative;
  }

  .class-info {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.1rem;
  }

  .class-info h3 {
    font-size: 1rem;
  }

  .class-info p {
    font-size: 0.9rem;
  }

  .class-btn {
    width: 100%;
    text-align: center;
    margin-top: 0.4rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }


  /* ===== TABLE RESERVATIONS ===== */

.tables-main {
    padding: 6rem 0 7rem;
}

.tables-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.tables-section h1 {
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
}

.tables-subtitle {
    opacity: 0.75;
    margin-bottom: 2rem;
}

.tables-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.legend-box {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    margin-right: 0.4rem;
}

.legend-box.available {
    background: #1dd1a1;
}

.legend-box.reserved {
    background: #ff6b6b;
}

.tables-layout-card {
    background: #111319;
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    margin-top: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2.5rem;
    align-items: flex-start;
}

/* LEFT SIDE */

.tables-layout {
    text-align: center;
}

.stage {
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: linear-gradient(120deg, #ff6b6b, #feca57);
    color: #050505;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2rem;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-items: center;
}

.table-seat {
    padding: 0.85rem 0.2rem;
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.table-seat.vip {
    border-color: rgba(255, 215, 0, 0.7);
}

.table-seat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.table-seat.selected {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.table-seat.reserved {
    background: rgba(255, 107, 107, 0.18);
    border-color: rgba(255, 107, 107, 0.7);
}

/* Note under layout */
.tables-note {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* RIGHT SIDE – SIDEBAR */

.tables-sidebar {
    text-align: left;
}

.tables-sidebar h2 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.sidebar-event {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.4rem;
}

.price-list h3,
.current-selection h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.price-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.3rem;
    font-size: 0.9rem;
}

.price-list li {
    margin-bottom: 0.35rem;
}

.current-selection p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.sidebar-note {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Modal */

.table-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.table-modal.open {
    display: flex;
}

.table-modal-content {
    background: #10111a;
    border-radius: 20px;
    padding: 2rem 2.4rem;
    max-width: 400px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    text-align: left;
}

.table-modal-content h2 {
    margin-bottom: 1rem;
}

.table-modal-content label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.table-modal-content input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    margin-bottom: 1.3rem;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}



    .tables-section {
        padding: 0 1.2rem;
    }

    .payment-actions {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-actions .btn {
    width: 100%;
    text-align: center;
}




/* ===== CLASS PAYMENT POPUP (Classes page) ===== */

.class-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.class-modal.open {
  display: flex;
}

.class-modal-content {
  background: #10111a;
  border-radius: 20px;
  padding: 1.8rem 2.2rem 1.6rem;
  max-width: 420px;
  width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-sub {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 1.4rem;
}

.class-modal .payment-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.class-modal .payment-actions .btn {
  width: 100%;
  max-width: 260px;
  text-align: center;
}



/* Disabled button state */
.btn.disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: default;
}

/* Admin-style button */
.btn.admin {
    font-size: 0.75rem;
    padding: 0.5rem 0.9rem;
    background: transparent;
    border-radius: 999px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    color: #ffffff;
    align-self: flex-start;
}
  

/* ---------- Portal: Courses & Live Classes ---------- */

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.course-card {
  background: radial-gradient(circle at top left, #181818, #050505);
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.course-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.course-title {
  font-size: 1rem;
  font-weight: 600;
}

.course-level {
  font-size: 0.8rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ddd;
}

.course-meta {
  font-size: 0.85rem;
  color: #aaa;
}

.course-tag-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.course-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.course-tag.highlight {
  background: rgba(255, 85, 85, 0.18);
  color: #ff9c9c;
}

.course-lock-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f5b6b6;
}

.course-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.4rem;
  gap: 0.75rem;
}

.course-actions .btn {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.course-status-text {
  font-size: 0.78rem;
  color: #999;
}

/* Locked state */
.course-card.locked {
  opacity: 0.55;
}

.course-card.locked .course-status-text {
  color: #ffb0b0;
}

/* Live classes */

.live-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

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

.live-details-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #ccc;
}

.live-details-list li + li {
  margin-top: 0.15rem;
}





/* Resources (portal) */

.resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.8fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .resource-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.resource-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}

.resource-label {
  color: #dddddd;
}

.resource-pill {
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  border: 1px solid #444;
  font-size: 0.75rem;
  text-transform: none;
  white-space: nowrap;
  color: #f5f5f5;
}



/* ===== Classes page ===== */

.classes-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
}

.classes-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.classes-hero .page-title {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

.classes-hero .page-subtitle {
  max-width: 620px;
  margin: 0 auto;
  color: #bbbbbb;
  font-size: 0.98rem;
}

/* Grid of cards */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

/* Individual class cards */
.class-card {
  background: #15151b;
  border-radius: 1.2rem;
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
              border-color 0.18s ease;
}

/* Header + title */
.class-card-header h2 {
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

/* Text */
.class-description {
  font-size: 0.95rem;
  color: #d0d0d0;
}

/* Pills / tags */
.class-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.class-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.06);
  color: #f5f5f5;
}

.level-pill {
  background: rgba(255, 75, 75, 0.2);
  color: #ff9999;
}

/* Button inside cards */
.class-cta {
  margin-top: auto;
  align-self: flex-start;
  padding-inline: 1.7rem;
  font-size: 0.9rem;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .classes-page {
    padding-top: 4rem;
  }

  .class-card {
    padding: 1.4rem 1.3rem 1.3rem;
  }
}



/* Small tweak to center the classes grid */
.classes-page {
  padding: 3rem 0;
}

.classes-grid {
  max-width: 1150px;
  margin: 0 auto; /* centers the grid */
}

/* === Teacher / instructor pill hover animation on Classes page === */
.class-tags .instructor-pill {
  cursor: pointer;
  position: relative;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.class-tags .instructor-pill:hover {
  transform: translateY(-3px) scale(1.07);       /* smooth pop forward */
  background: rgba(255, 255, 255, 0.12);        /* slightly brighter */
  border-color: #fbbf24;                        /* gold border like “most popular” */
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.65);  /* soft glow */
  color: #fbbf24;                               /* gold text */
}


/* ===== Instructor booking modal ===== */

.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.booking-modal.open {
  display: flex;
}

.booking-modal-content {
  background: #101018;
  border-radius: 1.2rem;
  padding: 1.8rem 1.6rem 1.6rem;
  max-width: 420px;
  width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  position: relative;
}

.booking-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.booking-modal-content h2 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.booking-text {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 1rem;
}

.booking-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.booking-option-btn {
  width: 100%;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #1a1a24;
  color: #f5f5f5;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.booking-option-btn:hover {
  background: #ff4b4b;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  transform: translateY(-1px);
}

.booking-option-btn.selected {
  background: linear-gradient(120deg, #ff3b6c, #ffb347);
  color: #05060a;
}

.booking-note {
  font-size: 0.8rem;
  color: #aaa;
}

/* Price details inside booking modal */
.booking-details {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: #14141f;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-details h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.booking-price {
  font-size: 0.95rem;
  color: #f5f5f5;
  margin-bottom: 0.4rem;
}

.booking-note-small {
  font-size: 0.8rem;
  color: #aaa;
}


.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);     /* 🔥 BLUR EFFECT */
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}


.booking-modal-content {
  max-height: 85vh;        /* prevent overflow */
  overflow-y: auto;        /* scroll INSIDE modal */
}




/* ===== Instructor cards layout ===== */
.instructors-grid {
  max-width: 1200px;
  margin: 3rem auto 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.instructor-card {
  background: #151518;
  border-radius: 18px;
  padding: 2rem 1.75rem 1.75rem;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* photo circle */
.instructor-photo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instructor-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* text */
.instructor-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.instructor-role {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffb3b3;
  margin-bottom: 0.8rem;
}

.instructor-bio {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #d6d6d6;
  margin-bottom: 1.2rem;
}

/* ===== Social icons row ===== */
.instructor-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #ffffff;
  background: #111;
  transition: background 0.2s ease, transform 0.15s ease,
              box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  background: #ff4a4a;
  color: #111;
  border-color: #ff4a4a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 74, 74, 0.5);
}





/* Instructor social links */



.instructor-socials .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-decoration: none;
  background: #101018;
  border: 1px solid #333;
  color: #f5f5f5;
}

.instructor-socials .social-link i {
  font-size: 0.9rem;
}

/* Optional: tiny color accents per network */
.social-link.ig { border-color: #e1306c; }
.social-link.tt { border-color: #ffffff; }
.social-link.fb { border-color: #1877f2; }



/* Instructor social links */



/* Pricing layout */
.schedule-pricing-section {
  max-width: 1100px;
  margin: 3rem auto 4rem;
  padding: 0 1.5rem;
}

/* PRICING Title */
.schedule-pricing-section .page-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  position: relative;
}

/* Gold divider line under PRICING */
.schedule-pricing-section .page-title::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 1100px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212, 175, 55, 0.9),
    transparent
  );
  margin: 1.2rem auto 0;
}

/* Grid Layout */
.schedule-pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
}

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

.column-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* LEFT COLUMN – Schedule */
.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.schedule-list li {
  margin-bottom: 0.6rem;
  font-size: 0.98rem;
}

.schedule-note {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* RIGHT COLUMN – Pricing Cards */
.pass-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

/* ✅ FINAL LUXURY SHORT CARDS */
.pass-card {
  background: #090909;
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

/* Card Title */
.pass-card h3 {
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

/* Price */
.pass-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 0.1rem;
}

/* Description */
.pass-desc {
  font-size: 0.88rem;
  opacity: 0.9;
  line-height: 1.35;
}

/* Tags */
.pass-tag {
  display: inline-block;
  margin-bottom: 0.25rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pass-tag.recruiting {
  border-color: #fb7185;
  color: #fb7185;
}

/* Pay Buttons */
.pass-card .pay-btn {
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
}



/* Reuse your gold/black payment button style */
.pay-btn {
  display: inline-block;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #d4af37;
  background: #000;
  color: #d4af37;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
              background 0.15s ease, color 0.15s ease;
}

.pay-btn:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.75);
}

.pricing-note {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  opacity: 0.8;
}


/* Full-width divider under PRICING title */
.page-title {
  position: relative;
  margin-bottom: 3rem; /* pushes content down after the line */
}

.page-title::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 1100px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212, 175, 55, 0.8),
    transparent
  );
  margin: 1.2rem auto 0;
  opacity: 0.9;
}



/* Pulse animation for MOST POPULAR ribbon */
.pass-card.popular {
  position: relative;
  border: 1px solid #fbbf24;
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.25);
  animation: popular-border-pulse 2.4s ease-in-out infinite;
}

.pass-card.popular::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  animation: popular-badge-pulse 2.4s ease-in-out infinite;
}

/* Keyframes for subtle glow & scale */
@keyframes popular-badge-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  }
  40% {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(251, 191, 36, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  }
}

@keyframes popular-border-pulse {
  0% {
    box-shadow: 0 0 18px rgba(251, 191, 36, 0.2);
  }
  40% {
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
  }
  100% {
    box-shadow: 0 0 18px rgba(251, 191, 36, 0.2);
  }
}



/* Optional: tiny color accents per network */
.social-link.ig { border-color: #e1306c; }



.courses-subtitle {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* COURSE CARD */
.course-card {
  background: radial-gradient(circle at top, #111, #050505 60%);
  border-radius: 1rem;
  padding: 1.4rem 1.2rem 1.6rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.85);
}


.course-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.course-card .course-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 0.4rem;
  width: fit-content;
}

.course-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 0.4rem;
  width: fit-content;
}

.course-desc {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

.course-info p {
  font-size: 0.85rem;
  margin: 0.15rem 0;
  opacity: 0.9;
}

.course-price {
  font-weight: 800;
  color: #fbbf24;
}

/* REUSE YOUR POPULAR GLOW */
.course-card.popular {
  border: 1px solid #fbbf24;
  box-shadow: 0 0 28px rgba(251, 191, 36, 0.35);
}

/* ENROLL BUTTON */
.course-btn {
  margin-top: 0.5rem;
  text-align: center;
}

/* ENROLL BUTTON – animated, luxury style */
.course-card .course-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.65rem 1.7rem;
  border-radius: 999px;
  border: 1px solid #d4af37;
  background: linear-gradient(135deg, #050505, #3b2a05);
  color: #fbbf24;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.8);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
              background 0.18s ease, color 0.18s ease;
  animation: course-btn-pulse 3s ease-in-out infinite;
}

.course-card .course-btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, #d4af37, #f97316);
  color: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
}

/* Subtle pulse animation for the button */
@keyframes course-btn-pulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.75);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(212, 175, 55, 0.6);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.75);
  }
}

/* LIMITED SPOTS – simple pill style */
.course-spots {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0.25rem 0 0.6rem;
  color: #fbbf24;
  opacity: 0.9;
}

/* Slightly highlighted pill, but still simple */
.course-spots.urgent {
  display: inline-block;
  padding: 0.16rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.75);
  background: rgba(0, 0, 0, 0.8);
}

/* For the “main” course if you want it a bit more special */
.course-card.popular .course-spots.urgent {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #000;
  border-color: transparent;
}


/* ===== HIGHLIGHT SALSA LEVEL 1 (featured card) ===== */

.course-card.featured {
  position: relative;
  border-color: #fbbf24;
  box-shadow: 0 0 28px rgba(251, 191, 36, 0.35);
  transform: translateY(-4px);
  z-index: 1;
}

/* Little gold badge on top of the card */
.course-card.featured::before {
  content: "BEST PLACE TO START";
  position: absolute;
  top: -12px;
  left: 1.4rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

/* Soft glow animation just for the featured card */
@keyframes course-featured-glow {
  0% {
    box-shadow: 0 0 18px rgba(251, 191, 36, 0.25);
  }
  50% {
    box-shadow: 0 0 32px rgba(251, 191, 36, 0.55);
  }
  100% {
    box-shadow: 0 0 18px rgba(251, 191, 36, 0.25);
  }
}

.course-card.featured {
  animation: course-featured-glow 2.8s ease-in-out infinite;
}

/* CENTER Ready to Dance + Stay Updated section */
.footer-cta,
.stay-updated {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}

/* Center the container that holds both */
.footer-grid,
.footer-sections {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

/* Center buttons inside those sections */
.footer-cta .btn,
.stay-updated .btn {
  margin-left: auto;
  margin-right: auto;
}




/* ===== FINAL CENTERED CTA SECTION ===== */

.final-cta {
  display: flex;
  justify-content: center;
  padding: 6rem 1rem;
  background: radial-gradient(circle at top, #070707, #000);
}

/* ===== MAP SECTION ===== */

.map-section {
  padding: 4rem 1rem;
  background: #0a0a0f;
}

.map-section .section-title {
  margin-bottom: 2rem;
  text-align: center;
}

.final-cta-box {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.final-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.final-subtitle {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.final-btn {
  margin-bottom: 2.5rem;
}

/* SOCIAL */

.final-social-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.final-social-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.final-social-row a {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.8rem;
  opacity: 0.9;
}

/* STAY CONNECTED */

.final-title-small {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.final-subtitle-small {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.final-signup {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.final-signup input {
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: #111;
  color: #fff;
}

.final-signup button {
  padding: 0.6rem 1.4rem;
}



/* Responsive for tables layout (keep if you had it) */
@media (max-width: 768px) {
    .tables-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tables-layout-card {
        padding: 2rem 1.4rem 1.6rem;
    }
}





/* Weekly calendar layout */
.schedule-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 100px repeat(4, 1fr); /* time + 4 days */
  grid-auto-rows: minmax(120px, auto);
  gap: 0.9rem;
}

.schedule-header {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #f5f5f5;
  background: #111018;
  border-radius: 0.55rem;        /* smaller corners */
  padding: 0.35rem 0.5rem;       /* less height */
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-header.empty {
  background: transparent;
  border: none;
}

.schedule-time {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;      /* smaller text */
  color: #c9c9c9;
  background: #0b0b10;
  border-radius: 0.45rem;
  padding: 0.15rem 0.3rem; /* less height */
  height: 45px;            /* consistent small size */
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0.85;
}


.schedule-cell {
  background: #050509;
  border-radius: 0.9rem;
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-cell.empty-cell {
  background: #050509;
}

/* Make the class cards smaller inside the calendar
   but keep your colors and style */
.schedule-grid .class-card {
  background: #111018;
  border-radius: 0.9rem;
  padding: 0.7rem 0.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* border-left removed */
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.schedule-grid .class-card-header h2 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.schedule-grid .class-description {
  font-size: 0.78rem;
  margin-bottom: 0.4rem;
}

.schedule-grid .class-tags {
  gap: 0.25rem;
  margin-bottom: 0.4rem;
}

.schedule-grid .class-tags .class-pill {
  font-size: 0.6rem;
  padding: 0.15rem 0.55rem;
}

.schedule-grid .btn.primary.class-cta {
  align-self: center;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  border-radius: 999px;
}

/* Section title styling */
.classes-section .section-title {
  text-align: center;
}

.classes-section .section-subtitle {
  text-align: center;
  color: #bbbbbb;
  margin-top: 0.3rem;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .schedule-grid {
    grid-template-columns: 80px repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .schedule-grid {
    grid-template-columns: 70px 1fr;
  }

  /* Hide some day headers on very small screens */
  .schedule-header:nth-child(n + 3) {
    display: none;
  }
}

/* ---------- Mobile fix: allow horizontal scroll for the weekly schedule (Classes page) ----------
   On phones, the calendar grid is wider than the screen. Instead of hiding Wed/Thu,
   we keep the full layout and let users swipe sideways.
*/
.schedule-grid-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

@media (max-width: 900px) {
  .classes-section .schedule-grid {
    /* Keep all 4 days visible via horizontal scroll */
    grid-template-columns: 90px repeat(4, minmax(220px, 1fr));
    min-width: 1020px; /* 90 + (4 * 220) + gaps; ensures scroll instead of collapsing */
  }
}

@media (max-width: 600px) {
  /* Override the "hide headers" rule above so Wed/Thu still show */
  .classes-section .schedule-header:nth-child(n + 3) {
    display: block !important;
  }

  .classes-section .schedule-grid {
    grid-template-columns: 90px repeat(4, minmax(210px, 1fr));
    min-width: 960px;
  }
}




/* Force smaller day & time blocks in the weekly schedule */
.classes-section .schedule-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 90px repeat(4, 1fr); /* slightly narrower time column */
  grid-auto-rows: minmax(80px, auto);        /* <-- shorter rows */
  gap: 0.8rem;
}

.classes-section .schedule-header {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #f5f5f5;
  background: #111018;
  border-radius: 0.45rem;
  padding: 0.25rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.classes-section .schedule-time {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: #c9c9c9;
  background: #0b0b10;
  border-radius: 0.45rem;
  padding: 0.25rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- PERFECTLY CENTERED + MORE VISIBLE DAY HEADERS --- */
.classes-section .schedule-header {
    font-weight: 800;              /* stronger bold */
    font-size: 1.05rem;            /* more visible */
    letter-spacing: 0.07em;
    display: flex;                 /* center vertically */
    align-items: center;           /* center vertically */
    justify-content: center;       /* center horizontally */
    height: 55px;                  /* <-- reduce height so box shrinks */
    padding: 0;                    /* remove extra padding */
    border-radius: 0.55rem;
}





/* === FINAL FIXES FOR WEEKLY SCHEDULE ON CLASSES PAGE === */

/* Remove the big background boxes behind each card */
.classes-section .schedule-cell {
  background: transparent;
  border: none;
  padding: 0;
}

/* Make the time column smaller & lighter */
.classes-section .schedule-time {
  font-size: 0.7rem;      /* smaller text */
  line-height: 1.1;
  color: #9f9f9f;         /* softer grey */
  padding: 0.15rem 0.3rem;
}

/* Slightly shorter rows so it doesn’t feel so tall */
.classes-section .schedule-grid {
  grid-template-columns: 80px repeat(4, 1fr); /* narrower time column */
  grid-auto-rows: minmax(70px, auto);
}

/* Make sure the class card just fits its content nicely */
.classes-section .schedule-grid .class-card {
  height: auto;
  padding: 0.8rem 0.9rem;
}

/* ===== Mobile schedule scrolling (Classes page) =====
   Phones were only showing Monday/Tuesday because older responsive rules hid later day headers.
   Keep the same grid design, but allow horizontal scrolling on small screens.
*/
.schedule-grid-wrapper {
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

@media (max-width: 900px) {
  .classes-section .schedule-grid {
    /* Stack days vertically */
    grid-template-columns: 1fr;
    min-width: auto;
    gap: 0.5rem;
  }
  
  .schedule-header {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    margin-top: 1.5rem;
  }
  
  .schedule-header:first-child {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .classes-section .schedule-header:nth-child(n + 3) {
    display: block !important;
  }

  .classes-section .schedule-grid {
    /* Stack days vertically */
    grid-template-columns: 1fr;
    min-width: auto;
    gap: 0.5rem;
  }
  
  .schedule-header {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    margin-top: 1.2rem;
    width: 100%;
  }
  
  .class-card {
    width: 100%;
  }
}

.section-header {
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.section-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, #c9a227, transparent);
  margin: 0.75rem 0 1rem;
}

/* =========================
   PRIVATES PAGE (from scratch)
========================= */

.priv-hero{
  padding: 4.25rem 0 3rem;
  background: radial-gradient(80% 80% at 20% 10%, rgba(255, 196, 76, 0.15), transparent 55%),
              radial-gradient(70% 70% at 90% 10%, rgba(255, 60, 60, 0.12), transparent 55%),
              linear-gradient(180deg, rgba(0,0,0,0.35), transparent 55%);
}

.priv-hero-inner{
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.priv-pill{
  display:inline-flex;
  padding:.45rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  font-size: .9rem;
  color: rgba(255,255,255,0.85);
}

.priv-title{
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.1;
  margin: .9rem 0 .75rem;
}

.priv-subtitle{
  max-width: 56ch;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
}

.priv-hero-cta{
  display:flex;
  gap:.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.priv-hero-bullets{
  display:flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.78);
}

.priv-hero-card{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,12,18,0.55);
  border-radius: 18px;
  overflow: hidden;
  animation: popular-border-pulse 2.4s ease-in-out infinite;
}

.priv-hero-card-top{
  padding: 1.1rem 1.1rem .9rem;
}

.priv-hero-badge{
  display:inline-block;
  font-size:.8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding:.4rem .7rem;
  border-radius: 999px;
  background: rgba(255,196,76,0.22);
  border: 1.5px solid rgba(255,196,76,0.45);
  margin-bottom: .75rem;
  font-weight: 700;
  color: #ffc44c;
  box-shadow: 0 4px 12px rgba(255,196,76,0.15);
  animation: popular-badge-pulse 2.4s ease-in-out infinite;
}

.priv-price{
  font-size: 2.1rem;
  font-weight: 800;
  margin: .35rem 0 .25rem;
}

.priv-hero-card-bottom{
  padding: .9rem 1.1rem 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.priv-mini-row{
  display:flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .4rem 0;
  color: rgba(255,255,255,0.78);
}

.priv-section{
  padding: 3.25rem 0;
}

.priv-section-head{
  display:flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.priv-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.priv-pack{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,12,18,0.45);
  border-radius: 18px;
  padding: 1.1rem;
  position: relative;
}

.priv-pack.featured{
  border-color: rgba(255,196,76,0.35);
  box-shadow: 0 0 0 1px rgba(255,196,76,0.18) inset;
}

.priv-featured-tag{
  position:absolute;
  top: 12px;
  right: 12px;
  font-size:.78rem;
  padding:.35rem .55rem;
  border-radius: 999px;
  background: rgba(255,196,76,0.12);
  border: 1px solid rgba(255,196,76,0.22);
  color: rgba(255,255,255,0.88);
}

.priv-pack-price{
  font-size: 1.7rem;
  font-weight: 800;
  margin-top: .4rem;
}

.priv-pack-list{
  margin: .85rem 0 1rem;
  padding-left: 0;
  list-style: none;
  color: rgba(255,255,255,0.78);
}

.priv-pack-btn{
  display:block;
  text-align:center;
  padding: .8rem 1rem;
  border-radius: 999px;
  border: 1.2px solid #d4af37;
  background: #000;
  color: #d4af37;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.priv-pack-btn:hover{
  background: #d4af37;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.75);
}

.priv-book{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: start;
}

.priv-book-left, .priv-summary{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,12,18,0.45);
  border-radius: 18px;
  padding: 1.1rem;
}

.priv-select{
  width:100%;
  padding: .9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  color: #fff;
  outline: none;
  margin-bottom: .9rem;
}

.priv-sum-row{
  display:flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}

.priv-sum-note{
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.priv-faq{
  margin-top: 2.5rem;
}

.priv-faq-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.priv-faq-item{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,12,18,0.35);
  border-radius: 18px;
  padding: 1rem;
}

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


/* Payment options row (Stripe + PayPal) */
.pay-row{
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
  margin-top:.25rem;
}

/* ===========================
   MOBILE RESPONSIVE
   Layout adjustments only - preserves all desktop colors/styles
=========================== */

/* TABLET (768px - 1024px) */
@media (max-width: 1024px) {
  .priv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .instructors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .priv-book {
    grid-template-columns: 1fr;
  }
  .schedule-pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE PHONES (up to 767px) */
@media (max-width: 767px) {
  /* Make select dropdowns larger and more touch-friendly */
  .priv-select {
    font-size: 1.05rem;
    padding: 1rem 1.2rem;
    min-height: 52px;
    border-radius: 14px;
  }

  /* Ensure payment buttons keep their colors */
  .btn-stripe {
    background: #635bff !important;
    border-color: #635bff !important;
    color: #ffffff !important;
    font-size: 1rem;
    padding: 0.85rem 1.2rem;
    min-height: 52px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
  }

  .btn-paypal {
    background: #0070ba !important;
    border-color: #0070ba !important;
    color: #ffffff !important;
    font-size: 1rem;
    padding: 0.85rem 1.2rem;
    min-height: 52px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
  }

  .priv-hero-inner {
    grid-template-columns: 1fr;
  }
  .priv-grid {
    grid-template-columns: 1fr;
  }
  .priv-book {
    grid-template-columns: 1fr;
  }
  .priv-faq-grid {
    grid-template-columns: 1fr;
  }
  .instructors-grid {
    grid-template-columns: 1fr;
  }
  .pay-row {
    flex-direction: column;
    gap: 1rem;
  }
  .btn-stripe,
  .btn-paypal {
    width: 100%;
    display: block;
    text-align: center;
  }
  .priv-hero-cta {
    flex-direction: column;
  }
  .priv-hero-cta .btn {
    width: 100%;
  }
  .instructor-actions {
    flex-direction: column;
  }
  .instructor-actions .btn {
    width: 100%;
  }
  .pay-btn {
    width: 100%;
  }
  .btn.secondary {
    width: 100%;
  }
}

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

/* =========================
   Global Footer + Map
========================= */
.site-footer{
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(5,6,10,0.98);
  padding: 3rem 0;
}

.footer-inner{
  display: grid;
  grid-template-columns: 1.3fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: center;
}

.footer-left{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-left h3{
  font-size: 1.3rem;
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.footer-left p{
  margin: 0;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-left a{
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-left a:hover{
  color: #ffc44c;
  text-decoration: underline;
}

.footer-right{
  display: flex;
  width: 100%;
  justify-content: center;
}

.map-embed{
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: box-shadow 0.3s ease;
}

.map-embed:hover{
  box-shadow: 0 12px 48px rgba(212,175,55,0.2);
}

.map-link{
  display: block;
  width: 100%;
  height: 500px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.map-iframe{
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: none;
}

@media (max-width: 1024px){
  .footer-inner{
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
  }
  .map-embed{
    height: 300px;
  }
}

@media (max-width: 768px){
  .site-footer{
    padding: 2rem 0;
    margin-top: 3rem;
  }
  
  .footer-inner{
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .map-embed{
    height: 280px;
  }
  
  .footer-left h3{
    font-size: 1.1rem;
  }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */

.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.whatsapp-btn:hover {
  background: #20ba5a;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  transform: scale(1.1);
}

.whatsapp-btn i {
  color: white;
  font-size: 28px;
}

@media (max-width: 768px){
  .whatsapp-btn {
    width: 55px;
    height: 55px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .whatsapp-btn i {
    font-size: 24px;
  }
}

/* ===== TESTIMONIALS SECTION ===== */

.testimonials-section {
  padding: 4rem 1rem;
  background: #0a0a0f;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,175,55,0.5);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #d4af37;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
  color: #d0d0d0;
}

.testimonial-author {
  font-weight: 600;
  color: #f5f5f5;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #a0a0a0;
  margin-top: 0.25rem;
}

/* ===== TRIAL CLASS CTA ===== */

.trial-cta {
  background: linear-gradient(135deg, #d4af37, #c99f2e);
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 12px;
  margin: 2rem 0;
}

.trial-cta h3 {
  color: #05060a;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.trial-cta p {
  color: #05060a;
  margin-bottom: 1rem;
}

.trial-cta .btn {
  background: #05060a;
  color: #d4af37;
  border: 2px solid #d4af37;
}

.trial-cta .btn:hover {
  background: #d4af37;
  color: #05060a;
}

/* ===== BENEFITS LIST ===== */

.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.benefits-list li:before {
  content: "✓";
  color: #d4af37;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ===== GALLERY SECTION ===== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(212,175,55,0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  color: white;
  font-size: 2.5rem;
}

/* ===== PAYMENT METHODS ===== */

.payment-methods {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  margin: 2rem 0;
}

.payment-methods p {
  margin: 0;
  font-weight: 600;
}

.payment-icons {
  display: flex;
  gap: 1rem;
}

.payment-icons span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(212,175,55,0.1);
  border-radius: 8px;
  font-size: 0.9rem;
}

/* ===== FAQ SECTION ===== */

.faq-container {
  max-width: 800px;
  margin: 2rem auto;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-left: 4px solid #d4af37;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}

.faq-question {
  color: #d4af37;
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
  cursor: pointer;
}

.faq-answer {
  margin: 0;
  color: #d0d0d0;
  line-height: 1.7;
}

.faq-answer a {
  color: #d4af37;
  text-decoration: none;
  border-bottom: 1px solid #d4af37;
}

.faq-answer a:hover {
  color: #f5f5f5;
}


