/* Le Spot Studio - Custom CSS with Tailwind Base */

/* Import Tailwind CSS */
@import url('https://cdn.tailwindcss.com/3.3.0');

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600;700&family=Inter:wght@400;500&display=swap');

/* Custom CSS Variables for Brand Colors */
:root {
  --bg-primary: #0E0E10;
  --text-primary: #F5F5F5;
  --text-secondary: #C9C9CF;
  --accent: #E83F5B;
  --divider: #2A2A2E;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.25rem;
  font-weight: 600;
}

h3 {
  font-size: 1.875rem;
  font-weight: 600;
}

p {
  font-weight: 400;
  line-height: 1.7;
}

.text-secondary {
  color: var(--text-secondary);
}

.text-accent {
  color: var(--accent);
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 3.5rem 0; /* py-14 */
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 0; /* py-24 */
  }
}

/* Grid System */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

@media (max-width: 767px) {
  .grid-12 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(14, 14, 16, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--divider);
}

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

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-lockup {
  text-decoration: none;
}

.brand-lockup:hover {
  text-decoration: none;
}

.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-primary);
  text-decoration: none;
}

.brand-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-transform: lowercase;
  margin-top: -0.25rem;
}

/* CTA Button Styles */
.cta-button {
  background-color: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(232, 63, 91, 0.3);
}

.cta-button-secondary {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  position: relative;
}

.cta-button-secondary:hover {
  color: var(--accent);
}

.cta-button-secondary::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.cta-button-secondary:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 0 1rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-ctas {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
    align-items: center; /* Ensure alignment here too */
    width: 100%;
  }
}

/* Floating Mobile CTA */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: none;
}

@media (max-width: 767px) {
  .floating-cta {
    display: block;
  }
}

/* Section Styles */
.section {
  position: relative;
}

.section-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.6s ease;
}

.section-title.animate-underline::after {
  width: 3rem;
}

/* Symmetrical underline for specific sections */
.section-title.symmetrical::before {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: 3rem;
  height: 2px;
  background-color: var(--accent);
}

.section-title.symmetrical::after {
  width: 3rem;
}

/* Offer Cards */
.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .offer-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.offer-card {
  padding: 2rem;
  border: 1px solid var(--divider);
  border-radius: 0.75rem;
  transition: transform 0.2s ease;
}

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

.offer-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.offer-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Photo Gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 3rem 0;
}

@media (max-width: 767px) {
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-image {
  aspect-ratio: 4/3;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.testimonial {
  padding: 2rem;
  border-left: 3px solid var(--accent);
  background: rgba(42, 42, 46, 0.3);
  border-radius: 0 0.75rem 0.75rem 0;
}

.testimonial blockquote {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.testimonial cite {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-style: normal;
}

/* Calendly Section */
.calendly-section {
  text-align: center;
}

.calendly-section h2 {
  margin-bottom: 1rem;
}

.calendly-section p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.privacy-note {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--divider);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
}

.footer-brand {
  justify-self: start;
}

@media (max-width: 767px) {
  .footer-brand {
    justify-self: center;
  }
}

.footer-center {
  justify-self: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.footer-right {
  justify-self: end;
  display: flex;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 767px) {
  .footer-right {
    justify-self: center;
  }
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.legal-row {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--divider);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Dividers */
.divider {
  height: 1px;
  background-color: var(--divider);
  margin: 4rem 0;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus Styles */
*:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}


/* Offer Section Redesign */
.offer-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.offer-block {
    margin-bottom: 4rem;
}

/* Block 1: Featured Offer */
.featured-offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #1A1A1D;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--divider);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {\n    align-items: center;\n    text-align: center;
    padding: 5rem 3rem 3rem 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-best-value {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.offer-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.offer-features {
    list-style: none;
    margin-bottom: 2rem;
}

.offer-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.offer-features li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Block 2: Rehearsal Sessions */
.rehearsal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.offer-card {
    background: #1A1A1D;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid var(--divider);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.full-width-card {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* Block 3: Memberships */
.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.membership-card {
    background: #F5F5F5; /* Light grey as requested */
    color: #0E0E10; /* Dark text for light bg */
    position: relative;
    align-items: flex-start;
    text-align: left;
}

.membership-card h3 {
    color: #0E0E10;
}

.membership-card .offer-features-simple {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.ribbon-favorite {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
}

/* Block 4: Creative Room */
.creative-card {
    position: relative;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.creative-card .bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.4);
}

.creative-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 600px;
}

/* Block 5: Drum Lessons */
.lesson-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #1A1A1D;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--divider);
}

.lesson-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lesson-content {
    padding: 5rem 3rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* Buttons */
.btn {\n    text-align: center;\n    justify-content: center;\n    display: inline-flex;\n    align-items: center;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: #d6364d;
}

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

.white-btn {
    border-color: white;
    color: white;
}

.white-btn:hover {
    background: white;
    color: black;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-offer, .rehearsal-grid, .membership-grid, .lesson-layout {
        grid-template-columns: 1fr;
    }
    
    .featured-image, .lesson-image {
        height: 250px;
    }
    
    .full-width-card {
        width: 100%;
    }
}

/* --- REDESIGN VARIABLES --- */
:root {
    --bg-dark: #111214;
    --card-dark: #18191B;
    --bg-light: #161719; /* Soft Dark */
    --card-light: #1F2023; /* Lighter Charcoal */
    --accent-red: #EF466F;
    --text-dark: #EDEDED;
    --text-light: #EDEDED; /* White text for dark mode */
    --text-secondary-new: #AFAFAF;
    
    --shadow-dark: 0 4px 16px rgba(0,0,0,0.25);
    --shadow-light: 0 4px 16px rgba(0,0,0,0.25);
    
    --radius-card: 12px;
}

/* --- ZONES --- */
.zone-dark {
    background-color: var(--bg-dark);
    color: var(--text-dark);
    padding: 4rem 0;
}

.zone-light {
    background-color: var(--bg-light);
    color: var(--text-light);
    padding: 4rem 0;
}

/* --- DIVIDERS --- */
.zone-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 3rem 0;
    width: 100%;
}

.zone-divider::before,
.zone-divider::after {
    content: "";
    flex: 1;
    height: 1px;
}

.zone-dark .zone-divider::before,
.zone-dark .zone-divider::after {
    background-color: rgba(255,255,255,0.08);
}

.zone-light .zone-divider::before,
.zone-light .zone-divider::after {
    background-color: rgba(255,255,255,0.08);
}

.zone-divider span {
    padding: 0 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary-new);
}

/* --- CARDS --- */
.card-new {
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.zone-dark .card-new {
    background-color: var(--card-dark);
    box-shadow: var(--shadow-dark);
    border: 1px solid rgba(255,255,255,0.05);
}

.zone-light .card-new {
    background-color: var(--card-light);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255,255,255,0.05);
}

/* --- TYPOGRAPHY UPDATES --- */
.zone-dark h3 { color: var(--text-dark); }
.zone-light h3 { color: var(--text-light); }

.zone-dark p { color: var(--text-secondary-new); }
.zone-light p { color: var(--text-secondary-new); }

/* --- BUTTONS --- */
.btn-accent {
    background-color: var(--accent-red) !important;
    color: white !important;
    border: none !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.btn-accent:hover {
    opacity: 0.9;
}

/* --- SPECIFIC LAYOUTS --- */

/* Promo Pack (Dark) */
.promo-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
}
@media (max-width: 768px) { .promo-grid { grid-template-columns: 1fr; } }

/* Drop-in (Light) */
.dropin-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.dropin-center {
    max-width: 600px;
    margin: 0 auto;
}

/* Memberships (Dark) */
.membership-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Creative + Drums (Light) */
.creative-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-card {
    position: relative;
    height: 300px;
    border-radius: var(--radius-card);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.visual-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    z-index: 0;
}

.visual-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.visual-content h3, .visual-content p {
    color: white !important; /* Always white on image */
}


/* --- VISUAL UPDATES --- */

/* Hero Transparency */
.hero-image {
    opacity: 0.3;
}

/* Drop-in Flex Cards */
.dropin-card-flex {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    padding: 1.5rem !important;
    gap: 1.5rem;
    text-align: left !important;
}

@media (max-width: 480px) {
    .dropin-card-flex {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .dropin-content {
        align-items: center !important;
    }
}

.dropin-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.dropin-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dropin-content h3 {
    margin-bottom: 0.25rem;
}

.dropin-content p {
    margin-bottom: 1rem;
}

/* --- DROP-IN BACKGROUND UPDATE --- */

.dropin-card-bg {
    position: relative;
    overflow: hidden;
    /* Ensure height is enough */
    min-height: 200px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 !important; /* Reset padding to handle it in overlay */
}

.card-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25; /* Transparent feel */
    z-index: 0;
    transition: transform 0.5s ease;
}

.dropin-card-bg:hover .card-bg-img {
    transform: scale(1.05);
    opacity: 0.35;
}

.dropin-content-overlay {
    position: relative;
    z-index: 1;
    padding: 2rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Ensure text is readable on top of image */
.dropin-content-overlay h3,
.dropin-content-overlay p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Add shadow for readability */
    color: var(--text-dark) !important; /* Force light text since bg is darkish */
}

.dropin-content-overlay span {
    color: rgba(255,255,255,0.7) !important;
}

/* --- FIX MEMBERSHIP BADGE --- */
.ribbon-favorite {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: white;
    padding: 0.35rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(239, 70, 111, 0.3);
    z-index: 10;
    width: auto;
    white-space: nowrap;
}

/* Add extra top padding to membership card to accommodate badge */
.membership-card {
    padding-top: 3.5rem !important;
}

/* --- MEMBERSHIP REFINEMENTS --- */

.membership-header {
    margin-bottom: 1rem;
}

.membership-header h3 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.membership-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-red);
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.membership-price .period {
    font-size: 0.875rem;
    color: var(--text-secondary-new);
    font-weight: 500;
}

/* Refine Badge - Ensure it's not too wide and perfectly centered */
.ribbon-favorite {
    /* Existing positioning is good (left: 50%, translate -50%), just refining look */
    padding: 0.25rem 1rem !important; /* Slightly less padding */
    font-size: 0.7rem !important; /* Slightly smaller text */
    letter-spacing: 0.1em !important;
    width: max-content; /* Ensure it wraps tight to text */
    max-width: 80%; /* Prevent it from getting too close to edges */
    box-shadow: 0 4px 12px rgba(239, 70, 111, 0.4);
}

/* --- HOVER GLOW EFFECTS --- */

/* General Offer Cards - Subtle Silver Glow */
.card-new, .visual-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-new:hover, .visual-card:hover {
    /* Silverish glow */
    box-shadow: 0 0 20px rgba(192, 192, 200, 0.15), 0 0 0 1px rgba(192, 192, 200, 0.1);
    border-color: rgba(192, 192, 200, 0.3) !important;
    transform: translateY(-4px);
}

/* Promo Pack - Golden Glow */
.promo-grid:hover {
    /* Golden glow - slightly more visible */
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2), 0 0 0 1px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5) !important;
}

/* --- EQUIPMENT SECTION --- */

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.equipment-category {
    margin-bottom: 3rem;
}

.equipment-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: var(--text-dark);
}

.equipment-category h3::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--accent-red);
    border-radius: 2px;
}

.equipment-category ul {
    list-style: none;
    padding: 0;
}

.equipment-category li {
    margin-bottom: 0.75rem;
    color: var(--text-dark); /* Light text */
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.25rem;
}

.equipment-category li::before {
    content: "•";
    color: var(--text-secondary-new); /* Softer bullet color */
    position: absolute;
    left: 0;
}

.text-secondary-new {
    color: var(--text-secondary-new);
    font-size: 0.9em;
}

/* --- LIGHTBOX --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.gallery-image {
    cursor: pointer; /* Indicate clickable */
}

/* --- TESTIMONIALS UPDATE --- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.stars {
    color: var(--accent-red);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 0.25rem;
}

/* --- LIGHTBOX NAVIGATION --- */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    font-size: 2.5rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-red);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        padding: 0.5rem;
    }
}

/* --- HELP SECTION RESPONSIVE --- */
@media (max-width: 600px) {
    .help-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .help-buttons a {
        width: 100%;
        max-width: 300px;
    }
}

/* --- MINI ICON BUTTONS --- */
.action-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-icon-only {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--accent-red);
    color: white;
    transition: all 0.2s ease;
}

.btn-icon-only:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Center buttons in specific cards */
.featured-content .action-buttons,
.dropin-center .action-buttons,
.visual-content .action-buttons,
.membership-card .action-buttons {
    justify-content: center; /* Default center for most */
}

/* Left align for memberships if needed, but center usually looks better in these cards */
.membership-card .action-buttons {
    justify-content: flex-start;
}

/* --- MOBILE OPTIMIZATION --- */

@media (max-width: 768px) {
    /* Typography Scaling */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    /* Layout Adjustments */
    .section-padding { padding: 3rem 0; }
    
    .dropin-grid-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .membership-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Footer Stacking */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    /* Gallery Grid */
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 cols on mobile looks good for images */
        gap: 0.5rem;
    }
    

    /* Fix hero content centering on mobile */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        padding: 0 1rem;
    }

    /* Adjust buttons in hero if needed */
    .hero-ctas {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        gap: 1.5rem !important;
    }
    
    .hero-ctas .cta-button, 
    .hero-ctas .cta-button-secondary {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 300px !important; /* Move max-width to buttons */
        text-align: center !important;
        margin: 0 auto !important; /* Center the buttons themselves */
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    /* Smaller screens specific */
    h1 { font-size: 2rem; }
    
    .photo-gallery {
        grid-template-columns: 1fr; /* 1 col for very small screens if needed, or keep 2 */
    }
}


/* ULTIMATE MOBILE CENTERING FIX */
@media (max-width: 768px) {
    .hero-content {
        position: relative;
        width: 100%;
        padding: 0;
    }
    
    .hero-ctas {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .hero-ctas .cta-button {
        width: auto;
        min-width: 200px;
        padding: 0.75rem 2rem;
        text-align: center;
        display: inline-block;
    }
}


/* SUPER CLAUDE ULTIMATE CENTERING FIX */
@media (max-width: 768px) {
    .hero {
        text-align: center !important;
    }
    
    .hero-content {
        text-align: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .hero-ctas {
        text-align: center !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
        position: static !important;
        transform: none !important;
        left: auto !important;
        display: block !important;
    }
    
    .hero-ctas .cta-button {
        display: inline-block !important;
        width: auto !important;
        min-width: 250px !important;
        max-width: 90% !important;
        margin: 0 auto !important;
        padding: 0.75rem 2rem !important;
        text-align: center !important;
    }
}
