:root {
  --bg-color: #000000;
  --text-color: #FFFFFF;
  --accent-dark: #8B0000;
  --accent-light: #FF0000;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 8rem);
  font-family: var(--font-serif);
  text-transform: none;
  letter-spacing: normal;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 2rem;
}

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

.glow-text {
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

/* Layout Utilities */
.section {
  min-height: 100vh;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes breathe {

  0%,
  100% {
    box-shadow: inset 0 0 50px rgba(139, 0, 0, 0.2);
  }

  50% {
    box-shadow: inset 0 0 120px rgba(139, 0, 0, 0.5);
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  animation: breathe 8s infinite ease-in-out;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: -1;
  transform: scale(1.05);
  /* allow parallax panning */
  transition: transform 0.5s ease-out;
}

/* Gradient overlay to blend bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, var(--bg-color), transparent);
  pointer-events: none;
}

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

.hero-subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

/* CTA */
.btn {
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-color);
  background: transparent;
  border: 1px solid var(--accent-dark);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
  text-decoration: none;
  margin-top: 3rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-dark);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.btn:hover {
  border-color: var(--accent-light);
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--accent-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

/* Studio Experience Section */
.studio-exp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.studio-images {
  position: relative;
  height: 80vh;
}

.studio-img {
  position: absolute;
  object-fit: cover;
  transition: transform 1s ease-out;
}

.studio-img-1 {
  width: 70%;
  height: 60%;
  top: 0;
  left: 0;
  z-index: 2;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.8);
}

.studio-img-2 {
  width: 60%;
  height: 50%;
  bottom: 5%;
  right: 0;
  z-index: 1;
  opacity: 0.6;
}

.studio-text {
  padding-left: 2rem;
}

.studio-text p {
  color: #a0a0a0;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .studio-exp {
    grid-template-columns: 1fr;
  }

  .studio-images {
    height: 50vh;
    margin-bottom: 2rem;
  }
}

/* Premium Portfolio Interactive Wrapper */
.portfolio-interactive-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .portfolio-interactive-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Premium Portfolio Showcase (Main Video) */
.portfolio-showcase {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.4s ease, border-color 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-showcase:hover {
  border-color: rgba(139, 0, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(139, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  border-radius: 4px;
  overflow: hidden;
  background-color: #050505;
}

.iframe-container iframe,
#yt-player,
#yt-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Custom Playlist Container */
.custom-playlist-container {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  height: 100%;
  max-height: 500px;
  overflow-y: auto;
  overscroll-behavior-y: auto;
  transition: border-color 0.4s ease;
}

.custom-playlist-container:hover {
  border-color: rgba(139, 0, 0, 0.4);
}

/* Custom Scrollbar for Playlist */
.custom-playlist-container::-webkit-scrollbar {
  width: 6px;
}

.custom-playlist-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.custom-playlist-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.custom-playlist-container::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 0, 0, 0.5);
}

#custom-playlist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.playlist-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.playlist-item.active {
  background: rgba(139, 0, 0, 0.15);
  border-color: rgba(139, 0, 0, 0.4);
}

.playlist-item.active .playlist-title {
  color: var(--accent-light);
  font-weight: 700;
}

.playlist-thumb-wrapper {
  position: relative;
  width: 80px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}

.playlist-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.playlist-item:hover .playlist-thumb,
.playlist-item.active .playlist-thumb {
  opacity: 1;
}

.playlist-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  color: white;
  opacity: 0;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 4px;
}

.playlist-item:hover .playlist-play-icon {
  opacity: 1;
}

.playlist-item.active .playlist-play-icon {
  opacity: 1;
  color: var(--accent-light);
  background: rgba(0, 0, 0, 0.8);
}

.playlist-title {
  font-size: 0.9rem;
  color: #d0d0d0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.portfolio-tags span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #b0b0b0;
  transition: all 0.3s ease;
}

.portfolio-tags span:hover {
  background: rgba(139, 0, 0, 0.2);
  border-color: rgba(139, 0, 0, 0.5);
  color: white;
}

.btn-outline {
  margin-top: 0;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
}

/* Contact Section */
.footer {
  border-top: 1px solid var(--accent-dark);
  padding: 6rem 2rem 3rem;
  background: radial-gradient(circle at top center, rgba(139, 0, 0, 0.1) 0%, transparent 60%);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-details {
  flex: 1;
  min-width: 300px;
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-block svg {
  margin-top: 0.25rem;
  width: 24px;
  height: 24px;
}

.contact-info-block h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  letter-spacing: 1px;
}

.contact-info-block p {
  color: #a0a0a0;
  font-size: 1rem;
  line-height: 1.6;
}

.phone-link {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s;
}

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

.map-container {
  flex: 1;
  min-width: 300px;
  min-height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  /* Add dark aesthetic filter to Google Map */
  filter: grayscale(100%) invert(90%) contrast(120%);
  transition: filter 0.4s ease, border-color 0.4s ease;
}

.map-container:hover {
  border-color: var(--accent-dark);
  filter: grayscale(80%) invert(90%) contrast(150%) hue-rotate(180deg);
}

.socials {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.social-link {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, text-shadow 0.3s, transform 0.3s;
}

.social-link:hover {
  color: var(--accent-light);
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
  transform: translateY(-3px);
}

.copyright {
  color: #444;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
}



/* Animation for 'Dark Side' */
.dark-side-text {
  animation: whiteToRed 1.5s ease forwards 0.5s;
  color: #FFFFFF;
}

.music-studio-text {
  color: #FFFFFF;
}

@keyframes whiteToRed {
  0% {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  }

  100% {
    color: var(--accent-light);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid var(--accent-dark);
  padding: 3rem;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  z-index: 10;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.close-btn:hover {
  opacity: 1;
  color: var(--accent-light);
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.whatsapp-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  background: rgba(37, 211, 102, 0.1);
  border-color: #25D366;
  color: #25D366;
}

.whatsapp-btn:hover {
  background: #25D366;
  color: var(--bg-color);
}

.whatsapp-btn::before {
  background: #25D366;
}

.modal-divider {
  margin: 2rem 0;
  position: relative;
}

.modal-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.modal-divider span {
  background: rgba(15, 15, 15, 1);
  padding: 0 1rem;
  position: relative;
  color: #666;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-input {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  color: var(--text-color);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 10px rgba(139, 0, 0, 0.2);
}

.form-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .modal-content {
    padding: 2rem;
  }
}

/* ===========================
   STICKY NAV BAR
=========================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-logo-dark {
  color: var(--accent-light);
}

.nav-logo-side {
  color: var(--text-color);
  margin-left: 4px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  margin-top: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-color);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.97);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .btn-sm {
    display: none;
  }
}

.nav-social-icon i {
  width: 20px;
  height: 20px;
  color: var(--text-color);
  opacity: 0.8;
  transition: opacity 0.3s, color 0.3s;
  display: flex;
}

.nav-social-icon:hover i {
  color: var(--accent-light) !important;
  opacity: 1 !important;
}

/* Offset sections for fixed nav */
.hero,
.section,
footer.section {
  scroll-margin-top: 70px;
}

/* ===========================
   HERO ENHANCEMENTS
=========================== */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-cta-group .btn {
  margin-top: 0;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  margin-top: 0;
}

.btn-outline:hover {
  border-color: var(--accent-light);
}

/* Third hero button — ghost variant: dimmer border, no fill slide */
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 2px;
}

.btn-ghost::before {
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--text-color);
}

@media (max-width: 600px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* Services Strip */
.services-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.services-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.strip-item:hover {
  color: var(--text-color);
}

.strip-item i {
  width: 16px;
  height: 16px;
  color: var(--accent-light);
  opacity: 0.7;
}

.strip-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 20px;
    justify-content: flex-start;
  }

  .hero-content {
    padding-bottom: 1rem;
  }

  .services-strip {
    position: relative;
    bottom: auto;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    margin-top: 2rem;
    backdrop-filter: none;
    border-top: none;
  }

  .strip-divider {
    display: none;
  }

  .services-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    width: 90%;
    margin: 0 auto;
  }

  .strip-item {
    padding: 0.5rem;
    font-size: 0.65rem;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }
}

/* ===========================
   SHARED UTILITIES
=========================== */
.eyebrow {
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 4px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
}

.section-desc {
  color: #a0a0a0;
  max-width: 620px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===========================
   SERVICE CARD BODY TEXT
=========================== */
.service-card p {
  margin-top: 1rem;
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===========================
   CREDITS STRIP
=========================== */
.credits-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.credits-scroll {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.credits-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: credits-scroll 30s linear infinite;
  width: max-content;
}

.credits-track:hover {
  animation-play-state: paused;
}

@keyframes credits-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.credit-name {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.credit-name:hover {
  color: var(--text-color);
}

.credit-sep {
  color: var(--accent-light);
  font-size: 1.2rem;
  opacity: 0.5;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.testimonial-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(139, 0, 0, 0.4);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: rgba(139, 0, 0, 0.15);
  font-family: var(--font-serif);
  line-height: 1;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: #c0c0c0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(139, 0, 0, 0.3);
  border: 1px solid rgba(139, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-light);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.about-images {
  position: relative;
  height: 75vh;
  min-height: 400px;
}

.about-img {
  position: absolute;
  object-fit: cover;
  transition: transform 1s ease-out;
}

.about-img-1 {
  width: 72%;
  height: 60%;
  top: 0;
  left: 0;
  z-index: 2;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.8);
}

.about-img-2 {
  width: 62%;
  height: 52%;
  bottom: 5%;
  right: 0;
  z-index: 1;
  opacity: 0.6;
}

.about-text {
  padding-top: 1rem;
}

.about-manifesto {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--accent-light);
  border-left: 3px solid var(--accent-dark);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.about-text p {
  color: #a0a0a0;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.trust-pillars {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-pillar {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  background: rgba(15, 15, 15, 0.5);
  transition: border-color 0.3s;
}

.trust-pillar:hover {
  border-color: rgba(139, 0, 0, 0.3);
}

.trust-icon {
  color: var(--accent-light);
  opacity: 0.8;
  flex-shrink: 0;
  margin-top: 3px;
}

.trust-pillar h4 {
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.trust-pillar p {
  font-size: 0.88rem;
  color: #808080;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
  }

  .about-text {
    order: 1;
    position: relative;
    z-index: 2;
  }

  .about-images {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
  }

  #about.section {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .gear-section {
    margin-top: 1.5rem !important;
    padding-top: 1.5rem !important;
  }
}

/* Gear Grid */
.gear-section {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.studio-tour-wrapper {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, border-color 0.4s ease;
  width: 100%;
  max-width: 1000px;
  /* Centering */
  margin-left: auto;
  margin-right: auto;
}

.studio-tour-wrapper:hover {
  border-color: rgba(139, 0, 0, 0.3);
  transform: translateY(-5px);
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gear-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  background: rgba(15, 15, 15, 0.5);
  transition: all 0.3s ease;
  cursor: default;
}

.gear-item:hover {
  border-color: rgba(139, 0, 0, 0.4);
  background: rgba(139, 0, 0, 0.05);
  transform: translateX(4px);
}

.gear-icon {
  color: var(--accent-light);
  opacity: 0.7;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.gear-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
}

/* ===========================
   CONTACT IMPROVEMENTS
=========================== */
.contact-form-wrapper {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-form-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form-inline .form-textarea,
.contact-form-inline .form-submit-btn {
  grid-column: 1 / -1;
}

.form-select {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.3s;
  appearance: none;
  cursor: pointer;
}

.form-select option {
  background: #111;
  color: white;
}

.form-select:focus {
  outline: none;
  border-color: var(--accent-dark);
}

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

.inline-link {
  color: var(--accent-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 0, 0, 0.3);
  transition: border-color 0.3s;
}

.inline-link:hover {
  border-color: var(--accent-light);
}

@media (max-width: 700px) {
  .contact-form-inline {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   FAQ ACCORDION
=========================== */
#faq {
  min-height: auto;
  padding-bottom: 8rem;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.6);
  transition: border-color 0.3s;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(139, 0, 0, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  color: var(--text-color);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent-light);
}

.faq-question[aria-expanded="true"] {
  color: var(--accent-light);
}

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent-light);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 1.8rem;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 1.8rem 1.5rem;
}

.faq-answer p {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===========================
   SPIN ANIMATION (loader)
=========================== */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spin {
  animation: spin 1s linear infinite;
}

/* ===========================
   RELEASES & COLLABORATIONS
=========================== */
.releases-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  align-items: flex-start;
}

.releases-player-wrapper {
  width: 100%;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.releases-player-wrapper:hover {
  border-color: rgba(139, 0, 0, 0.3);
  transform: translateY(-5px);
}

.releases-list-container {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  height: 520px;
  /* Adjusted to balance with the 16:9 player container */
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease;
}

.releases-list-container:hover {
  border-color: rgba(139, 0, 0, 0.3);
}

.releases-list {
  overflow-y: auto;
  overscroll-behavior-y: auto;
  padding: 1rem;
  flex-grow: 1;
}

/* Custom Scrollbar for Releases List */
.releases-list::-webkit-scrollbar {
  width: 5px;
}

.releases-list::-webkit-scrollbar-track {
  background: transparent;
}

.releases-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.releases-list::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light);
}

.release-card {
  display: flex;
  gap: 1.2rem;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 0.8rem;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.release-card:last-child {
  margin-bottom: 0;
}

.release-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.release-card.active {
  background: rgba(212, 19, 19, 0.1);
  /* --accent-dark with alpha */
  border-color: var(--accent-light);
  box-shadow: 0 0 15px rgba(212, 19, 19, 0.2);
}

.release-thumb {
  position: relative;
  width: 100px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.release-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.release-card:hover .release-play-icon,
.release-card.active .release-play-icon {
  opacity: 1;
}

.release-info {
  flex-grow: 1;
}

.release-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--text-color);
}

.release-artist {
  font-size: 0.85rem;
  color: #a0a0a0;
  margin-bottom: 0.3rem;
}

.release-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-light);
  font-weight: 700;
}

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

  .releases-list-container {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .release-thumb {
    width: 80px;
    height: 50px;
  }

  .release-title {
    font-size: 0.9rem;
  }
}

/* ===========================
   USER MOBILE REFINEMENTS
=========================== */
@media (max-width: 768px) {

  /* 1. Make studio background more visible */
  .hero-bg {
    opacity: 0.65;
  }

  /* 2. Reduce gap below 'The Vision' */
  .about-layout {
    margin-top: 1.5rem !important;
  }

  /* 3. Make Gear & Workflow compact (2 columns) */
  .gear-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .gear-item {
    flex-direction: column;
    padding: 1rem 0.5rem;
    text-align: center;
    gap: 0.5rem;
    justify-content: center;
  }

  .gear-label {
    font-size: 0.70rem;
    line-height: 1.2;
  }

  /* 4. Center WhatsApp button text */
  .whatsapp-btn {
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }
}