/* --- Global Dark Theme & Typography --- */
    body {
      background-color: #141619;
      color: #e2e8f0;
      font-family: 'Barlow', sans-serif;
    }

    /* --- Floating Header Navigation --- */
    .header_area.sticky-header {
      position: fixed;
      top: 15px;
      left: 50%;
      transform: translateX(-50%);
      width: 92%;
      max-width: 1400px;
      z-index: 9999;
      background: rgba(24, 26, 30, 0.95) !important;
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 198, 94, 0.2);
      border-radius: 14px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .header_area.sticky-header .main_menu,
    .header_area.sticky-header .navbar {
      background: transparent !important;
      padding: 8px 15px;
    }
    .header_area.sticky-header .navbar-toggler {
      border: 1px solid rgba(255, 198, 94, 0.4);
      padding: 6px 10px;
      border-radius: 6px;
    }
    .header_area.sticky-header .navbar-toggler .icon-bar {
      background-color: #FFC65E;
      display: block;
      width: 22px;
      height: 2px;
      border-radius: 1px;
      margin: 4px 0;
    }
    .header_area.sticky-header .navbar-nav .nav-item .nav-link {
      color: rgba(255, 255, 255, 0.85) !important;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 10px 16px;
      border-radius: 8px;
    }
    .header_area.sticky-header .navbar-nav .nav-item .nav-link:hover,
    .header_area.sticky-header .navbar-nav .nav-item.active .nav-link {
      color: #FFC65E !important;
      background: rgba(255, 198, 94, 0.08);
    }
    .header_area.sticky-header .navbar-nav .nav-item.dropdown .dropdown-menu {
      background: rgba(20, 22, 26, 0.95) !important;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 198, 94, 0.25);
      border-radius: 10px;
    }
    .header_area.sticky-header .navbar-nav .dropdown-menu .nav-item .nav-link {
      color: rgba(255, 255, 255, 0.75) !important;
      padding: 8px 20px;
      text-transform: none;
    }
    .header-cta-wrapper .nav-link.phone {
      background: linear-gradient(135deg, #FFC65E, #d99f36) !important;
      color: #141619 !important;
      font-weight: 700 !important;
      border-radius: 8px !important;
      padding: 10px 20px !important;
      display: inline-flex !important;
      align-items: center !important;
    }

    /* Overrides for Dropdown Menu Link Items */
.header_area.sticky-header .navbar-nav .dropdown-menu .nav-item .nav-link {
  border-radius: 0 !important; /* Removes individual rounded corners on hover */
  width: 100%;
  display: block;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Optional: Fix first and last child corners to match the dropdown menu's 10px rounded border */
.header_area.sticky-header .navbar-nav .dropdown-menu .nav-item:first-child .nav-link {
  border-top-left-radius: 9px !important;
  border-top-right-radius: 9px !important;
}

.header_area.sticky-header .navbar-nav .dropdown-menu .nav-item:last-child .nav-link {
  border-bottom-left-radius: 9px !important;
  border-bottom-right-radius: 9px !important;
}

    /* --- Hero Section --- */
    .page-hero-section {
      position: relative;
      background: linear-gradient(180deg, rgba(20, 22, 26, 0.3) 0%, rgba(20, 22, 26, 0.95) 85%, #141619 100%), 
                  url('../images/contact-bg.jpg') center 35% / cover no-repeat;
      padding-top: 160px;
      padding-bottom: 90px;
      text-align: center;
      border-bottom: 1px solid rgba(255, 198, 94, 0.15);
    }
    .hero-pre-title {
      color: #FFC65E;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 700;
      display: block;
      margin-bottom: 12px;
    }
    .hero-title {
      font-family: 'Cinzel', serif;
      color: #ffffff;
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .hero-subtitle {
      max-width: 650px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.75);
      font-size: 16px;
      line-height: 1.6;
    }

    /* --- Video Grid Cards --- */
    .video-card {
      background: rgba(24, 26, 30, 0.7);
      border: 1px solid rgba(255, 198, 94, 0.15);
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 30px;
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .video-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 198, 94, 0.4);
      box-shadow: 0 10px 25px rgba(255, 198, 94, 0.15);
    }
    .video-thumb-wrap {
      position: relative;
      width: 100%;
      padding-top: 56.25%; /* 16:9 Aspect Ratio */
      overflow: hidden;
      background: #0d0e10;
    }
    .video-thumb-wrap img {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .video-card:hover .video-thumb-wrap img {
      transform: scale(1.06);
    }
    .play-btn-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(13, 14, 16, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none !important;
      transition: background 0.3s ease;
    }
    .video-card:hover .play-btn-overlay {
      background: rgba(13, 14, 16, 0.2);
    }
    .play-icon-circle {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background: #FFC65E;
      color: #141619;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 4px 15px rgba(255, 198, 94, 0.4);
      transition: transform 0.3s ease;
      padding-left: 3px;
    }
    .video-card:hover .play-icon-circle {
      transform: scale(1.15);
    }
    .video-card-body {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .video-category {
      color: #FFC65E;
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 6px;
      display: block;
    }
    .video-card-title {
      color: #ffffff;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      line-height: 1.4;
    }
    .video-card-desc {
      color: #94a3b8;
      font-size: 14px;
      line-height: 1.5;
    }

    /* --- Video Modal Popup --- */
    .video-modal .modal-dialog {
      max-width: 900px;
      margin: 80px auto;
    }
    .video-modal .modal-content {
      background: #0d0e10;
      border: 1px solid rgba(255, 198, 94, 0.3);
      border-radius: 12px;
      overflow: hidden;
    }
    .video-modal .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      color: #ffffff;
      font-size: 28px;
      z-index: 10;
      background: none;
      border: none;
      cursor: pointer;
    }
    .embed-responsive-16by9 {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
    }
    .embed-responsive-16by9 iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: 0;
    }


    /* --- Homepage YouTube Player Card Style --- */
.yt-embed-card {
  background: #1e2024;
  border: 1px solid #d99f36; /* Subtle gold accent frame */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yt-embed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 15px rgba(217, 159, 54, 0.2);
}

/* Header Bar */
.yt-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #18191c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.yt-channel-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.yt-channel-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.yt-channel-name {
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.yt-action-icon {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 12px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.yt-action-icon:hover {
  color: #ffffff;
}

/* Thumbnail & Red YouTube Play Button */
.yt-card-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  background: #fff;
  overflow: hidden;
}

.yt-card-thumb img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.yt-embed-card:hover .yt-card-thumb img {
  transform: scale(1.03);
}

.yt-play-trigger {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  text-decoration: none !important;
  transition: background 0.3s ease;
}

.yt-red-play-btn {
  width: 68px;
  height: 48px;
  background: #ff0000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
  transition: transform 0.25s ease, background-color 0.25s ease;
  padding-left: 3px;
}

.yt-embed-card:hover .yt-red-play-btn {
  transform: scale(1.1);
  background: #cc0000;
}

/* Footer Control Bar */
.yt-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #18191c;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.yt-footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yt-icon-btn {
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.yt-icon-btn:hover {
  color: #FFC65E;
}

.yt-watch-on {
  color: #FFC65E;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s ease;
}

.yt-watch-on i {
  color: #ff0000;
  font-size: 15px;
}

.yt-watch-on:hover {
  opacity: 0.85;
  color: #FFC65E;
}

.yt-quality-badge {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
}


/* --- MUSIC SHOWCASE CARD --- */
/* --- Outer Section (Pure White) --- */
.music-showcase-section {
  background-color: #ffffff !important;
}

/* --- Internal Premium Dark Card --- */
.music-card-wrapper {
  background: #1f2328;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 198, 94, 0.2);
}

/* --- Left Side Player Box --- */
.player-box {
  background: #141619;
  border-radius: 16px;
  padding: 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.track-playing-label {
  color: #FFC65E;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.player-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.player-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

/* Interactive Controls Bar */
.player-controls {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

.play-btn {
  width: 42px;
  height: 42px;
  background: #FFC65E;
  color: #141619;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.play-btn:hover {
  transform: scale(1.08);
  background: #ffffff;
  color: #141619;
}

/* Audio Visualizer Wave Effect */
.audio-wave {
  display: flex;
  align-items: center;
  gap: 4px;
}

.audio-wave span {
  width: 3px;
  height: 16px;
  background: rgba(255, 198, 94, 0.5);
  border-radius: 3px;
}

.audio-wave span:nth-child(2) { height: 24px; background: #FFC65E; }
.audio-wave span:nth-child(3) { height: 12px; }
.audio-wave span:nth-child(4) { height: 28px; background: #FFC65E; }

/* --- Right Side Content --- */
.track-badge {
  display: inline-block;
  background: rgba(255, 198, 94, 0.12);
  color: #FFC65E;
  border: 1px solid rgba(255, 198, 94, 0.3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.track-title {
  font-family: 'Cinzel', serif;
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.track-artist {
  font-size: 18px;
  color: #FFC65E;
  margin-bottom: 15px;
}

.track-artist .text-muted {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 14px;
}

.track-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

/* Buttons & Social Icons */
.btn-gold-primary {
  background: linear-gradient(135deg, #FFC65E 0%, #e0a73e 100%);
  color: #141619;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold-primary:hover {
  background: #ffffff;
  color: #141619;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.platform-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.platform-icon:hover {
  background: rgba(255, 198, 94, 0.2);
  border-color: #FFC65E;
  color: #FFC65E;
  transform: translateY(-2px);
}

.player-box {
  background: #121417;
  border: 1px solid rgba(255, 198, 94, 0.15);
}

.play-btn:hover {
  box-shadow: 0 0 15px rgba(255, 198, 94, 0.6);
  transform: scale(1.05);
}