/* #region RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* #endregion RESET & BASE */
/* #region VARIABLES */
:root {
  /* VIBRANT HARMONIOUS FOLKLORE COLORS */
  --primary-color: #d97706; /* Golden Amber / Yellow */
  --secondary-color: #b91c1c; /* Terracotta Red */
  --accent-color: #047857; /* Deep Folklore Green */
  --dark-bg: #f8f5f0; /* Light Warm Beige */
  --light-bg: #fdfbf7; /* Warm Ivory */
  --text-dark: #1c1917; /* Very Dark Stone */
  --text-gray: #57534e; /* Muted Stone */
  --text-light: #e7e5e4;
  --card-bg: rgba(255, 255, 255, 0.85); /* Translucent soft card */
  --card-bg-light: rgba(255, 255, 255, 0.95);
  --text-dim: #78716c;
  --text-vibrant: #b91c1c;

  /* Extremely soft shadows */
  --neon-glow-teal: 0 4px 12px rgba(217, 119, 6, 0.15);
  --neon-glow-intense: 0 8px 24px rgba(217, 119, 6, 0.2);
  --neon-text-intense: none;
  --neon-glow-red: 0 8px 25px rgba(185, 28, 28, 0.15);
  --neon-text-teal: none;

  --gradient-vibrant: linear-gradient(135deg, #d97706 0%, #b91c1c 100%);
  --gradient-neon: linear-gradient(90deg, #d97706, #b91c1c, #047857, #d97706);
  --gradient-accent: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);

  --shadow-neon: 0 6px 20px rgba(28, 25, 23, 0.06);
  --glass-border: 1px solid rgba(217, 119, 6, 0.2);
  --neon-border: 1px solid rgba(185, 28, 28, 0.2);
}
/* #endregion VARIABLES */
/* #region BASE */
body {
  font-family: "Cairo", "Tajawal", "Inter", sans-serif;
  background-color: var(--light-bg);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 100 100"><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="none" stroke="%23e6d6c3" stroke-width="1" opacity="0.5"/></svg>');
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -0.015em;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--primary-color);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}
/* #endregion BASE */
/* #region NAVIGATION */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 1000;
  border: var(--glass-border);
  border-radius: 8px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0;
}

.navbar.scrolled {
  top: 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 1);
  padding: 0.3rem 0;
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  border-color: rgba(197, 160, 89, 0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 60px;
}
.nav-logo a {
  display: flex;
  align-items: center;
  width: 45px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}
.nav-logo:hover a {
  cursor: pointer;
  transform: scale(1.15) rotate(5deg);
  /* filter removed for soft theme */
}
.nav-logo img {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  transition: border-color 0.4s;
}
.nav-logo:hover img {
  border-color: var(--secondary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-shrink: 0;
}

.nav-social a {
  color: var(--text-gray);
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-social a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
  /* filter removed for soft theme */
}

.nav-social-mobile {
  display: none;
}

.nav-social-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  flex: 0 0 40px;
}

.nav-menu a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-size: 0.95rem;
  white-space: nowrap;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-menu a:hover {
  color: var(--text-dark);
  text-shadow: none;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--secondary-color);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex: 0 0 30px;
  align-items: flex-end;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  border-radius: 5px;
  background: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}
/* #endregion */
/* #region HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Align container to the right */
  position: relative;
  overflow: hidden;
  background-image: url(../assets/img/Fatma\ Eid\ Cover.png);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  display: none;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent; /* removed harsh radial gradients */
}

.hero-bg-icon {
  position: absolute;
  font-size: clamp(15rem, 40vw, 30rem);
  opacity: 0.03;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 750px;
  text-align: center; /* Keep internal content centered */
  padding: 3rem;
  margin: 0 5% 0 0; /* Add margin-right */
  will-change: transform, opacity;
  backdrop-filter: blur(15px);
  border-radius: 20px;
}

.hero-content > * {
  opacity: 0;
  transform: translateX(50px);
}

.hero-content.animate > * {
  animation: revealRight 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.hero-content.animate h1 {
  animation-delay: 0.2s;
}
.hero-content.animate p {
  animation-delay: 0.4s;
}
.hero-content.animate .hero-stats {
  animation-delay: 0.6s;
}
.hero-content.animate .btn-primary {
  animation-delay: 0.8s;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-title {
  font-family: "Aref Ruqaa", "Cairo", serif;
  font-size: clamp(2.5rem, 9vw, 6rem);
  font-weight: 1000;
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -1px;
  text-shadow: none;
  white-space: nowrap;
}

.hero-content.animate .hero-title {
  animation:
    revealUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
    neonBreath 4s infinite ease-in-out 1.2s;
}

.hero-description {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--text-gray);
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto; /* Centered in container */
  line-height: 1.6;
  opacity: 0.9;
  font-weight: 500;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center; /* Centered in container */
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: var(--gradient-vibrant);
  color: #ffffff;
  padding: 1.25rem 3.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  color: #fff;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
}

/* #endregion */
/* #region SECTIONS - General */
section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

/* Base hidden states with varied animations */
section .section-title,
section .section-divider {
  opacity: 0;
  transform: translateY(-40px); /* Slide down */
  will-change: transform, opacity;
  transition:
    transform 0.8s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.6s ease-out;
}

section .lead-text,
section .about-content {
  opacity: 0;
  transform: translateX(-40px); /* Slide right */
  will-change: transform, opacity;
  transition:
    transform 0.8s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.6s ease-out;
}

section .music-container,
section .events-content,
footer .footer-content {
  opacity: 0;
  transform: translateY(40px); /* Slide up */
  will-change: transform, opacity;
  transition:
    transform 0.8s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.6s ease-out;
}

section .videos-grid,
section .collab-grid,
section .testimonials-grid,
section .contact-content,
section .social-grid,
section .platforms-grid {
  opacity: 0;
  transform: translateX(40px); /* Slide left */
  will-change: transform, opacity;
  transition:
    transform 0.8s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.6s ease-out;
}

/* Individual cards initial hidden state for diverse animations */
.info-card:nth-child(odd),
.album-card:nth-child(odd),
.video-card:nth-child(odd),
.testimonial-card:nth-child(odd) {
  opacity: 0;
  transform: translateX(-30px) translateY(20px);
  will-change: transform, opacity;
  transition:
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.5s ease-out;
}

.info-card:nth-child(even),
.album-card:nth-child(even),
.video-card:nth-child(even),
.testimonial-card:nth-child(even) {
  opacity: 0;
  transform: translateX(30px) translateY(20px);
  will-change: transform, opacity;
  transition:
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.5s ease-out;
}

/* Reveal sequence when section or footer is visible */
section.visible .section-title,
section.visible .section-divider,
section.visible .lead-text,
section.visible .about-content,
section.visible .music-container,
section.visible .videos-grid,
section.visible .collab-grid,
section.visible .events-content,
section.visible .testimonials-grid,
section.visible .contact-content,
section.visible .social-grid,
section.visible .platforms-grid,
footer.visible .footer-brand,
footer.visible .footer-content {
  opacity: 1;
  transform: translate(0);
}

section.visible .section-title,
footer.visible .footer-brand {
  transition-delay: 0.1s;
}
section.visible .lead-text {
  transition-delay: 0.3s;
}
section.visible .section-divider {
  transition-delay: 0.2s;
}
section.visible .about-content,
section.visible .music-container,
section.visible .events-content {
  transition-delay: 0.4s;
}
section.visible .videos-grid,
section.visible .testimonials-grid {
  transition-delay: 0.5s;
}

/* Individual card staggers if triggered by animate-in */
.animate-in {
  opacity: 1 !important;
  transform: translate(0) !important;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 90%;
  position: relative;
}

.section-title {
  font-family: "Aref Ruqaa", "Cairo", serif;
  font-size: clamp(2rem, 7vw, 4rem);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 900;
  color: var(--secondary-color);
  letter-spacing: -1px;
  text-transform: uppercase;
}

.section-divider {
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  margin: 0 auto 4rem;
  border-radius: 2px;
}

.section-divider::before {
  display: none;
}

@keyframes lightSweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.lead-text {
  font-size: 1.25rem;
  text-align: center;
  color: var(--text-gray);
  max-width: 750px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  font-weight: 500;
}
/* #endregion */
/* #region ABOUT SECTION */
#about {
  background: var(--light-bg);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.info-card {
  border-top: 3px solid var(--primary-color);
  background: var(--card-bg); /* Use the new global glass bg */
  padding: 3.5rem 2rem;
  border-radius: 4px;
  text-align: center;
  border: var(--glass-border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent; /* removed harsh radial gradients */
  opacity: 0;
  transition: 0.4s;
}

.info-card:hover::before {
  opacity: 1;
}

.info-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.info-card p {
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 400;
}
/* #endregion */
/* #region ALBUMS SECTION */
.albums-section {
  background: var(--dark-bg);
  color: var(--text-dark);
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.album-card {
  background: var(--card-bg);
  padding: 3.5rem 2rem;
  border-radius: 4px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: var(--glass-border);
  backdrop-filter: blur(15px);
  position: relative;
}

.album-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.album-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.album-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  text-shadow: none;
}

.album-card p {
  color: var(--text-gray);
  line-height: 1.6;
  opacity: 0.8;
}
/* #endregion */
/* #region MUSIC SECTION */
#music {
  background: linear-gradient(to bottom, var(--light-bg), var(--dark-bg));
}

.music-container {
  max-width: 1200px;
  margin: 0 auto;
}

.music-player-card {
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  display: flex;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  min-height: auto;
  align-items: stretch;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.music-player-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  opacity: 0.3;
}

.music-player-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.player-image {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}

.player-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 60%,
    rgba(35, 25, 22, 0.8) 100%
  );
}

.player-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.music-player-card:hover .player-image img {
  transform: scale(1.05);
}

.player-interface {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(255, 255, 255, 0.4);
}

.player-header {
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.album-title {
  font-family: "Aref Ruqaa", "Cairo", serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -1px;
}

.btn-listen-full {
  background: transparent;
  border: 1px solid var(--primary-color);
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
}

.btn-listen-full a {
  color: var(--text-dark);
}
.btn-listen-full a {
  text-decoration: none;
  color: var(--text-dark);
}

.btn-listen-full:hover {
  background: var(--primary-color);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
}

.btn-listen-full:hover a {
  color: #000;
}

/* Track List */
.track-list {
  flex: 1;
  padding: 1.5rem 2rem;
  overflow-y: auto;
  max-height: 350px;
}

.track-item {
  display: flex;
  align-items: center;
  padding: 1.25rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(28, 25, 23, 0.6);
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
}

.track-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dark);
  transform: translateX(8px);
}

.track-item.active {
  background: rgba(197, 160, 89, 0.1);
  border-color: rgba(197, 160, 89, 0.3);
  color: var(--text-dark);
  animation: neonPulse 2s infinite ease-in-out;
}

.item-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--primary-color);
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  z-index: 5;
}

@keyframes neonPulse {
  0% {
    box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  }
  50% {
    box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  }
  100% {
    box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  }
}

.play-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  margin-right: 1.2rem;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.track-item:hover .play-icon,
.track-item.active .play-icon {
  background: var(--primary-color);
  color: #000;
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
}

.track-details {
  flex: 1;
}

.track-name {
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.track-duration {
  font-size: 0.85rem;
  font-family: monospace;
  opacity: 0.5;
  margin-left: 1rem;
}

/* Bottom Player Bar */
.active-track-bar {
  background: rgba(253, 251, 247, 0.85);
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
  position: relative;
  backdrop-filter: blur(10px);
}

.player-progress-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.player-progress-bar {
  height: 100%;
  background: var(--gradient-vibrant);
  width: 0%;
  position: relative;
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
}

.player-progress-bar::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
}

.current-track-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.current-track-info .label {
  font-size: 0.7rem;
  color: var(--text-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.2rem;
  opacity: 0.8;
}

.current-track-info .name {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.player-controls {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.ctrl-btn {
  background: none;
  border: none;
  color: rgba(28, 25, 23, 0.4);
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctrl-btn:hover {
  color: var(--text-dark);
  transform: scale(1.1);
}

.ctrl-btn.play-pause {
  background: var(--primary-color);
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  position: relative;
}

.ctrl-btn.play-pause:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  background: #fff;
}

.time-display {
  color: rgba(28, 25, 23, 0.4);
  font-size: 0.85rem;
  font-family: monospace;
  min-width: 100px;
  text-align: right;
  flex: 1;
}

/* Scrollbar for track list */
.track-list::-webkit-scrollbar {
  width: 6px;
}
.track-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
}
.track-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

@media (max-width: 900px) {
  .music-player-card {
    flex-direction: column;
    min-height: auto;
  }

  .player-image {
    height: 350px;
    flex: none;
  }

  .player-image::after {
    background: linear-gradient(
      to bottom,
      transparent 60%,
      rgba(255, 255, 255, 0.95) 100%
    );
  }

  .player-header {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }

  .track-list {
    max-height: 300px;
    padding: 1rem;
  }

  .active-track-bar {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .current-track-info {
    order: 1;
    text-align: center;
    width: 100%;
  }

  .current-track-info .name {
    max-width: 100%;
  }

  .player-controls {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .time-display {
    order: 3;
    text-align: center;
    width: 100%;
  }
}

.track {
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  border: var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.track:hover {
  border-color: var(--text-dark);
  transform: translateX(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.track.active {
  border-color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  background: rgba(105, 122, 101, 0.1);
}

.track-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.track-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.track-info p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 1.3rem;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(201, 150, 61, 0.2);
  border-radius: 10px;
  overflow: hidden;
  display: none;
}

.progress-bar.active {
  display: block;
}

.progress {
  height: 100%;
  background: var(--primary-color);
  width: 0%;
  transition: width 0.3s ease;
}

.streaming-platforms {
  margin-top: 4rem;
  text-align: center;
}

.streaming-platforms h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.platform-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text-gray);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: var(--glass-border);
  backdrop-filter: blur(10px);
}

.platform-btn:hover {
  transform: translateY(-8px);
  border-color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  background: rgba(255, 255, 255, 1);
}

.platform-btn i {
  font-size: 2.5rem;
}

.platform-btn div {
  text-align: left;
}

.platform-btn span {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}

.platform-btn small {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.platform-btn.anghami i {
  color: #a942c4;
}
.platform-btn.spotify i {
  color: #1db954;
}
.platform-btn.youtube i {
  color: #ff0000;
}
/* #endregion */
/* #region VIDEOS SECTION */
.videos-section {
  background: var(--dark-bg);
  position: relative;
}

.videos-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(197, 160, 89, 0.2),
    transparent
  );
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.video-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent; /* removed harsh radial gradients */
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.video-card:hover::before {
  opacity: 1;
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  cursor: pointer;
  overflow: hidden;
  margin: 15px;
  border-radius: 8px;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1) rotate(1deg);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 15, 12, 0.15);
  transition: all 0.4s ease;
}

.play-overlay i {
  font-size: 2.2rem;
  color: var(--text-dark);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-card:hover .play-overlay {
  background: rgba(255, 255, 255, 0.3);
}

.video-card:hover .play-overlay i {
  transform: scale(1.15);
  background: var(--primary-color);
  color: #000;
  border-color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
}

.video-info {
  padding: 0 2rem 2.5rem;
  text-align: center;
}

.video-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.video-card:hover .video-info h3 {
  color: var(--text-dark);
}

.video-info p {
  color: var(--text-gray);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.6;
}
/* #endregion */
/* #region COLLABORATIONS SECTION */
#collaborations {
  background: var(--dark-bg);
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.collab-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.collab-card:hover {
  border-color: var(--text-dark);
  transform: translateY(-5px);
}

.collab-card i {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.collab-card h4 {
  font-size: 1.3rem;
}
/* #endregion */
/* #region EVENTS SECTION */
.events-section {
  background: var(--light-bg);
}

.events-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.events-category {
  background: var(--dark-bg);
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid rgba(197, 160, 89, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-dark);
}

.events-category:hover {
  border-color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
}

.events-category h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.events-category h3 i {
  color: var(--text-dark);
}

.events-category p {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
/* #endregion */
/* #region SOCIAL MEDIA SECTION */
.social-section {
  background: var(--dark-bg);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.social-card {
  background: var(--card-bg); /* Dark glass */
  padding: 3.5rem 2rem;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  color: var(--text-gray);
  border: var(--glass-border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  background: rgba(255, 255, 255, 1);
}

.social-card i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.social-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.followers {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 600;
}

.social-card.facebook:hover i {
  color: #1877f2;
}
.social-card.youtube:hover i {
  color: #ff0000;
}
.social-card.tiktok:hover i {
  color: #000000;
  background: linear-gradient(45deg, #25f4ee, #fe2c55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.social-card.instagram:hover i {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* #endregion */
/* #region TESTIMONIALS SECTION */
#testimonials {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 10rem) 1rem;
  color: var(--text-dark);
  z-index: 1;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent; /* removed harsh radial gradients */
  z-index: -1;
}

#testimonials .section-title {
  font-family: "Aref Ruqaa", "Cairo", serif;
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 0.8rem;
}

#testimonials .section-divider {
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  margin: 0 auto 4rem;
  border-radius: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  border-left: 4px solid var(--secondary-color);
  background: rgba(15, 15, 15, 0.6);
  border-radius: 12px;
  border: var(--glass-border);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
  min-height: 250px;
}

.testimonial-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 160, 89, 0.4);
  background: #fff;
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  z-index: 10;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent; /* removed harsh radial gradients */
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  pointer-events: none;
}

.testimonial-card:hover .card-glow {
  opacity: 1;
}

.testimonial-content {
  position: relative;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.quote-icon {
  font-size: 4rem;
  color: var(--text-dark);
  opacity: 0.15;
  position: absolute;
  top: -15px;
  left: -10px;
  z-index: 0;
  transition: all 0.5s ease;
}

.testimonial-card:hover .quote-icon {
  opacity: 0.3;
  transform: scale(1.1) rotate(-10deg);
  text-shadow: none;
}

.testimonial-content p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  line-height: 1.7;
  font-style: italic;
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(197, 160, 89, 0.2),
    rgba(184, 134, 11, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(197, 160, 89, 0.3);
  color: var(--text-dark);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.testimonial-card:hover .author-avatar {
  border-color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  background: rgba(197, 160, 89, 0.1);
  transform: scale(1.05);
}

.author-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.author-info strong {
  color: var(--text-dark);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}

.testimonial-card:hover .author-info strong {
  color: var(--text-dark);
  text-shadow: none;
}

.stars {
  color: var(--text-dark);
  font-size: 0.85rem;
  display: flex;
  gap: 0.2rem;
}
/* Hide extras gracefully like previously handled */
.testimonial-card:nth-child(n + 9) {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  #testimonials {
    padding: 6rem 1rem;
  }
}

@media (max-width: 768px) {
  #testimonials {
    padding: 5rem 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }
}
/* #endregion */
/* #region CONTACT SECTION */
.contact-section {
  background: var(--dark-bg);
  text-align: center;
}

.btn-booking {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 1rem;
  background: var(--gradient-vibrant);
  color: #000; /* High contrast black on teal */
  padding: 1.5rem 4rem;
  border: none;
  border-radius: 60px;
  font-size: 1.4rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
}

.btn-booking:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  color: #000;
}
/* #endregion */
/* #region FOOTER */
.footer {
  padding: 4rem 1rem 2rem;
  background: var(--light-bg);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 134, 11, 0.5),
    transparent
  );
}

.footer-content {
  display: flex;
  gap: 2rem;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}

.footer-brand {
  max-width: 250px;
}

.footer-logo-img img {
  height: 100px;
  width: auto;
  margin-bottom: 0.5rem;
  /* filter removed for soft theme */
}

.footer-brand p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1rem;
}

.footer-links-group h4,
.footer-social-group h4 {
  color: var(--text-gray);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.footer-links-group h4::after,
.footer-social-group h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-vibrant);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-nav a {
  color: var(--text-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-nav a::before {
  content: "→";
  margin-right: 10px;
  opacity: 0;
  color: var(--text-dark);
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--text-dark);
}

.footer-nav a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary-color);
  color: #000;
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  border-color: var(--text-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.footer-bottom a {
  color: var(--text-dark);
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #9f4bd8;
}
/* #endregion */
/* #region ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: none;
  }
  50% {
    text-shadow: none;
  }
}

@keyframes neonBreath {
  0%,
  100% {
    text-shadow: none;
    filter: brightness(1);
  }
  50% {
    text-shadow: none;
    filter: brightness(1.2);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-15px);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  }
  50% {
    box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  }
}

@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes revealRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rotateIn {
  from {
    transform: rotate(-200deg);
  }
  to {
    transform: rotate(0);
  }
}
/* #endregion */
/* #region RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .navbar {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    background: rgba(255, 255, 255, 1);
    padding: 0.6rem 0;
  }

  .nav-container {
    justify-content: space-between;
    padding: 0 1.2rem;
  }

  .nav-logo {
    position: relative;
    left: 0;
    transform: none;
    width: 60px; /* Adjusted size for mobile */
    z-index: 1001;
    margin-right: auto; /* Push everything else to the right */
  }

  .nav-logo:hover {
    transform: scale(1.1);
  }

  .nav-logo a {
    width: 50px;
  }

  .nav-social {
    display: none !important;
  }

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(253, 251, 247, 0.98);
    width: 250px; /* Balanced width */
    padding: 4rem 1.5rem 2rem;
    gap: 0.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(197, 160, 89, 0.15);
    backdrop-filter: blur(25px);
    margin: 0;
    text-align: right;
    left: auto;
    transform: none;
    z-index: 1000;
    visibility: hidden;
    height: 100vh;
    border-radius: 0;
    overflow-y: hidden;
  }

  .nav-social-mobile {
    display: block;
    margin-top: auto; /* Push to bottom */
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }

  .social-icons-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 1.2rem;
  }

  .social-icons-wrapper i {
    font-size: 1.3rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
  }

  .social-icons-wrapper a:hover i {
    transform: translateY(-3px);
    /* filter removed for soft theme */
  }

  .nav-menu.active {
    right: 0; /* Align to edge */
    visibility: visible;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 0.8rem 0;
    font-size: 1.2rem; /* Larger font for mobile */
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  .hero-content {
    padding: 2.5rem 1.5rem;
    margin: 4rem auto 0;
    max-width: 90%;
    text-align: center;
    backdrop-filter: none;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-description {
    margin: 0 auto 2.5rem;
  }

  .hero {
    background-size: cover;
    background-position: center left 40%;
    justify-content: center;
    padding-right: 0;
  }
  .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
  }

  section {
    padding: 4rem 1.5rem;
  }
  .testimonial-card {
    max-width: 90%;
  }

  .info-grid,
  .albums-grid,
  .platforms-grid,
  .videos-grid,
  .collab-grid,
  .social-grid,
  .testimonials-grid,
  .music-content-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-brand {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-links-group h4::after,
  .footer-social-group h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-nav {
    gap: 0.5rem;
    align-items: center;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .hero-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .hero {
    background-size: cover;
    background-position: center left 30%;
    justify-content: center;
    padding: 2rem 1rem;
  }
  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
  }
  .btn-primary,
  .btn-booking {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    width: max-content;
    margin: 0 auto;
    justify-content: center;
  }

  .section-title {
    font-family: "Aref Ruqaa", "Cairo", serif;
    font-size: 1.8rem;
  }

  .nav-logo {
    width: 100px;
  }
  .nav-logo img {
    border-radius: 50%;
  }

  /* Fix Testimonials on Mobile */
  .testimonials-grid {
    gap: 3rem;
    padding: 2rem 0;
  }

  .testimonial-card {
    max-width: 100%;
    padding: 2rem;
    margin: 0 !important; /* Override staggered margins */
    align-self: center !important; /* Center all cards */
    transform: scale(0.8) translateY(50px) !important; /* Simple fade up */
  }

  .testimonial-card.animate-in {
    transform: scale(1) translateY(0) !important;
  }

  .testimonial-card:hover {
    transform: scale(1.02) !important;
  }

  /* Footer Refinements for Mobile */
  .footer {
    padding: 4rem 1rem 2rem;
    background: var(--light-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
  }

  .footer-content {
    gap: 2.5rem;
    padding-bottom: 2rem;
  }

  .footer-brand h3 {
    font-size: 1.8rem;
  }

  .footer-links-group h4,
  .footer-social-group h4 {
    margin-bottom: 1.5rem;
  }
}

/* Smartwatch & Small Phones */
@media (max-width: 320px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .nav-logo {
    width: 50px;
  }
  .nav-social {
    gap: 0.5rem;
    margin-right: 0.5rem;
  }
  .nav-social a {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
  }

  .section-title {
    font-family: "Aref Ruqaa", "Cairo", serif;
    font-size: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .footer-links-group a,
  .social-icon {
    font-size: 1rem;
  }
}

/* Custom Responsive additions for tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  .hero {
    background-position: 40% center;
  }
  .info-grid,
  .albums-grid,
  .videos-grid,
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Retain vertical flow for testimonials on Tablet but adjust spacing */
  .testimonials-grid {
    gap: 8rem;
    padding: 3rem 0;
  }

  .testimonial-card {
    max-width: 40%;
  }
}

/* Large Screens */
@media (min-width: 1440px) {
  .container {
    max-width: 1600px;
  }

  .hero-title {
    font-size: 7rem;
  }

  .testimonials-grid {
    gap: 5rem;
    width: 100%;
    padding: 4rem;
  }

  .testimonial-card {
    width: 100%;
    padding: 3rem;
  }

  /* Footer Optimizations for Large Screens */
  .footer-content {
    gap: 8rem; /* More breathing room */
    padding-bottom: 6rem;
  }

  .footer-brand h3 {
    font-size: 2.5rem;
  }

  .footer-links-group h4,
  .footer-social-group h4 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .footer-nav {
    gap: 1.5rem;
  }

  .footer-nav a {
    font-size: 1.1rem;
  }

  .social-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
  }
}

/* ====================================
   VIDEO MODAL POPUP
==================================== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  display: flex;
  opacity: 1;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 12, 0.1);
  backdrop-filter: blur(5px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background: var(--dark-bg);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(40, 40, 40, 0.05);
  animation: modalSlideIn 0.4s ease;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: var(--primary-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--dark-bg);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.video-modal-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--secondary-color);
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-container iframe {
  border: none;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
  }

  .video-modal-close {
    top: -45px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}
/* #endregion */
/* #region Developer Credit */
.developer-credit {
  width: 100%;
  text-align: center;
  align-self: center;
  font-size: 12px;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.developer-credit a {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  font-family: monospace;
}

.developer-credit a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #4361ee;
  transition: width 0.3s ease;
}

.developer-credit a:hover {
  color: #4361ee;
}
.developer-credit a:hover::after {
  width: 100%;
}
/* #endregion */

/* ==================================== */
/* FOLK REDESIGN STRUCTURE (Hero & About) */
/* ==================================== */

/* Hero Folk Split Layout */
.folk-hero {
  padding-top: 120px; /* Offset for nav */
  background: var(--light-bg); /* Use base background */
  display: flex;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.folk-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
}

.folk-hero-text {
  flex: 1;
  text-align: left;
  z-index: 10;
}

.folk-title-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.folk-hero-text .hero-title {
  font-size: clamp(4rem, 8vw, 6rem);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-transform: none; /* Let Aref Ruqaa be natural */
  letter-spacing: normal;
}

.folk-divider {
  width: 120px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.folk-desc {
  text-align: left;
  margin-left: 0;
  margin-bottom: 2.5rem;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.folk-stats {
  justify-content: flex-start;
  margin-bottom: 3rem;
  gap: 2.5rem;
}

.folk-stats .stat-item {
  text-align: left;
}

/* Arch Frame (Dome Style) */
.folk-hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 5;
}

.arch-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
  border-radius: 250px 250px 15px 15px; /* Huge dome arch typical of Moorish/Islamic architecture */
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  background: var(--dark-bg);
}

.arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s ease;
}

.arch-frame:hover img {
  transform: scale(1.05);
}

.arch-border {
  position: absolute;
  inset: 15px;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 235px 235px 8px 8px; /* Internal dome border */
  pointer-events: none;
  z-index: 2;
}

/* About Split Grid */
.folk-about-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}

.folk-about-left {
  position: relative;
  padding: 2rem;
  background: var(--dark-bg);
  border-radius: 12px;
  border-right: 5px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.folk-quote-mark {
  font-size: 6rem;
  color: var(--secondary-color);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: 10px;
  line-height: 1;
  font-family: serif;
}

.folk-about-headline {
  font-family: "Aref Ruqaa", serif;
  font-size: 2.2rem;
  color: var(--primary-color);
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.folk-about-right .folk-lead {
  text-align: left;
  margin-left: 0;
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.folk-mini-divider {
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  margin: 1.5rem 0;
  opacity: 0.5;
}

/* Responsive updates for new structures */
@media (max-width: 992px) {
  .folk-hero-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .folk-hero-text,
  .folk-desc,
  .folk-stats .stat-item {
    text-align: center;
  }
  .folk-desc {
    margin: 0 auto 2rem;
  }
  .folk-stats {
    justify-content: center;
  }
  .folk-divider {
    margin: 0 auto;
  }
  .folk-about-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .folk-about-right .folk-lead {
    text-align: center;
  }
  .folk-mini-divider {
    margin: 1.5rem auto;
  }
  .arch-frame {
    max-width: 400px;
  }
}

/* Folk Music Player Redesign */
.folk-music-card {
  display: flex !important;
  flex-direction: row-reverse !important; /* Put vinyl on right, list on left */
  align-items: center;
  gap: 3rem;
  padding: 2rem;
  background: var(--light-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}

.folk-vinyl-wrapper {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent !important; /* overrides previous overlay */
  overflow: visible !important;
}

.folk-vinyl-wrapper::after {
  display: none !important;
}

.folk-vinyl-record {
  position: relative;
  width: 90%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #111;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.2),
    inset 0 0 0 10px #222,
    inset 0 0 0 20px #111;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: spinRecord 20s linear infinite;
  animation-play-state: paused;
}

.playing .folk-vinyl-record {
  animation-play-state: running;
}

@keyframes spinRecord {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.folk-vinyl-record img {
  width: 45% !important;
  height: 45% !important;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  transform: none !important;
}

.vinyl-hole {
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--light-bg);
  border-radius: 50%;
  z-index: 10;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.folk-player-controls {
  flex: 1;
  background: transparent !important;
  padding: 0 !important;
}

.folk-player-header {
  background: transparent !important;
  border-bottom: 2px dashed var(--accent-color) !important;
  padding: 1rem 0 2rem 0 !important;
}

.folk-album-title {
  font-family: "Aref Ruqaa", serif !important;
  font-size: 2.5rem !important;
  color: var(--primary-color) !important;
}

.folk-track-list {
  max-height: 350px;
  overflow-y: auto;
  padding-right: 15px;
  margin: 1.5rem 0;
}

.folk-active-bar {
  background: rgba(255, 255, 255, 0.6) !important;
  border-radius: 12px;
  padding: 1.5rem !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .folk-music-card {
    flex-direction: column-reverse !important;
    gap: 1rem;
    padding: 1.5rem;
  }
}

/* ==================================== */
/* FOLK REDESIGN STRUCTURE (Videos & Testimonials) */
/* ==================================== */

/* Videos Asymmetric Layout */
.folk-video-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  grid-auto-rows: minmax(auto, auto);
}

/* Make the first video huge and spanning 2 columns/2 rows */
.featured-folk-video {
  grid-column: span 2;
  grid-row: span 2;
}
.featured-folk-video .video-thumbnail {
  aspect-ratio: 16/9; /* Keep widescreen but huge */
}
.featured-folk-video .video-info h3 {
  font-size: 2rem;
  font-family: "Aref Ruqaa", serif;
}

@media (max-width: 992px) {
  .folk-video-layout {
    grid-template-columns: 1fr;
  }
  .featured-folk-video {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Testimonials Timeline Layout */
.folk-testimonial-timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Central folk line */
.folk-testimonial-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--glass-border);
  transform: translateX(-50%);
}

.folk-testimonial-timeline .testimonial-card {
  width: calc(50% - 3rem);
  position: relative;
  background: var(--light-bg) !important;
  border-left: none !important;
  border-top: 5px solid var(--primary-color);
}

/* Alternating sides */
.folk-testimonial-timeline .testimonial-card:nth-child(odd) {
  align-self: flex-start;
}

.folk-testimonial-timeline .testimonial-card:nth-child(even) {
  align-self: flex-end;
}

/* Decorative folk dots on timeline */
.folk-testimonial-timeline .testimonial-card::after {
  content: "♦";
  position: absolute;
  top: 20px;
  font-size: 2rem;
  color: var(--primary-color);
  line-height: 0;
}

.folk-testimonial-timeline .testimonial-card:nth-child(odd)::after {
  right: -3rem;
  transform: translateX(50%);
}

.folk-testimonial-timeline .testimonial-card:nth-child(even)::after {
  left: -3rem;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .folk-testimonial-timeline::before {
    left: 1rem;
  }
  .folk-testimonial-timeline .testimonial-card {
    width: calc(100% - 3rem);
    align-self: flex-end !important;
  }
  .folk-testimonial-timeline .testimonial-card::after {
    left: -2rem !important;
    right: auto !important;
  }
}
