/* McCroskey Music - Components Styling */

/* ==========================================================================
   Hero Section & Home Styles
   ========================================================================== */
.hero-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
  padding: 48px 36px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(217, 119, 6, 0.08) 100%);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-xl);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(217, 119, 6, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* CD Stack Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-cd-stack {
  position: relative;
  width: 260px;
  height: 260px;
}

.stack-img {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  object-fit: cover;
  border: 3px solid #FFFFFF;
}

.stack-1 {
  top: 0;
  left: 40px;
  z-index: 3;
  transform: rotate(-4deg);
}

.stack-2 {
  bottom: 10px;
  left: 0;
  z-index: 2;
  transform: rotate(-14deg);
}

.stack-3 {
  bottom: 0;
  right: 0;
  z-index: 1;
  transform: rotate(12deg);
}

.hero-cd-stack:hover .stack-1 {
  transform: translateY(-8px) rotate(-2deg);
}
.hero-cd-stack:hover .stack-2 {
  transform: translateX(-12px) rotate(-18deg);
}
.hero-cd-stack:hover .stack-3 {
  transform: translateX(12px) rotate(16deg);
}

/* Features Row */
.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.feature-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Section Header Row */
.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-heading-center {
  text-align: center;
  margin-bottom: 36px;
}

.view-all-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary-light);
  font-size: 1rem;
}

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

/* ==========================================================================
   Album Cards Grid
   ========================================================================== */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.album-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.album-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.album-card-media {
  position: relative;
  aspect-ratio: 1;
  background: #000;
  overflow: hidden;
}

.album-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.album-card:hover .album-cover-img {
  transform: scale(1.05);
}

.album-cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.album-card:hover .album-cover-overlay {
  opacity: 1;
}

.view-album-badge {
  background: #FFFFFF;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

.album-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.album-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.album-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary-light);
  background: rgba(37, 99, 235, 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.album-year {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-subtle);
}

.album-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}

.album-card-title a {
  color: var(--color-text-main);
}

.album-card-title a:hover {
  color: var(--color-primary-light);
}

.album-card-subtitle {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-subtle);
  margin-bottom: 8px;
}

.album-card-description {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 18px;
  flex: 1;
}

.album-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

/* ==========================================================================
   Album Detail Page Hero
   ========================================================================== */
.album-hero-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}

.album-hero-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.album-hero-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.album-hero-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.badge-pill {
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--color-surface-hover);
  color: var(--color-text-muted);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.year-pill {
  background: rgba(217, 119, 6, 0.1);
  color: var(--color-accent);
}

.artist-pill {
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary-light);
}

.album-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 6px;
}

.album-hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-subtle);
  margin-bottom: 14px;
}

.album-hero-description {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 720px;
}

.album-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Lyrics Cards & English Translation UI
   ========================================================================== */
.lyrics-container {
  margin-top: 36px;
}

.lyrics-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.lyrics-search-box {
  position: relative;
  min-width: 320px;
}

.lyrics-search-input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  font-size: 0.95rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  transition: all 0.2s ease;
}

.lyrics-search-input:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-subtle);
  pointer-events: none;
}

.lyrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.lyric-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s ease;
}

.lyric-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.3);
}

@keyframes trackPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6); border-color: var(--color-primary-light); }
  50% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.15); border-color: var(--color-accent); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.lyric-card.highlight-track {
  animation: trackPulse 2.2s ease-in-out;
  border-color: var(--color-primary-light) !important;
}

.lyric-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.lyric-title-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.play-track-trigger {
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: opacity 0.2s ease;
}

.play-track-trigger:hover .lyric-title {
  color: var(--color-primary-light);
}

.play-track-trigger:hover .track-badge {
  background: var(--color-primary-light);
  color: #FFFFFF;
  transform: scale(1.08);
}

.track-badge {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.lyric-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-main);
  cursor: pointer;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.lyric-title:hover {
  color: var(--color-primary-light);
}

.scripture-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 4px;
  background: rgba(245, 158, 11, 0.08);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.2);
  text-decoration: none;
  transition: all 0.2s ease;
}

.scripture-link-badge:hover {
  background: var(--color-accent);
  color: #FFFFFF;
  border-color: var(--color-accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.lyric-actions {
  display: flex;
  gap: 6px;
}

.action-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  background: var(--color-surface-hover);
  transition: all 0.2s ease;
}

.action-btn:hover {
  background: var(--color-primary-light);
  color: #FFFFFF;
  transform: scale(1.08);
}

/* Language Switch Pills */
.translation-toggle-bar {
  margin-bottom: 14px;
}

.lang-switch-pills {
  display: inline-flex;
  background: var(--color-surface-hover);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.lang-pill {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: all 0.2s ease;
}

.lang-pill:hover {
  color: var(--color-text-main);
}

.lang-pill.active {
  background: #FFFFFF;
  color: var(--color-primary-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* View Panes */
.lyric-card-body {
  position: relative;
  flex: 1;
}

.lyric-view-pane {
  display: none !important;
}

.lyric-view-pane.active {
  display: block !important;
}

.lyric-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-main);
}

.translation-header-note {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.translation-text {
  color: var(--color-text-muted);
  font-style: italic;
}

/* Dual Side-by-Side View (ONLY when active) */
.lyric-view-pane.dual-view.active {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dual-col {
  display: flex;
  flex-direction: column;
}

.dual-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-subtle);
  margin-bottom: 6px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2px;
}

/* ==========================================================================
   Video Gallery
   ========================================================================== */
.video-categories-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.category-header {
  margin-bottom: 20px;
}

.video-protocol-banner {
  background: #FEF3C7;
  border: 1px solid #F59E0B;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
  color: #92400E;
  font-size: 0.9rem;
  line-height: 1.5;
}

.protocol-banner-icon {
  color: #D97706;
  flex-shrink: 0;
  margin-top: 2px;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
}

.category-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.video-embed-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #0F172A;
  overflow: hidden;
}

.video-thumbnail-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.video-card:hover .video-thumbnail-img {
  transform: scale(1.04);
}

.video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: rgba(220, 38, 38, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  z-index: 2;
}

.video-play-badge:hover {
  background: #DC2626;
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

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

.video-media-trigger {
  cursor: pointer;
}

.video-thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
  transition: background 0.25s ease;
  z-index: 1;
}

.video-card:hover .video-thumbnail-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.video-title-trigger {
  cursor: pointer;
  transition: color 0.2s ease;
}

.video-title-trigger:hover {
  color: var(--color-primary-light);
}

.video-card-footer {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  justify-content: space-between;
}

.video-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.3;
}

.video-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.youtube-direct-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #DC2626;
  border-color: rgba(220, 38, 38, 0.3);
}

.youtube-direct-btn:hover {
  background: #DC2626;
  color: #FFFFFF;
  border-color: #DC2626;
}

/* ==========================================================================
   Theater Mode Modal View
   ========================================================================== */
.video-theater-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.video-theater-modal.open {
  opacity: 1;
}

.theater-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 30, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.theater-dialog {
  position: relative;
  width: 100%;
  max-width: 1000px;
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  z-index: 2;
  display: flex;
  flex-direction: column;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-theater-modal.open .theater-dialog {
  transform: scale(1) translateY(0);
}

.theater-header {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.theater-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.theater-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-light);
}

.theater-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.theater-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theater-yt-link {
  color: #E2E8F0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.theater-yt-link:hover {
  background: #DC2626;
  color: #FFFFFF;
  border-color: #DC2626;
}

.theater-close-btn {
  font-size: 1.8rem;
  color: var(--color-player-muted);
  line-height: 1;
  transition: color 0.15s ease, transform 0.15s ease;
}

.theater-close-btn:hover {
  color: #FFFFFF;
  transform: scale(1.15);
}

.theater-screen-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Theater Screen */
  background: #000000;
}

.theater-screen-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .video-theater-modal {
    padding: 8px;
  }
  .theater-header {
    padding: 12px 16px;
  }
  .theater-title {
    font-size: 0.95rem;
  }
  .theater-yt-link {
    display: none;
  }
}

/* ==========================================================================
   About Us & Testimonials
   ========================================================================== */
.bilingual-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.story-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.lang-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.story-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.story-body p {
  font-size: 1rem;
  color: var(--color-text-main);
  line-height: 1.7;
  margin-bottom: 16px;
}

.story-body p:last-child {
  margin-bottom: 0;
}

/* Family Banner Card */
.family-banner-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}

.family-photo-wrapper {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  background: #000;
}

.family-photo {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: contain;
  margin: 0 auto;
}

.family-photo-caption {
  padding: 16px 24px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 500;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(217, 119, 6, 0.3);
  margin-bottom: -10px;
}

.testimonial-quote {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text-main);
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary-dark);
}

.author-location {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
}

/* ==========================================================================
   Contact Form Styles
   ========================================================================== */
.contact-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.form-label .required {
  color: #DC2626;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-main);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

.form-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.form-feedback-banner {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
}

.feedback-success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.feedback-warning {
  background: #FFFBEB;
  color: #92400E;
  border: 1px solid #FDE68A;
}

.feedback-danger {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.feedback-info {
  background: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
}

/* ==========================================================================
   Share Modal Dialog
   ========================================================================== */
.custom-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.custom-modal-backdrop.visible {
  display: flex;
}

.custom-modal-dialog {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.custom-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close-btn {
  font-size: 1.5rem;
  color: var(--color-text-subtle);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
}

.modal-close-btn:hover {
  background: var(--color-surface-hover);
  color: var(--color-text-main);
}

.custom-modal-body {
  padding: 24px;
}

.share-song-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
}

.social-share-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: #FFFFFF !important;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.twitter-btn { background: #000000; }
.facebook-btn { background: #1877F2; }
.whatsapp-btn { background: #25D366; }
.email-btn { background: #475569; }

.copy-link-bar {
  display: flex;
  gap: 8px;
}

.copy-input {
  font-size: 0.85rem;
  background: var(--color-surface-hover);
}

.copy-feedback-msg {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #059669;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 860px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 20px;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-cd-stack {
    margin: 12px auto 0;
  }
  .album-hero-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .album-hero-img {
    max-width: 220px;
    margin: 0 auto;
  }
  .album-hero-meta {
    justify-content: center;
  }
  .album-hero-actions {
    justify-content: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .dual-view {
    grid-template-columns: 1fr;
  }
}
