/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --primary: #ff6b35;
  --secondary: #f7931e;
  --accent: #fdc830;
  --gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #fdc830 100%);
  --dark: #1a1a2e;
  --light: #ffffff;
  --gray: #6c757d;
  --light-bg: #f8f9fa;
  --shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
  --shadow-hover: 0 15px 50px rgba(255, 107, 53, 0.3);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
  background: var(--light-bg);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.hide {
  display: none !important;
}

/* ========================================
   PRELOADER
   ======================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-wrapper {
  display: flex;
  gap: 10px;
}

.wave-loader {
  width: 15px;
  height: 60px;
  background: white;
  border-radius: 10px;
  animation: wave-animation 1s ease-in-out infinite;
}

.wave-loader:nth-child(2) {
  animation-delay: 0.1s;
}
.wave-loader:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes wave-animation {
  0%,
  100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--gradient);
  z-index: 1000;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  /* Add space for the wave at the bottom */
  padding-bottom: 30px;
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 28px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.logo i {
  font-size: 32px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-link {
  color: white;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-listen {
  background: white;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-listen:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/**
 * NAVBAR BOTTOM WAVE
 * ------------------
 * This wave flows DOWN from the orange navbar into the white hero section
 * NO ROTATION NEEDED - the SVG naturally flows downward
 */
.nav-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 35px;
}

.nav-wave svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  /* NO transform here - wave flows down naturally */
}

.nav-wave .shape-fill {
  fill: #ffffff;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: var(--gradient);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  /* Account for navbar with wave */
  /* margin-top: 85px; */
}

/* Decorative floating circles */
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  color: white;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 15px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
}

.hero-tagline {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  opacity: 0.95;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* PHONE MOCKUP */
.phone-mockup {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
}

.phone-frame {
  position: relative;
  background: linear-gradient(145deg, #2d2d3f, #1a1a2e);
  padding: 20px 18px;
  border-radius: 45px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-screen {
  position: relative;
  border-radius: 35px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9/19.5;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slider img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
}

/* ACTION BUTTONS */
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
}

/**
 * HERO BOTTOM WAVE
 * ----------------
 * This wave flows DOWN from the orange hero section into the white schedule section
 * NO ROTATION NEEDED - the SVG naturally flows downward
 */
.wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 80px;
  transform: rotate(180deg);
}

.wave-bottom svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  /* NO transform here - wave flows down naturally */
}

.wave-bottom .shape-fill {
  fill: #ffffff;
}

/* ========================================
   SCHEDULE SECTION
   ======================================== */
.schedule-section {
  padding: 80px 0;
  background: white;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 20px;
  color: #666;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.schedule-card {
  background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.schedule-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient);
}

.schedule-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.schedule-card .time {
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.schedule-card .show {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.schedule-card .desc {
  font-size: 15px;
  color: #666;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: 80px 0;
  background: #f9f9f9;
  position: relative;
}

/**
 * ABOUT SECTION TOP WAVE
 */
.about-wave-top {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 80px;
}

.about-wave-top svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.about-wave-top .shape-fill {
  fill: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-badge {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  text-align: center;
  padding: 35px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stat-card i {
  font-size: 48px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.stat-card h3 {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 16px;
  color: #666;
}

.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: white;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.btn-playstore:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, var(--dark) 0%, #2d2d3f 100%);
}

.btn-playstore i {
  font-size: 24px;
}

.about-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--gradient);
  color: white;
  padding: 80px 0 30px;
  position: relative;
}

.footer-wave-top {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 80px;
}

.footer-wave-top svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.footer-wave-top .shape-fill {
  fill: #f9f9f9;
}

.footer-content {
  margin-bottom: 40px;
}

.footer h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-contact {
  margin: 30px 0;
}

.footer-contact p {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
  color: white;
}

.social-links a:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 15px;
}

.developer-credit {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.9;
}

.developer-credit a {
  color: white;
  font-weight: 600;
  border-bottom: 2px solid white;
  transition: all 0.3s ease;
}

.developer-credit a:hover {
  opacity: 0.8;
  border-bottom-color: transparent;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-tagline {
    font-size: 24px;
  }
  .section-title {
    font-size: 36px;
  }
  .section-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--gradient);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.active {
    max-height: 500px;
  }

  .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .btn-listen {
    display: none;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .phone-mockup {
    order: -1;
    max-width: 280px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-tagline {
    font-size: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .container,
  .nav-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .section-title,
  .section-header h2 {
    font-size: 28px;
  }

  .phone-mockup {
    max-width: 240px;
  }

  .phone-frame {
    padding: 15px 13px;
  }
}

/* Enhanced Audio Player - Radio Utsav Inspired Design */
.enhanced-audio-player {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.player-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 15px;
}

.player-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 0;
}

.player-album-art {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.player-album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-center-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.now-playing-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #ff6b35;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.now-playing-label::before {
  content: "♫";
  font-size: 16px;
  animation: musical-note 2s ease-in-out infinite;
}

@keyframes musical-note {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.song-title-container {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 8px 12px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.song-title-scroll {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 14px;
}

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

.player-phone-box {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.player-phone-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.player-controls-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-play-button {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.main-play-button:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.main-play-button:active {
  transform: scale(0.95);
}

.progress-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.progress-bar-wrapper {
  width: 100%;
  height: 8px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 10px;
  width: 0%;
  transition: width 0.3s ease;
  position: relative;
}

.progress-bar::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: white;
  border: 3px solid #ff6b35;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.time-display {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #6c757d;
  font-weight: 600;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.volume-icon {
  color: #ff6b35;
  font-size: 18px;
  cursor: pointer;
}

.volume-slider {
  width: 80px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: #e9ecef;
  border-radius: 5px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #ff6b35;
  border-radius: 50%;
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #ff6b35;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* Request Form Styles */
.request-form-section {
  background: white;
  padding: 60px 0;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.05) 0%,
    rgba(247, 147, 30, 0.05) 100%
  );
  padding: 40px;
  border-radius: 25px;
  border: 2px solid rgba(255, 107, 53, 0.1);
}

.section-title-box {
  text-align: center;
  margin-bottom: 35px;
}

.section-title-box h2 {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.section-title-box p {
  color: #666;
  font-size: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-field label i {
  color: #ff6b35;
}

.form-field input {
  padding: 14px 18px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.form-field input:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #fdc830 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.form-status {
  margin-top: 20px;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-status.success {
  background: #d4edda;
  color: #155724;
  border: 2px solid #c3e6cb;
  display: block;
}

.form-status.error {
  background: #f8d7da;
  color: #721c24;
  border: 2px solid #f5c6cb;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .player-top-row {
    flex-wrap: wrap;
  }

  .player-phone-box span {
    display: none;
  }

  .volume-control {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .enhanced-audio-player {
    padding: 15px;
  }

  .player-album-art {
    width: 60px;
    height: 60px;
  }

  .main-play-button {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
