/* ================================================
   GRACIE'S BRAND — Warm & Playful Theme
   Colors: Purple #6B4C9A, Gold #F5A623, Teal #2CBCB6
   ================================================ */

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

:root {
  --purple: #6B4C9A;
  --purple-light: #9B72CF;
  --purple-dark: #4A3270;
  --gold: #F5A623;
  --gold-light: #FFD700;
  --gold-soft: #FFF0D0;
  --teal: #2CBCB6;
  --teal-light: #5ED4CE;
  --cream: #FFF8F0;
  --white: #FFFFFF;
  --dark: #2D2040;
  --text: #3A2D4F;
  --text-light: #6B5B7B;
  --shadow: 0 4px 20px rgba(107, 76, 154, 0.12);
  --shadow-hover: 0 8px 30px rgba(107, 76, 154, 0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--purple-dark);
  line-height: 1.3;
}

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.section-title.center {
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

.required {
  color: #E74C3C;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-dark);
  padding: 14px 36px;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 166, 35, 0.5);
}

.btn-lg {
  font-size: 1.15rem;
  padding: 16px 42px;
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  padding: 12px 32px;
}

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

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--purple);
}

.nav-logo .note {
  color: var(--gold);
  font-size: 1.4rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav-links a:hover {
  color: var(--purple);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-dark) !important;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(245, 166, 35, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--purple);
  position: relative;
  transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 2px;
  background: var(--purple);
  transition: all var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 50%, var(--teal) 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='60' cy='40' r='1' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='80' cy='10' r='1.2' fill='rgba(255,255,255,0.06)'/%3E%3Ccircle cx='40' cy='70' r='0.8' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='90' cy='80' r='1.3' fill='rgba(255,255,255,0.07)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 24px;
  max-width: 720px;
}

.hero h1 {
  font-size: 3.6rem;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-sub {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.photo-placeholder {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--teal-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(107, 76, 154, 0.2);
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 8px;
}

.photo-placeholder p {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-experience {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--gold-soft);
}

.about-experience h3 {
  font-size: 1.1rem;
  color: var(--purple);
  margin-bottom: 14px;
}

.experience-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exp-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.exp-date {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--teal);
  white-space: nowrap;
  min-width: 110px;
}

.exp-role {
  font-size: 0.92rem;
  color: var(--text);
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--gold-soft);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
}

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

/* ---------- SERVICES ---------- */
.services {
  background: var(--cream);
}

.services-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
}

.service-card {
  flex: 0 0 290px;
  max-width: 290px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
}

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

.service-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--purple);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- MUSIC ---------- */
.music {
  background: var(--white);
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.music-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.album-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}

.album-placeholder.disney {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
}

.album-icon {
  font-size: 3.5rem;
  margin-bottom: 8px;
}

.album-placeholder p {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}

.music-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--purple);
}

.music-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.embed-placeholder {
  background: var(--white);
  border: 2px dashed var(--purple-light);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  color: var(--purple-light);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- SONG LIBRARY ---------- */
.songs-heading {
  margin-top: 64px;
}

.song-selection-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 2px solid var(--purple-light);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 32px;
  position: sticky;
  top: 72px;
  z-index: 50;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.song-selection-bar.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.song-selection-bar #selectedCount {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--purple);
  font-size: 1rem;
}

.songs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.song-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
}

.song-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}

.song-card.selected {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(107, 76, 154, 0.04), rgba(44, 188, 182, 0.04));
}

/* Custom checkbox */
.song-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.song-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.song-checkbox .checkmark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid #D0C4E0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.song-checkbox .checkmark::after {
  content: '♪';
  font-size: 14px;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}

.song-checkbox input:checked + .checkmark {
  background: var(--purple);
  border-color: var(--purple);
}

.song-checkbox input:checked + .checkmark::after {
  opacity: 1;
}

.song-checkbox:hover .checkmark {
  border-color: var(--purple-light);
}

.song-info {
  flex: 1;
  min-width: 0;
}

.song-info h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-card audio {
  flex-shrink: 0;
  width: 220px;
  height: 36px;
  border-radius: 20px;
}

/* Style the audio player for webkit browsers */
.song-card audio::-webkit-media-controls-panel {
  background: var(--cream);
}

/* ---------- MUSIC PAGE HERO ---------- */
.music-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 50%, var(--teal) 100%);
  overflow: hidden;
}

.music-hero .hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

.music-page-grid .song-card {
  padding: 24px;
}

.active-link {
  color: var(--purple) !important;
}

.active-link::after {
  width: 100% !important;
}

/* ---------- SONG DROPDOWN (Booking Form) ---------- */
.song-dropdown-wrapper {
  position: relative;
}

.song-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 2px solid #E8E0F0;
  border-radius: var(--radius-sm);
  background: var(--cream);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
}

.song-dropdown-trigger:hover {
  border-color: var(--purple-light);
}

.song-dropdown-trigger.open {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(107, 76, 154, 0.1);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.song-dropdown-trigger.has-selections {
  color: var(--text);
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform var(--transition);
}

.song-dropdown-trigger.open .dropdown-arrow {
  transform: rotate(180deg);
}

.song-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 2px solid var(--purple-light);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 100;
  box-shadow: 0 8px 24px rgba(107, 76, 154, 0.15);
  overflow: hidden;
}

.song-dropdown-menu.open {
  display: block;
}

.song-dropdown-list {
  max-height: 400px;
  overflow-y: auto;
}

.song-dropdown-item {
  display: none;
}

.song-dropdown-item.visible {
  display: flex;
}

.song-dropdown-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-top: 1px solid #E8E0F0;
  background: var(--cream);
  gap: 8px;
}

.song-page-btn {
  background: var(--white);
  border: 1.5px solid var(--purple-light);
  color: var(--purple-dark);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}

.song-page-btn:hover:not(:disabled) {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.song-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.song-page-info {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-light);
}

.song-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  cursor: pointer;
  transition: background var(--transition);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--purple-dark);
}

.song-dropdown-item:hover {
  background: var(--cream);
}

.song-dropdown-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--purple);
  cursor: pointer;
  flex-shrink: 0;
}

.song-dropdown-item span {
  flex: 1;
}

/* Selected songs tags */
.selected-songs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.song-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
}

.song-tag-remove {
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.song-tag-remove:hover {
  opacity: 1;
}

/* ---------- EXPERIENCE TIMELINE ---------- */
.experience {
  background: var(--cream);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--purple), var(--teal));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--purple);
}

.timeline-date {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--purple);
  margin-bottom: 8px;
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.timeline-org {
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-content p:last-child {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: var(--white);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold-light);
}

/* ---------- BOOKING FORM ---------- */
.booking {
  background: var(--white);
}

.booking-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.booking-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--purple-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid #E8E0F0;
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(107, 76, 154, 0.1);
}

.form-group input.error,
.form-group select.error {
  border-color: #E74C3C;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 1.1rem;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Success / Error Messages */
.form-success {
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--purple);
}

.form-success p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.form-error {
  background: #FFF0F0;
  border: 1px solid #E74C3C;
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  text-align: center;
  margin-top: 16px;
}

.form-error p {
  color: #C0392B;
  font-weight: 500;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand .note {
  color: var(--gold);
}

.footer h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--purple-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    transition: transform var(--transition);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .exp-item {
    flex-direction: column;
    gap: 2px;
  }

  /* Services */
  .services-grid {
    max-width: 290px;
  }

  /* Songs */
  .songs-grid {
    grid-template-columns: 1fr;
  }

  .music-page-grid {
    grid-template-columns: 1fr;
  }

  .song-card {
    flex-wrap: wrap;
  }

  .song-card audio {
    width: 100%;
    margin-top: 4px;
  }


  /* Music */
  .music-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Form */
  .form-row {
    flex-direction: column;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 16px;
  }

  .photo-placeholder {
    width: 200px;
    height: 200px;
  }
}
