:root {
  --primary: #02b5a8;
  --primary-dark: #0f766e;
  --accent: #f43f5e;
  --accent-dark: #e11d48;
  --dark: #0f172a;
  --dark-overlay: rgba(15, 23, 42, 0.8);
  --light: #FDFBF7; /* Soft gold/cream background */
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-800: #1e293b;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgba(2, 181, 168, 0.3);
  --radius: 1rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Header */
.header-top {
  background: var(--dark);
  color: var(--white);
  padding: 0.75rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.header-contact {
  display: flex;
  gap: 1.5rem;
}

.header-contact a {
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Phone number larger */
.header-contact a:first-child {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.header-contact a span {
  font-size: 1.3em;
}

.header-contact a:hover {
  color: var(--white);
}

.header-social {
  display: flex;
  gap: 1.25rem;
}

.header-social a {
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

/* Social Icons Original Colors */
.header-social a[aria-label="Facebook"] { color: #1877F2; }
.header-social a[aria-label="Instagram"] { color: #E4405F; }
.header-social a[aria-label="YouTube"] { color: #FF0000; }

.header-social a span {
  font-size: 1.5rem; /* Larger icons */
}

.header-social a:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .header-top { 
    display: block; /* Visible on mobile */
    padding: 0.5rem 0;
  }
  .header-top .container {
    flex-direction: column;
    gap: 0.5rem;
  }
  .header-contact {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark);
  letter-spacing: -0.025em;
  z-index: 101;
}

.brand-logo {
  height: 70px; /* Larger logo */
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--dark);
  z-index: 101;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: white;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  box-shadow: var(--shadow);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  margin-top: -81px;
  padding-top: 81px;
  text-align: center;
}

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

.hero-bg video, .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1); /* Slight zoom for parallax feel */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  animation: fadeUp 1s ease-out;
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  color: var(--gray-100);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* Grids & Cards */
.grid {
  display: grid;
  gap: 2.5rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.card-image img, .card-image iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.card-text {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.7;
}

.card-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
}

/* Features */
.feature-card {
  padding: 2.5rem 2rem;
  text-align: center;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  font-size: 2rem;
  box-shadow: inset 0 0 0 4px white, var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--gray-200);
  padding: 4rem 0 2rem;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-links h4, .footer-newsletter h4 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.footer-newsletter input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem;
  border-radius: 0.5rem;
  color: white;
  width: 100%;
  transition: var(--transition);
}

.footer-newsletter input:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--primary);
  outline: none;
}

.footer-newsletter input::placeholder {
  color: rgba(255,255,255,0.4);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(2, 181, 168, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
}

.footer-legal a:hover {
  color: var(--white);
}

/* Audio Player Redesign */
.audio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 2000;
  font-family: 'Montserrat', sans-serif;
}

/* Hidden elements */
#main-audio { display: none; }
.player-minimized, .player-maximized { display: none; }

/* State: Minimized (Default) */
.audio-player:not(.expanded) .player-minimized {
  display: flex;
}

/* State: Expanded */
.audio-player.expanded .player-maximized {
  display: flex;
}

/* --- Minimized Styles --- */
.player-minimized {
  background: #18181b; /* Zinc 900 */
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  width: 100%;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

.min-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  flex: 1;
  min-width: 0;
}

.min-art {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #27272a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
}

.min-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.min-title {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.min-artist {
  color: #a1a1aa;
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.min-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-control-min {
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-control-min span { font-size: 28px; }

/* --- Maximized Styles (Mobile First) --- */
.player-maximized {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100vw;
  background: linear-gradient(to bottom, #27272a, #09090b);
  flex-direction: column;
  padding: 1.5rem;
  z-index: 2010; /* Above everything */
  overflow-y: auto;
}

.max-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.max-header-title {
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.btn-icon {
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.max-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.max-art-container {
  aspect-ratio: 1;
  background: #18181b;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.max-info {
  margin-bottom: 2rem;
}

.max-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.max-artist {
  color: #a1a1aa;
  font-size: 1.1rem;
}

.live-badge {
  background: #ef4444;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  vertical-align: middle;
}

.max-progress {
  margin-bottom: 2rem;
}

.progress-bar-container {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-bottom: 0.5rem;
  position: relative;
  cursor: pointer;
}

.progress-bar-fill {
  background: white;
  height: 100%;
  border-radius: 2px;
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.time-info {
  display: flex;
  justify-content: space-between;
  color: #71717a;
  font-size: 0.75rem;
  font-weight: 600;
}

.max-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.btn-control-sec {
  background: transparent;
  border: none;
  color: #a1a1aa;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}

.btn-control-sec:hover { color: white; }
.btn-control-sec span { font-size: 28px; }

.btn-control-main {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FFD700; /* Yellow Accent */
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  transition: transform 0.1s;
  color: var(--dark);
}

.btn-control-main:active { transform: scale(0.95); }

.max-volume {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #a1a1aa;
}

.volume-slider {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
}

.volume-fill {
  height: 100%;
  background: white;
  border-radius: 2px;
}

/* --- Desktop Styles --- */
@media (min-width: 992px) {
  /* Minimized: Floating Pill Bottom Right */
  .audio-player:not(.expanded) {
    width: auto;
    left: auto;
    right: 30px;
    bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  
  .audio-player:not(.expanded) .player-minimized {
    width: 360px;
    background: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    height: 80px;
  }

  /* Maximized: Full Bottom Bar */
  .audio-player.expanded .player-maximized {
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    width: 100%;
    height: 100px;
    flex-direction: row;
    padding: 0 3rem;
    align-items: center;
    background: #18181b;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .max-header { display: none; }
  
  .max-content {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    gap: 2rem;
    margin: 0 auto;
  }
  
  /* Desktop Art */
  .max-art-container {
    display: block !important;
    grid-column: 1;
    grid-row: 1;
    width: 56px;
    height: 56px;
    min-width: 56px;
    margin: 0;
    border-radius: 6px;
    box-shadow: none;
    background: transparent;
  }
  
  .max-info {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 0 72px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    text-align: left;
  }
  
  /* Remove old pseudo-element art */
  .max-info::before { display: none; }
  
  .max-title { font-size: 1rem; margin: 0; }
  .max-artist { font-size: 0.85rem; }

  /* Center Group */
  .max-controls {
    grid-column: 2;
    grid-row: 1;
    margin: 0 auto 8px auto;
    width: 100%;
    max-width: 240px;
    justify-content: space-between;
  }
  
  .btn-control-main {
    width: 40px;
    height: 40px;
    background: white;
    color: black;
    box-shadow: none;
  }
  .btn-control-main span { font-size: 24px; }
  .btn-control-sec span { font-size: 22px; }
  
  .max-progress {
    grid-column: 2;
    grid-row: 2;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .progress-bar-container { flex: 1; margin: 0; cursor: pointer; }
  .time-info { width: auto; font-size: 0.7rem; font-weight: 500; display: contents; }
  .time-current { order: -1; min-width: 35px; text-align: right; }
  .time-total { min-width: 35px; }
  
  .max-volume {
    grid-column: 3;
    justify-content: flex-end;
  }
  
  .volume-slider { max-width: 100px; }
}

/* Mobile Menu */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 8rem 2rem 4rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2000;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }
  
  .nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Stagger animation for menu items */
  .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
  .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
  .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }

  .nav-link {
    font-size: 1.5rem; /* Larger font */
    font-weight: 700;
    border-bottom: none;
    padding: 0.5rem 0;
    color: var(--dark);
    display: inline-block;
  }
  
  .nav-link:hover, .nav-link:focus {
    color: var(--primary);
    transform: scale(1.05);
  }
  
  .nav-menu .btn {
    width: 100%;
    max-width: 280px;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
  }
  
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--dark);
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: -0.75rem;
    position: relative;
    z-index: 2001; /* Ensure above mobile menu */
  }
}

/* Fixed Elements */
.floating-actions {
  position: fixed;
  bottom: 100px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 990;
}

.floating-btn {
  background: var(--white);
  color: var(--primary-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05); /* Subtle border */
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  border-color: var(--primary);
  color: var(--primary);
}

.whatsapp-float {
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: var(--transition);
  border: 2px solid white; /* distinct border */
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .floating-actions {
    bottom: 140px; /* Adjusted to avoid collision with player */
  }
  .floating-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }
}

/* Utilities */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.bg-light { background-color: var(--light); }
.bg-white { background-color: var(--white); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Modal */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  inset: 0;
  z-index: 2000;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show .modal-backdrop {
  opacity: 1;
}

.modal-content {
  position: relative;
  background: white;
  margin: 2rem auto;
  max-width: 500px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.modal.show .modal-content {
  opacity: 1;
  transform: translateY(0);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
  padding: 0.5rem;
  line-height: 1;
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--gray-100);
  color: var(--dark);
}

.modal-body {
  padding: 1.5rem;
}

/* Audio Player Toggle */
.player-toggle {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.player-toggle:hover {
  transform: scale(1.1);
  background: var(--white);
  color: var(--accent);
}

.audio-player {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop Minimized */
.audio-player.minimized {
  transform: translateX(-50%) translateY(calc(100% - 10px));
}

.audio-player.minimized:hover {
  transform: translateX(-50%) translateY(calc(100% - 20px));
}

.audio-player.minimized .player-toggle span {
  transform: rotate(180deg);
}

/* Mobile Minimized */
@media (max-width: 768px) {
  .player-toggle {
    right: 10px;
    top: -20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.2);
  }
  
  .audio-player.minimized {
    transform: translateX(-50%) translateY(calc(100% + 15px));
  }
  
  .audio-player.minimized:hover {
    transform: translateX(-50%) translateY(calc(100% + 15px));
  }
}
