@font-face {
  font-family: "Momo Signature";
  font-weight: 400;
  font-style: normal;
  src: local("Momo Signature"), 
       url("fonts/MomoSignature-Regular.woff2") format("woff2"),
       url("fonts/MomoSignature-Regular.woff") format("woff"),
       url("fonts/MomoSignature-Regular.ttf") format("truetype");
  font-display: swap;
}

.momo-signature-regular {
  font-family: "Momo Signature", cursive;
  font-weight: 400;
  font-style: normal;
}

.dj03-highlight {
  color: var(--text);
  cursor: pointer;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  display: inline-block;
}

.dj03-highlight:hover {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(246, 57, 0, 0.5);
}

:root {
  --bg: #000000;
  --bg-alt: #0c0c0c;
  --accent: #f63900;
  --accent-2: #ff522d;
  --text: #f3f3f3;
  --muted: #aaaaaa;
  --card-bg: #0c0c0c;
  --border-soft: #2a2a2a;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Image Optimization */
img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

img[loading="lazy"] {
  content-visibility: auto;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
}

/* Image Optimization */
img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

img[loading="lazy"] {
  content-visibility: auto;
}

/* Containers & layout */

.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-alt);
  padding: 4rem 0;
}

.radio-background,
.page-background {
  background-image: url('DJ03 ON THE MIX.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Changed from fixed to scroll for better performance */
  position: relative;
  background-repeat: no-repeat;
  will-change: transform; /* Optimize for animations */
  transform: translateZ(0); /* Force GPU acceleration */
}

.radio-background::before,
.page-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 0;
}

.radio-background .container,
.page-background .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-label.hot {
  color: var(--accent-2);
}

.section-header h2 {
  font-size: 2rem;
  margin: 0 0 0.6rem;
}

.section-desc {
  max-width: 520px;
  margin: 0.5rem auto 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Header / Nav */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--accent);
  backdrop-filter: blur(10px);
}

/* Hero Header Overlay - Only on landing page */
.hero-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 25;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(246, 57, 0, 0.3);
  backdrop-filter: blur(5px);
}

.hero-header .nav a {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-header .nav a:hover {
  color: var(--accent);
  text-shadow: 0 1px 3px rgba(246, 57, 0, 0.5);
}

.hero-header .mobile-menu-toggle span {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0.5rem 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  max-width: 200px;
}

.nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}

.nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.nav a.active {
  color: var(--accent);
  border-color: var(--accent);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 21;
  position: relative;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Page Hero (for non-home pages) */

.page-hero {
  background: var(--bg-alt);
  padding: 8rem 0 4rem;
  margin-top: 70px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
}

.page-title {
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

/* Radio Page Styles */
.radio-hero {
  background: linear-gradient(135deg, rgba(246, 57, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.radio-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('DJ03 ON THE MIX.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.radio-hero .container {
  position: relative;
  z-index: 1;
}

.radio-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.radio-logo-section {
  text-align: center;
}

.radio-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(246, 57, 0, 0.2);
  border: 2px solid var(--accent);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(246, 57, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(246, 57, 0, 0);
  }
}

.radio-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.radio-tagline {
  font-size: 1.5rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.radio-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(246, 57, 0, 0.2);
  border: 2px solid var(--accent);
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  color: var(--accent);
}

.live-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.radio-intro-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(12, 12, 12, 0.8);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 3rem;
  margin-top: 2rem;
}

.radio-intro-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.radio-intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.radio-intro-text strong {
  color: var(--accent);
  font-weight: 700;
}

.radio-listen-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
}

.radio-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio-frequency-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid var(--accent);
  border-radius: 12px;
  min-width: 200px;
}

.frequency-label {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.frequency-value {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(246, 57, 0, 0.5);
}

.radio-genres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.radio-genre-card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.radio-genre-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(246, 57, 0, 0.2);
}

.genre-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.radio-genre-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.radio-genre-card p {
  color: var(--muted);
  line-height: 1.6;
}

.radio-global-section {
  text-align: center;
}

.global-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(246, 57, 0, 0.1);
  border: 1px solid rgba(246, 57, 0, 0.3);
  border-radius: 50px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
}

.location-item:hover {
  background: rgba(246, 57, 0, 0.2);
  border-color: var(--accent);
  transform: scale(1.05);
}

.location-item svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.radio-cta-section {
  background: linear-gradient(135deg, rgba(246, 57, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.radio-cta-card {
  background: rgba(12, 12, 12, 0.9);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 4rem 3rem;
  text-align: center;
  margin-top: 2rem;
}

.radio-cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.radio-cta-content p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-large svg {
  vertical-align: middle;
}

/* Hero */

.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: #000;
  background-image: url('dj03 landing page pic.jpeg');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

/* Silk Animation Canvas */
.silk-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  mix-blend-mode: overlay;
  opacity: 0.3;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.5)
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content-wrapper {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 0 2rem;
  pointer-events: none;
}

.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Hero Footer */
.hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem 2rem;
  pointer-events: none;
}

.hero-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-version-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.hero-chat-button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  pointer-events: auto;
}

.hero-chat-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-chat-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

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

.hero-message {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: -1.5rem;
  transform: translateY(2rem);
}

.hero-main-text {
  font-size: 7rem;
  font-weight: 900;
  margin: 0;
  color: var(--text);
  text-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.9),
    0 2px 10px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 
    0 6px 40px rgba(0, 0, 0, 0.95),
    0 0 60px rgba(246, 57, 0, 0.5),
    0 0 100px rgba(246, 57, 0, 0.3),
    3px 3px 10px rgba(0, 0, 0, 0.8);
  /* No grid/background - clean text */
  display: inline-block;
}

.hero-sub-text {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.95),
    0 2px 15px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(246, 57, 0, 0.5),
    2px 2px 8px rgba(0, 0, 0, 0.7);
  /* No grid/background - clean text */
  display: inline-block;
}

.hero-name-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  /* Premium grouped effect */
  padding: 0;
  position: relative;
  width: 100%;
}

.hero-logo-wrapper {
  display: inline-block;
  position: relative;
  margin-top: 0;
  padding-top: 1rem;
}

.hero-logo {
  height: auto;
  max-width: 300px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.8)) 
          drop-shadow(0 0 40px rgba(246, 57, 0, 0.5));
  mix-blend-mode: normal;
  opacity: 0.95;
  transition: all 0.3s ease;
  /* Premium sizing */
  object-fit: contain;
}

.hero-logo:hover {
  transform: translateY(-2px);
  opacity: 1;
  filter: drop-shadow(0 6px 40px rgba(0, 0, 0, 0.9)) 
          drop-shadow(0 0 50px rgba(246, 57, 0, 0.6));
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  /* Ultra premium glassmorphism effect */
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15) 0%,
    rgba(246, 57, 0, 0.1) 50%,
    rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 1.2rem 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(246, 57, 0, 0.3);
  display: inline-block;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6), 
    0 0 60px rgba(246, 57, 0, 0.25),
    0 0 100px rgba(246, 57, 0, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  color: #f3f3f3;
  text-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.8), 
    0 0 40px rgba(246, 57, 0, 0.5),
    0 0 80px rgba(246, 57, 0, 0.3),
    2px 2px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  animation: premiumGlow 3s ease-in-out infinite alternate;
}

@keyframes premiumGlow {
  0% {
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.6), 
      0 0 60px rgba(246, 57, 0, 0.25),
      0 0 100px rgba(246, 57, 0, 0.1),
      inset 0 2px 0 rgba(255, 255, 255, 0.3),
      inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.6), 
      0 0 80px rgba(246, 57, 0, 0.35),
      0 0 120px rgba(246, 57, 0, 0.2),
      inset 0 2px 0 rgba(255, 255, 255, 0.3),
      inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  }
}

.hero-subtitle {
  margin: 0;
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  /* Premium subtle background */
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  /* Premium connection to logo */
  position: relative;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  align-items: center;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: var(--accent);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.18em;
  box-shadow: 0 6px 25px rgba(246, 57, 0, 0.4),
              0 0 25px rgba(246, 57, 0, 0.2);
  transition: all 0.3s ease;
  text-shadow: none;
}

.btn.primary:hover {
  background: linear-gradient(135deg, #ff522d, #f63900);
  box-shadow: 0 8px 35px rgba(246, 57, 0, 0.5),
              0 0 35px rgba(246, 57, 0, 0.3);
  transform: translateY(-2px);
}

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

.btn-transparent {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), 
              0 0 20px rgba(246, 57, 0, 0.1);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.btn-transparent:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)) !important;
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 
              0 0 30px rgba(246, 57, 0, 0.2);
  transform: translateY(-2px);
}

.btn.small {
  padding: 0.5rem 1.1rem;
  font-size: 0.75rem;
}

/* Cards & grids */

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

/* Zig-zag Gallery Layout */

.zigzag-gallery {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}

.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 400px;
}

.zigzag-item.zigzag-left {
  grid-template-columns: 1fr 1fr;
}

.zigzag-item.zigzag-left .zigzag-image {
  order: 1;
}

.zigzag-item.zigzag-left .zigzag-content {
  order: 2;
}

.zigzag-item.zigzag-right {
  grid-template-columns: 1fr 1fr;
}

.zigzag-item.zigzag-right .zigzag-image {
  order: 2;
}

.zigzag-item.zigzag-right .zigzag-content {
  order: 1;
}

.zigzag-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zigzag-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 
              0 0 40px rgba(246, 57, 0, 0.2);
}

.zigzag-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  min-height: 400px;
}

.zigzag-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zigzag-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.zigzag-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.zigzag-content .card-link {
  align-self: flex-start;
}

.card {
  background: var(--card-bg);
  border-radius: 0.9rem;
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
}

.card h3 {
  margin: 0 0 0.4rem;
}

.card-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.card-label.hot {
  color: var(--accent-2);
}

.card-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-decoration: none;
}

.card-link:hover {
  color: var(--accent-2);
}

/* Ticket Booking */

.ticket-booking-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-top: 3rem;
}

.ticket-events {
  display: flex;
  flex-direction: column;
}

.ticket-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item {
  background: var(--card-bg);
  border: 2px solid var(--border-soft);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.event-item:hover {
  border-color: var(--accent);
  transform: translateX(5px);
}

.event-item.active {
  border-color: var(--accent);
  background: rgba(246, 57, 0, 0.1);
}

.event-date {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.event-venue {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.event-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.ticket-booking-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ticket-preview {
  background: var(--bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
}

.ticket-design {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.ticket-design::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.ticket-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-soft);
}

.ticket-logo img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.ticket-info {
  flex: 1;
}

.ticket-artist {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ticket-tagline {
  font-size: 0.875rem;
  color: var(--accent);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ticket-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ticket-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--border-soft);
}

.ticket-detail-row:last-child {
  border-bottom: none;
}

.ticket-label {
  font-size: 0.875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ticket-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

.ticket-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
}

.ticket-barcode {
  font-family: monospace;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: 0.2em;
}

.ticket-number {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: monospace;
}

.booking-form {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-soft);
}

.ticket-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  padding: 0.875rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(246, 57, 0, 0.1);
}

.form-total {
  background: var(--bg);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
  border: 1px solid var(--border-soft);
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.total-row.total-final {
  border-top: 2px solid var(--border-soft);
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.btn-booking {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

/* Payment Section */
.payment-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}

.payment-methods {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-method-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--bg);
  border: 2px solid var(--border-soft);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-method-option:hover {
  border-color: var(--accent);
}

.payment-method-option input[type="radio"] {
  display: none;
}

.payment-method-option input[type="radio"]:checked + .payment-method-label {
  color: var(--accent);
}

.payment-method-option:has(input[type="radio"]:checked) {
  border-color: var(--accent);
  background: rgba(246, 57, 0, 0.1);
}

.payment-method-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s ease;
}

.payment-method-label svg {
  width: 24px;
  height: 24px;
}

.payment-form-content {
  margin-top: 1.5rem;
}

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

.paypal-info {
  text-align: center;
  padding: 2rem;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border-soft);
}

.paypal-info p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.paypal-logo {
  display: flex;
  justify-content: center;
  color: #0070ba;
  margin-top: 1rem;
}

.payment-security {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
}

.security-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.security-badges svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .payment-methods {
    flex-direction: column;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .payment-security {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .ticket-booking-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ticket-design {
    padding: 1.5rem;
  }
  
  .ticket-artist {
    font-size: 1.25rem;
  }
  
  .booking-form {
    padding: 1.5rem;
  }
}

/* Tour (legacy - keeping for compatibility) */

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

.tour-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tour-date {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Music / EP */

.music-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: center;
}

.music-artwork {
  display: flex;
  justify-content: center;
}

.artwork-placeholder {
  width: 260px;
  height: 260px;
  border-radius: 1rem;
  border: 1px dashed var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.tracklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.tracklist li + li {
  margin-top: 0.4rem;
}

.music-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Videos */

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

.video-card .video-thumb {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  margin-bottom: 0.8rem;
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card a:hover .video-thumb {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.thumb-placeholder {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #222, #444);
  color: #eee;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Music Platforms Grid */
.music-platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.music-platform-card {
  background: var(--bg-alt);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-soft);
}

.music-platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(246, 57, 0, 0.3);
  border-color: var(--accent);
}

.platform-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  position: relative;
}

.platform-link::after {
  content: '▶ Listen Now';
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.music-platform-card:hover .platform-link::after {
  opacity: 1;
  transform: translateY(0);
}

.platform-thumb {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #000;
}

.platform-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.music-platform-card:hover .platform-thumb img {
  transform: scale(1.1);
}

.platform-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(2px);
}

.music-platform-card:hover .platform-overlay {
  opacity: 1;
  background: rgba(246, 57, 0, 0.2);
}

.platform-overlay svg {
  color: var(--accent);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.platform-multi-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
}

.platform-multi-icons svg {
  width: 32px;
  height: 32px;
}

.platform-multi-icons span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.platform-icon {
  font-size: 3rem;
  color: var(--accent);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.platform-info {
  padding: 1.5rem;
}

.platform-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.platform-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.5rem 0;
  color: var(--text);
}

.platform-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .music-platforms-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
  }

  .platform-thumb {
    height: 200px;
  }

  .platform-info h3 {
    font-size: 1.25rem;
  }

  .platform-link::after {
    bottom: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Music Intro Section */
.music-intro-section {
  padding: 4rem 0;
  margin-top: 70px;
}

.music-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.music-intro-image {
  position: relative;
}

.music-intro-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--border-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-intro-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(246, 57, 0, 0.3);
  border-color: var(--accent);
}

.music-intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.music-intro-content .page-title {
  font-size: 4rem;
  margin: 0;
  color: var(--text);
  line-height: 1.1;
}

.music-intro-subtitle {
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.music-intro-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.music-intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

.music-intro-text p strong {
  color: var(--accent);
  font-weight: 700;
}

.music-cta-text {
  font-size: 1.2rem !important;
  color: var(--text) !important;
  font-weight: 600 !important;
  font-style: italic;
  margin-top: 1rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
}

@media (max-width: 768px) {
  .music-intro-section {
    padding: 3rem 0;
  }

  .music-intro-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .music-intro-content .page-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .music-intro-subtitle {
    font-size: 1.2rem;
    text-align: center;
  }

  .music-intro-text p {
    font-size: 1rem;
  }

  .music-cta-text {
    font-size: 1.1rem !important;
  }
}

/* Testimonial Carousel Section */
.testimonial-carousel-section {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  background: var(--bg);
}

.testimonial-carousel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.testimonial-carousel {
  width: 100%;
}

/* Desktop Layout */
.testimonial-desktop {
  display: none;
  position: relative;
  align-items: center;
  gap: 0;
}

.testimonial-avatar {
  width: 470px;
  height: 470px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-alt);
  flex-shrink: 0;
  position: relative;
}

.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 2rem;
  margin-left: -80px;
  z-index: 10;
  max-width: 500px;
  flex: 1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-soft);
}

.testimonial-content {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.testimonial-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem 0;
}

.testimonial-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 1.5rem 0;
}

.testimonial-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 2rem 0;
}

.testimonial-social {
  display: flex;
  gap: 1rem;
}

.testimonial-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.testimonial-whatsapp-btn:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.testimonial-whatsapp-btn svg {
  width: 24px;
  height: 24px;
}

.social-icon {
  width: 3rem;
  height: 3rem;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border-soft);
}

.social-icon:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Mobile Layout */
.testimonial-mobile {
  display: block;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-avatar-mobile {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-alt);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.testimonial-content-mobile {
  padding: 0 1rem;
}

.testimonial-content-mobile .testimonial-name {
  font-size: 1.25rem;
}

.testimonial-content-mobile .testimonial-title {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.testimonial-content-mobile .testimonial-description {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.testimonial-content-mobile .testimonial-social {
  justify-content: center;
}

/* Navigation */
.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.nav-button {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.nav-button:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.nav-button svg {
  width: 24px;
  height: 24px;
}

.nav-dots {
  display: flex;
  gap: 0.5rem;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--muted);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.nav-dot.active {
  background: var(--text);
  width: 32px;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .testimonial-desktop {
    display: flex;
  }
  
  .testimonial-mobile {
    display: none;
  }
  
  .testimonial-carousel-section {
    padding: 6rem 0;
  }
}

/* About & Newsletter */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
  gap: 2rem;
  align-items: flex-start;
}

/* About Page Enhanced Styles */

.about-hero-image {
  margin: 3rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  width: 100%;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 500px;
}

.about-video-section {
  margin: 3rem 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-video-section video {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.about-content {
  margin-top: 3rem;
  width: 100%;
  max-width: 100%;
}

/* Highlight section card hover effects */
.highlight-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.highlight-card-link .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.highlight-card-link:hover .card {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(246, 57, 0, 0.2);
}

/* Video Showcase Section */
.video-showcase-section {
  padding: 0;
  position: relative;
  z-index: 1;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.video-background-container {
  position: relative;
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 1;
}

.video-content-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 4rem 2rem;
}

.video-text-content {
  text-align: center;
  max-width: 800px;
  color: var(--text);
}

.video-text-content .section-label {
  color: var(--accent);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}

.video-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--text);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

.video-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 1.5rem 0 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.video-play-btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(246, 57, 0, 0.4);
}

@media (max-width: 768px) {
  .video-showcase-section {
    min-height: 60vh;
  }

  .video-background-container {
    min-height: 60vh;
  }

  .video-content-overlay {
    min-height: 60vh;
    padding: 3rem 1.5rem;
  }

  .video-title {
    font-size: 2.5rem;
  }

  .video-description {
    font-size: 1.1rem;
    margin: 1rem 0 2rem;
  }

  .video-play-btn {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
}

.about-text-block {
  margin: 3rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-text-block h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-text-block p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.about-text-block p strong {
  color: var(--accent);
  font-weight: 600;
}

.about-image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 4rem 0;
}

.about-image-text-reverse {
  grid-template-columns: 1fr 1fr;
}

.about-image-text-reverse .about-text-left {
  order: 1;
}

.about-image-text-reverse .about-image-right {
  order: 2;
}

.about-image-left,
.about-image-right {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-left:hover,
.about-image-right:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 
              0 0 40px rgba(246, 57, 0, 0.2);
}

.about-image-left img,
.about-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}

.about-text-right,
.about-text-left {
  padding: 1rem;
}

.about-text-right h3,
.about-text-left h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-text-right p,
.about-text-left p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.about-text-right p strong,
.about-text-left p strong {
  color: var(--accent);
  font-weight: 600;
}

.about-cta {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--border-soft);
  margin-top: 4rem;
}

.about-cta h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--accent);
}

.about-tagline {
  font-size: 1.3rem !important;
  line-height: 1.8 !important;
  color: var(--text) !important;
  margin-top: 2rem !important;
}

.about-tagline strong {
  color: var(--accent);
  font-size: 1.5rem;
}

.newsletter h3 {
  margin-top: 0;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.7rem;
}

.newsletter-form input {
  flex: 1 1 180px;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #080808;
  color: var(--text);
}

/* Footer */

.site-footer {
  background: #000000;
  border-top: 1px solid var(--border-soft);
  padding: 2rem 0 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.footer-logo-img:hover {
  opacity: 1;
}

.footer-links,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a,
.socials a {
  text-decoration: none;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.footer-links a:hover,
.socials a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
}

/* Responsive */

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-alt {
    padding: 3rem 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1.5rem;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 30;
  }
  
  .hero-header .nav {
    z-index: 30;
  }

  .nav.nav-open {
    transform: translateX(0);
  }

  .nav a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    border-right: none;
    text-align: left;
    font-size: 1rem;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav a:hover,
  .nav a.active {
    border-bottom-color: var(--accent);
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: 70vh;
    background-size: cover;
    background-position: center 25%;
  }

  .hero-content-wrapper {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    padding: 0 1.5rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-top-left {
    align-self: flex-start;
    width: 100%;
    margin-bottom: 2rem;
  }

  .hero-main-text {
    font-size: 4rem;
    letter-spacing: 0.08em;
  }

  .hero-sub-text {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }

  .hero-name-section {
    align-items: center;
    width: 100%;
  }

  .hero-content-wrapper {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    padding: 0 1.5rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-content {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-name-section {
    align-items: center;
    width: 100%;
  }

  .hero-footer {
    padding: 1rem 1.5rem;
  }

  .hero-footer-content {
    padding: 0 1rem;
  }

  .hero-version-text {
    font-size: 0.75rem;
  }

  .hero-chat-button {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero-chat-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .hero-actions {
    justify-content: flex-start;
    width: 100%;
  }

  /* Radio Page Mobile Styles */
  .radio-hero {
    padding: 3rem 0 2rem;
  }

  .radio-hero-content {
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .radio-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .radio-icon {
    width: 30px;
    height: 30px;
  }

  .radio-tagline {
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  .radio-live-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .radio-intro-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .radio-intro-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .radio-intro-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .radio-listen-btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }

  .radio-visual {
    margin-top: 1rem;
  }

  .radio-frequency-display {
    padding: 1.5rem;
    min-width: auto;
    width: 100%;
  }

  .frequency-label {
    font-size: 0.8rem;
  }

  .frequency-value {
    font-size: 1.75rem;
  }

  .radio-genres-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .radio-genre-card {
    padding: 1.5rem;
  }

  .genre-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .radio-genre-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .radio-genre-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .global-locations {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .location-item {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .location-item svg {
    width: 20px;
    height: 20px;
  }

  .radio-cta-card {
    padding: 2rem 1.5rem;
    margin-top: 1.5rem;
  }

  .radio-cta-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .radio-cta-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .radio-cta-content .btn-large {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* Laptop and larger screens - adjust background to show face */
@media (min-width: 769px) {
  .hero {
    background-position: center 15%;
    background-size: cover;
  }
  
  .hero-content-wrapper {
    bottom: 3%;
  }

  .page-hero {
    padding: 6rem 0 3rem;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .music-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .artwork-placeholder {
    width: 220px;
    height: 220px;
  }

  .logo-img {
    height: 50px;
    max-width: 180px;
  }

  .footer-logo-img {
    height: 40px;
  }

  .footer-bottom-logo-img {
    height: 30px;
  }

  .zigzag-item {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    min-height: auto;
  }

  .zigzag-item.zigzag-left .zigzag-image,
  .zigzag-item.zigzag-right .zigzag-image {
    order: 1 !important;
  }

  .zigzag-item.zigzag-left .zigzag-content,
  .zigzag-item.zigzag-right .zigzag-content {
    order: 2 !important;
  }

  .zigzag-image img {
    min-height: 300px;
  }

  .zigzag-content {
    padding: 1.5rem;
  }

  .zigzag-content h3 {
    font-size: 1.5rem;
  }

  .about-hero-image {
    margin: 2rem 0;
    border-radius: 12px;
  }

  .about-hero-image img {
    min-height: 250px;
    width: 100%;
  }

  .about-content {
    margin-top: 2rem;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .about-image-text {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .about-image-text-reverse .about-text-left,
  .about-image-text-reverse .about-image-right {
    order: 0 !important;
  }

  .about-image-left img,
  .about-image-right img {
    min-height: 300px;
  }

  .about-text-block {
    margin: 2rem 0;
    padding: 0 1rem;
    max-width: 100%;
  }

  .about-text-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .about-text-block p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .about-text-right h3,
  .about-text-left h3 {
    font-size: 1.5rem;
  }

  .about-cta {
    padding: 0 1rem;
  }

  .about-cta h3 {
    font-size: 1.75rem;
  }


/* Booking Steps */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.booking-step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.booking-step:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(246, 57, 0, 0.2);
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(246, 57, 0, 0.3);
}

.step-content h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.step-content p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Booking Form Section */
.booking-form-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.booking-form-main {
  background: var(--card-bg);
  border: 2px solid var(--border-soft);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.booking-form-main .form-group {
  margin-bottom: 1.5rem;
}

.booking-form-main label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-form-main .form-input {
  width: 100%;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-main);
  transition: all 0.3s ease;
}

.booking-form-main .form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(246, 57, 0, 0.1);
}

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

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.btn-booking-large {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

.booking-success-message {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(37, 211, 102, 0.1);
  border: 2px solid #25D366;
  border-radius: 12px;
  text-align: center;
}

.booking-success-message h3 {
  color: #25D366;
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.booking-success-message p {
  color: var(--text);
  line-height: 1.8;
  margin: 0.5rem 0;
}

/* WhatsApp Booking Section */
.whatsapp-booking-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.whatsapp-booking-card {
  background: var(--card-bg);
  border: 2px solid var(--border-soft);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.whatsapp-booking-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-soft);
}

.whatsapp-icon-wrapper {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon-wrapper svg {
  width: 48px;
  height: 48px;
  color: #fff;
}

.whatsapp-booking-title h3 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.whatsapp-booking-title p {
  color: var(--muted);
  margin: 0;
  font-size: 1.1rem;
}

.whatsapp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.whatsapp-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.whatsapp-feature svg {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-top: 0.25rem;
}

.whatsapp-feature strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.whatsapp-feature p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.whatsapp-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: rgba(246, 57, 0, 0.1);
  border: 1px solid rgba(246, 57, 0, 0.3);
  border-radius: 12px;
  gap: 2rem;
}

.whatsapp-cta-info h4 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.whatsapp-cta-info p {
  color: var(--muted);
  margin: 0;
}

.whatsapp-btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  background: #25D366 !important;
  border-color: #25D366 !important;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-btn-large:hover {
  background: #20BA5A !important;
  border-color: #20BA5A !important;
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5) !important;
}

.whatsapp-btn-large svg {
  width: 24px;
  height: 24px;
}

/* FAQ Section */
.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
  width: 100%;
}

.faq-item {
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(246, 57, 0, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
  gap: 1rem;
}

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

.faq-question:focus {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: 12px;
}

.faq-question span {
  flex: 1;
  padding-right: 1rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  color: var(--accent);
  min-width: 24px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 1000px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  padding-top: 0.5rem;
}

@media (max-width: 768px) {
  .booking-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .booking-step {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(246, 57, 0, 0.3) !important;
  }

  .step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .step-content p {
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .whatsapp-booking-container {
    margin-top: 2rem;
    padding: 0 1rem;
  }

  .whatsapp-booking-card {
    padding: 2rem 1.5rem;
  }

  .whatsapp-booking-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .whatsapp-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: #25D366 !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
  }

  .whatsapp-icon-wrapper svg {
    width: 36px;
    height: 36px;
    color: #fff !important;
  }

  .whatsapp-booking-title h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .whatsapp-booking-title p {
    font-size: 0.95rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .whatsapp-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .whatsapp-feature {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }

  .whatsapp-feature svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--accent) !important;
  }

  .whatsapp-feature strong {
    font-size: 0.95rem;
  }

  .whatsapp-feature p {
    font-size: 0.85rem;
  }

  .whatsapp-cta {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1.5rem;
    background: rgba(246, 57, 0, 0.1) !important;
    border: 1px solid rgba(246, 57, 0, 0.3) !important;
  }

  .whatsapp-cta-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .whatsapp-cta-info p {
    font-size: 0.9rem;
  }

  .whatsapp-btn-large {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: #25D366 !important;
    border-color: #25D366 !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4) !important;
    color: #fff !important;
  }

  .faq-container {
    margin-top: 2rem;
    padding: 0;
    max-width: 100%;
  }

  .faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
  }

  .faq-question {
    padding: 1.25rem 1.25rem;
    font-size: 1rem;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .faq-question span {
    padding-right: 0.5rem;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    min-width: 20px;
    margin-top: 0.125rem;
  }

  .faq-answer {
    padding: 0 1.25rem;
    font-size: 0.9rem;
  }

  .faq-question[aria-expanded="true"] + .faq-answer {
    padding: 0 1.25rem 1.25rem;
    max-height: 2000px;
  }

  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.7;
    padding-top: 0.25rem;
  }

  .booking-form-container {
    margin-top: 2rem;
    padding: 0 1rem;
  }

  .booking-form-main {
    padding: 2rem 1.5rem;
  }

  .booking-form-main label {
    font-size: 0.85rem;
  }

  .booking-form-main .form-input {
    padding: 0.875rem;
    font-size: 0.95rem;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .btn-booking-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}
