/* ============================================================
   SAMPEL — Music Producer Website
   Design System: Dark Blues / Maroon / Amber Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #1A1A1A;
  --maroon: #6B1D1D;
  --maroon-light: #8B2E2E;
  --maroon-dark: #4A1212;
  --amber: #C8A050;
  --amber-light: #D4B76A;
  --amber-dark: #A88030;
  --ivory: #F5F0E8;
  --ivory-muted: #C0B8A8;
  --text-primary: #F5F0E8;
  --text-secondary: #A89F8F;
  --glass-bg: rgba(26, 26, 26, 0.85);
  --glass-border: rgba(200, 160, 80, 0.15);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(107, 29, 29, 0.3);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--amber);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--amber-light);
}

ul {
  list-style: none;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--maroon);
  border-radius: 3px;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 60px;
  font-weight: 300;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--amber));
  margin: 0 auto 24px;
  border-radius: 2px;
}

/* ---------- Fade-in animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 240px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled .navbar-logo img {
  height: 150px;
}

.navbar-home {
  display: flex;
  align-items: center;
}

.navbar-home svg {
  transition: var(--transition);
}

.navbar-home:hover svg {
  color: var(--amber);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.3s ease;
}

.navbar-links a:hover {
  color: var(--text-primary);
}

.navbar-whatsapp {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: #25D366 !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 20px;
  font-size: 0.75rem !important;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--transition);
}

.navbar-whatsapp::after {
  display: none !important;
}

.navbar-whatsapp:hover {
  background: #128C7E !important;
  color: white !important;
  transform: translateY(-2px);
}

.navbar-links a:hover::after {
  width: 100%;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 4px;
}

.lang-toggle button {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle button.active {
  background: var(--maroon);
  color: var(--text-primary);
}

.lang-toggle button:hover:not(.active) {
  color: var(--text-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--ivory);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 1px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1);
  pointer-events: none;
}

.hero-video-desktop {
  display: block;
}

.hero-video-mobile {
  display: none;
}

.hero-sound-btn {
  position: absolute;
  bottom: 90px;
  right: 32px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(200, 160, 80, 0.3);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
  color: var(--ivory);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hero-sound-btn:hover {
  background: rgba(107, 29, 29, 0.6);
  border-color: var(--amber);
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.2) 0%,
      rgba(10, 10, 10, 0.05) 40%,
      rgba(10, 10, 10, 0.5) 80%,
      rgba(10, 10, 10, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber-dark);
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  background: rgba(200, 160, 80, 0.06);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero h1 .accent {
  color: var(--amber);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--ivory-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--ivory);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 50px;
  border: 1px solid rgba(200, 160, 80, 0.2);
  transition: var(--transition);
  cursor: pointer;
}

.hero-cta:hover {
  background: linear-gradient(135deg, var(--maroon-light), var(--maroon));
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: var(--ivory);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--amber), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ============================================================
   ABOUT / GALLERY
   ============================================================ */
.about {
  padding: 120px 0;
  background: var(--bg-primary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text h2 .accent {
  color: var(--amber);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* Service Tiers */
.about-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 24px;
}

.about-service-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  transition: var(--transition);
}

.about-service-item:hover {
  border-color: var(--amber-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.about-service-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.about-service-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-tagline {
  font-size: 1.1rem;
  color: var(--ivory-muted);
  font-style: italic;
  margin-top: 8px;
}

.about-tagline strong {
  color: var(--amber);
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Photo Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(107, 29, 29, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ============================================================
   VIDEOS (Instagram Carousel)
   ============================================================ */
.videos {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

.videos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
  pointer-events: none;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 40px 40px;
  justify-content: center;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* ---- Artist Cards ---- */
.carousel-item {
  scroll-snap-align: center;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.carousel-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.carousel-item.artist-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
}

.artist-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.artist-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.artist-card:hover .artist-img-wrapper img {
  transform: scale(1.08);
}

.artist-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.artist-genre {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
}

.artist-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.artist-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: 24px;
  transition: var(--transition);
  align-self: flex-start;
}

.artist-cta::after {
  display: none !important;
}

.artist-cta:hover {
  background: #128C7E;
  color: white !important;
  transform: translateY(-2px);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--amber);
  transform: scale(1.3);
}

.carousel-dot:hover {
  background: rgba(200, 160, 80, 0.6);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.testimonial-video-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.testimonial-video-card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.testimonial-video-card video {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial-video-info {
  padding: 24px;
}

.testimonial-video-info h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.testimonial-video-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.testimonial-video-info .stars {
  color: var(--amber);
  font-size: 1rem;
  margin-top: 12px;
  letter-spacing: 4px;
}

/* Text testimonials */
.testimonial-text-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
}

.testimonial-text-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--maroon);
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-text-card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.testimonial-text-card p {
  color: var(--ivory-muted);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--amber-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ivory);
}

.testimonial-author-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-author-info span {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* ============================================================
   AGENDA (Google Calendar)
   ============================================================ */
.agenda {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

.agenda::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
  pointer-events: none;
}

.agenda-calendar {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.agenda-calendar iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  filter: invert(0.88) hue-rotate(180deg);
  border-radius: 16px;
}

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.contact {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.contact-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--maroon);
  border-color: var(--maroon-light);
  transform: translateY(-4px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--amber-dark);
  box-shadow: 0 0 20px rgba(200, 160, 80, 0.1);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--ivory);
  border: 1px solid rgba(200, 160, 80, 0.2);
  border-radius: 12px;
  padding: 18px 40px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}

.contact-form button:hover {
  background: linear-gradient(135deg, var(--maroon-light), var(--maroon));
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Captcha */
.captcha-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.captcha-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--amber);
  white-space: nowrap;
  min-width: 120px;
}

.captcha-container input {
  max-width: 140px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 40px 0;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer .heart {
  color: var(--maroon-light);
}

/* ============================================================
   AI CHAT WIDGET
   ============================================================ */
/* Chat FAB Wrapper */
.chat-fab-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-fab-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 8px 18px 8px 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  animation: labelSlideIn 0.6s ease 1s both;
  cursor: pointer;
  transition: var(--transition);
}

.chat-fab-label:hover {
  border-color: var(--amber-dark);
  transform: translateX(-4px);
}

.chat-fab-label-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber-dark);
}

.chat-fab-label span {
  color: var(--ivory);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

@keyframes labelSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.chat-fab-wrapper.chat-open .chat-fab-label {
  display: none;
}

.chat-fab {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: 2px solid rgba(37, 211, 102, 0.3);
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-glow 3s infinite;
  flex-shrink: 0;
  text-decoration: none;
}

.chat-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  color: white;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7), 0 0 20px rgba(37, 211, 102, 0.3);
  }
}

.chat-fab.open {
  animation: none;
}

/* Chat Panel */
.chat-panel {
  position: fixed;
  bottom: 110px;
  right: 30px;
  z-index: 9998;
  width: 380px;
  max-height: 550px;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chat-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--maroon-dark), var(--bg-card));
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.chat-header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.chat-header-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.chat-header-info span {
  font-size: 0.75rem;
  color: #4ade80;
}

.chat-header-actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.chat-header-actions button {
  background: none;
  border: none;
  color: var(--ivory-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}

.chat-header-actions button:hover {
  color: var(--ivory);
}

/* Messages */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 340px;
}

.chat-msg {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: msgIn 0.3s ease;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-msg.bot {
  align-self: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-bottom-left-radius: 4px;
  color: var(--ivory-muted);
}

.chat-msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-bottom-right-radius: 4px;
  color: var(--ivory);
}

/* Chat Input */
.chat-input-area {
  padding: 16px 20px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(18, 18, 18, 0.8);
}

.chat-input-area input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 12px 18px;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.chat-input-area input:focus {
  border-color: var(--amber-dark);
}

.chat-input-area button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.chat-send-btn {
  background: var(--maroon);
  color: var(--ivory);
}

.chat-send-btn:hover {
  background: var(--maroon-light);
}

.chat-mic-btn {
  background: var(--bg-card);
  color: var(--amber);
  border: 1px solid var(--glass-border) !important;
}

.chat-mic-btn:hover {
  background: var(--maroon-dark);
}

.chat-mic-btn.recording {
  background: #dc2626;
  color: white;
  animation: pulse-record 1s infinite;
  border-color: #dc2626 !important;
}

@keyframes pulse-record {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
  }
}

/* WhatsApp Quick Button */
.chat-whatsapp-bar {
  padding: 12px 20px;
  background: rgba(18, 18, 18, 0.6);
  text-align: center;
}

.chat-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.chat-whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  color: white;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-services {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 400px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .navbar-links.open {
    right: 0;
  }

  .hamburger {
    display: block;
    z-index: 1001;
  }

  .navbar {
    padding: 8px 0;
  }

  .navbar.scrolled {
    padding: 6px 0;
  }

  .navbar-logo img {
    height: 180px;
  }

  .navbar.scrolled .navbar-logo img {
    height: 120px;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }

  .hero-sound-btn {
    bottom: 80px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-item.artist-card {
    flex: 0 0 240px;
  }

  .chat-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 100px;
    max-height: 70vh;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .navbar-logo img {
    height: 150px;
  }

  .navbar.scrolled .navbar-logo img {
    height: 105px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .carousel-item.artist-card {
    flex: 0 0 200px;
  }

  .hero-cta {
    padding: 14px 32px;
    font-size: 0.8rem;
  }

  .contact-form button {
    align-self: stretch;
  }

  .chat-fab {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
    bottom: 20px;
    right: 20px;
  }
}

/* ============================================================
   LIGHTBOX (Gallery)
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--maroon);
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  pointer-events: all;
  min-width: 320px;
  max-width: 440px;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 24px 20px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
  animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.toast.removing {
  animation: toastOut 0.35s ease forwards;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.toast.success .toast-icon {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

.toast.error .toast-icon {
  background: rgba(248, 113, 113, 0.15);
  color: #f87171;
}

.toast.warning .toast-icon {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

.toast-body {
  flex: 1;
}

.toast-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ivory);
  margin-bottom: 4px;
}

.toast-message {
  font-size: 0.85rem;
  color: var(--ivory-muted);
  line-height: 1.5;
}

.toast-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}

.toast-close:hover {
  color: var(--ivory);
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 0 0 16px 16px;
  animation: toastProgress 4s linear forwards;
}

.toast.success .toast-progress {
  background: #4ade80;
}

.toast.error .toast-progress {
  background: #f87171;
}

.toast.warning .toast-progress {
  background: #fbbf24;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(60px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(60px);
  }
}

@keyframes toastProgress {
  from {
    width: 100%;
  }

  to {
    width: 0%;
  }
}