/* ===== GLOBAL RESET ===== */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@600&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* optional but good for avoiding horizontal scroll */
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(160deg, #ffffff, #f3f4f6);
  color: #001F3F;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}

/* ===== FANCY BACKGROUND ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(0,246,255,0.15), transparent 70%),
    radial-gradient(circle at 80% 80%, rgba(200,16,46,0.1), transparent 70%);
  background-size: cover;
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  animation: pulseBG 40s ease-in-out infinite alternate;
}

@keyframes pulseBG {
  0% { filter: blur(0px) brightness(1); }
  100% { filter: blur(10px) brightness(1.1); }
}

/* ===== NAVIGATION ===== */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(0, 31, 63, 0.1);
  box-shadow: 0 2px 20px rgba(0, 31, 63, 0.06);
  animation: navFade 1s ease-in-out;
}

@keyframes navFade {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}



nav a {
  margin-left: 25px;
  color: #001F3F;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 3px;
  width: 0;
  background: #00F6FF;
  border-radius: 50px;
  transition: 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #C8102E;
}

/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #001F3F;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* Hamburger "X" state */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* Responsive Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px;
    gap: 20px;
    transition: right 0.3s ease-in-out;
    box-shadow: -8px 0 20px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    right: 0;
  }

  nav a {
    font-size: 1.2rem;
    width: 100%;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at center, #ffffff 40%, #e5e7eb 100%);
  overflow: hidden;
  padding-top: 100px;
  z-index: 1;
}

.hero-content {
  z-index: 10;
  max-width: 800px;
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  color: transparent;
  position: relative;
  background: linear-gradient(90deg, #C8102E, #001F3F);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: breathe 4s ease-in-out infinite, noiseShift 15s infinite linear;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.95; }
}

@keyframes noiseShift {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #001F3F;
  opacity: 0.8;
}


 @import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@600&display=swap');

  .radio-hero-lux {
    height: 100vh;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Unbounded', sans-serif;
    color: #001F3F;
    padding: 0 1.5rem;
  }

  .hero-bg-layer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(200, 16, 46, 0.1) 0%, transparent 80%);
    opacity: 1;
    z-index: 1;
    pointer-events: none;
  }

  .pulse-ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 150%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
    z-index: 2;
    filter: blur(10px);
    pointer-events: none;
  }

  @keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  }

  .hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1.6s ease-out forwards;
    opacity: 0;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
    from {
      opacity: 0;
      transform: translateY(30px);
    }
  }

  .hero-title {
    font-size: 4.5rem;
    font-weight: 600;
    background: linear-gradient(to right, #001F3F, #C8102E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.4rem;
  }

  .hero-frequency {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: rgba(0, 31, 63, 0.7);
    margin-bottom: 1.2rem;
  }

  .hero-subtext {
    font-size: 1.1rem;
    color: rgba(0, 31, 63, 0.7);
    margin-bottom: 2.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .listen-btn {
    padding: 14px 40px;
    background: rgba(200, 16, 46, 0.15);
    border: 1px solid rgba(200, 16, 46, 0.4);
    border-radius: 100px;
    color: #C8102E;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.15em;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    position: relative;
  }

  .listen-btn:hover {
    background: #C8102E;
    border-color: #C8102E;
    color: #fff;
    box-shadow: 0 0 30px rgba(200, 16, 46, 0.5);
  }

  @media (max-width: 768px) {
    .hero-title {
      font-size: 3rem;
    }

    .hero-frequency {
      font-size: 1.1rem;
    }

    .hero-subtext {
      font-size: 0.9rem;
    }

    .listen-btn {
      padding: 12px 30px;
      font-size: 0.9rem;
    }

    .pulse-ring {
      width: 320px;
      height: 320px;
    }
  }



  .about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}


 .about-image{
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;

 }

.about-image:hover {
  transform: scale(1.05);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.about-text {
  flex: 1;
  max-width: 640px;
  color: #001F3F;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.75;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #C8102E;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.about-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #001F3F;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.about-text h2:hover::after {
  width: 100px;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #001F3F;
  opacity: 0.9;
}

/* Responsive Behavior */
@media (max-width: 1024px) {
  .about-content {
    flex-direction: row;
    gap: 30px;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-image {
    max-width: 220px;
  }

  .about-text {
    max-width: 100%;
  }

  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.services-section {
  background-color: #fff;
  padding: 4rem 1.5rem;
  color: #001F3F;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.section-title {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #001F3F;
  position: relative;
  display: inline-block;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #C8102E 0%, #001F3F 100%);
  margin: 0.7rem auto 0;
  border-radius: 3px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  justify-items: center; /* 💥 this centers each card horizontally */
}


.service-card {
  background-color: #F4F6F8;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  color: #001F3F;
  box-shadow: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 32px rgba(200, 12, 35, 0.15);
}

.icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  color: #C8102E;
  user-select: none;
}

.service-title {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #001F3F;
}

.service-desc {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #3a3a3a;
}

/* 🌐 Media Queries */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .icon {
    font-size: 3rem;
  }

  .service-title {
    font-size: 1.4rem;
  }

  .service-desc {
    font-size: 0.95rem;
  }

  .services-section {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.9rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .icon {
    font-size: 2.5rem;
  }

  .service-title {
    font-size: 1.25rem;
  }

  .service-desc {
    font-size: 0.9rem;
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.podcast-card {
  background: #0a2b5a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(200, 20, 20, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.podcast-card:hover {
  transform: translateY(-8px);
}

.podcast-info {
  padding: 1.5rem 1.75rem 2rem;
  color: white;
}

.podcast-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #C8102E;
}

.podcast-desc {
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.85;
}
.testimonials-section {
  background: #fff;
  color: #001F3F;
  padding: 5rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  user-select: none;
}

.section-title {
  font-weight: 700;
  font-size: 2.75rem;
  margin-bottom: 3.5rem;
  color: #C8102E;
  letter-spacing: 1.5px;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-content {
  flex: 1;
  background: #fefefe;
  padding: 2.5rem 3rem;
  border-radius: 16px;
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.7;
  color: #001F3F;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 2px solid #C8102E;
}

.testimonial-text,
.testimonial-author {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial-text.slide-out-left,
.testimonial-author.slide-out-left {
  opacity: 0;
  transform: translateX(-20px);
}

.testimonial-text.slide-in-right,
.testimonial-author.slide-in-right {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-author {
  margin-top: 1.5rem;
  font-weight: 600;
  font-style: normal;
  font-size: 1.1rem;
  color: #C8102E;
  letter-spacing: 0.6px;
}

.testimonial-btn {
  background: transparent;
  border: 2px solid #C8102E;
  padding: 0.4rem 0.65rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.testimonial-btn svg {
  stroke: #C8102E;
  width: 18px;
  height: 18px;
  transition: stroke 0.3s ease;
}

.testimonial-btn:hover {
  background-color: #C8102E;
  color: #fff;
  transform: scale(1.15);
}

.testimonial-btn:hover svg {
  stroke: #fff;
}

.testimonial-btn:focus {
  outline: 2px solid #001F3F;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  .testimonial-content {
    padding: 2rem 1.5rem;
    font-size: 1.2rem;
    min-height: auto;
  }

  .testimonial-author {
    font-size: 1rem;
    margin-top: 1.25rem;
  }

  .testimonial-btn {
    width: 34px;
    height: 34px;
  }

  .testimonial-btn svg {
    width: 16px;
    height: 16px;
  }

  .section-title {
    font-size: 2.1rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 480px) {
  .testimonial-content {
    font-size: 1.05rem;
    padding: 1.75rem 1.25rem;
  }

  .testimonial-author {
    font-size: 0.95rem;
  }

  .testimonial-btn {
    width: 32px;
    height: 32px;
  }

  .testimonial-btn svg {
    width: 14px;
    height: 14px;
  }

  .section-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
}

.faq-section {
  background: #fff;
  color: #001F3F;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
}

.container {
  max-width: 700px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #C8102E;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: none;
  font-feature-settings: "liga" 1; /* clean letter spacing */
}

.faq-item {
  border-radius: 14px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fdfdfd, #f5f7fa);
  box-shadow: 0 4px 12px rgb(200 200 200 / 0.1);
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 28px;
  font-size: 1.35rem;
  font-weight: 600;
  color: #001F3F;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 14px;
  transition: color 0.35s ease;
  text-transform: none;
  user-select: none;
}

.faq-question:hover {
  color: #C8102E;
}

.arrow {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  stroke: #C8102E;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #3a3a3a;
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s ease,
              transform 0.5s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* enough for content */
  opacity: 1;
  transform: translateY(0);
  padding-top: 18px;
}

/* subtle elegant underline on active question */
.faq-item.active .faq-question {
  box-shadow: inset 0 -3px 0 0 #C8102E;
}

.wedding-services {
  background: #fff;
  color: #001F3F;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
}

.wedding-services .section-title {
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: #C8102E;
}

.cards-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: #f9f9f9;
  border-radius: 15px;
  overflow: hidden;
  width: 320px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 0 transparent; /* no shadow per your vibe */
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #C8102E;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #001F3F;
}

.card-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 25px;
}
.btn-primary {
  background-color: #C8102E;
  border: none;
  padding: 12px 28px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
  background-color: #900000;
}

.founder-section {
  background: #fff;
  color: #001F3F;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
}

.founder-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.founder-photo img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #C8102E;
  transition: transform 0.4s ease;
}

.founder-photo img:hover {
  transform: scale(1.05);
}

.founder-text {
  flex: 1;
  max-width: 520px;
}

.founder-text h2 {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.founder-name {
  font-weight: 600;
  font-size: 1.4rem;
  color: #C8102E;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.founder-title {
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #555;
}

.founder-bio {
  font-weight: 400;
  line-height: 1.7;
  font-size: 1rem;
  color: #333;
  margin-bottom: 24px;
}

.btn-primary {
  background-color: #C8102E;
  border: none;
  padding: 12px 28px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
  background-color: #900000;
}
@media (max-width: 1024px) {
  .testimonial-wrapper {
    flex-direction: column;
    padding: 0 2rem;
    gap: 2rem;
  }

  .testimonial-content {
    padding: 2rem;
    font-size: 1.25rem;
    min-height: auto;
  }

  .testimonial-author {
    font-size: 1rem;
    margin-top: 1.25rem;
  }

  .testimonial-btn {
    width: 34px;
    height: 34px;
  }

  .testimonial-btn svg {
    width: 16px;
    height: 16px;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .testimonial-content {
    font-size: 1.15rem;
    padding: 1.75rem 1.5rem;
  }

  .testimonial-author {
    font-size: 0.95rem;
  }

  .testimonial-btn {
    width: 32px;
    height: 32px;
  }

  .testimonial-btn svg {
    width: 14px;
    height: 14px;
  }

  .section-title {
    font-size: 2.1rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1.2px;
  }
}

@media (max-width: 480px) {
  .testimonial-content {
    font-size: 1.05rem;
    padding: 1.5rem 1.25rem;
  }

  .testimonial-author {
    font-size: 0.9rem;
  }

  .testimonial-btn {
    width: 30px;
    height: 30px;
  }

  .testimonial-btn svg {
    width: 13px;
    height: 13px;
  }

  .section-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
}

.subscribe-banner {
  position: relative;
  background: url('https://images.pexels.com/photos/3783471/pexels-photo-3783471.jpeg?auto=compress&cs=tinysrgb&w=600') center/cover no-repeat;
  padding: 80px 20px;
  color: white;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
  border-radius: 12px;
  max-width: 900px;
  margin: 60px auto;
  box-shadow: 0 0 40px rgba(0, 31, 63, 0.5);
}

.subscribe-banner .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 31, 63, 0.75);
  border-radius: 20px;
  z-index: 1;
}

.subscribe-banner .content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.subscribe-banner h2 {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 0.3rem;
  letter-spacing: 1.2px;
}

.subscribe-banner p {
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  color: #ccc;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  color: white;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-youtube {
  background-color: #C8102E;
}

.btn-youtube:hover {
  background-color: #a10b22;
}

.btn-facebook {
  background-color: #1877F2;
}

.btn-facebook:hover {
  background-color: #135ecb;
}

.btn-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.btn-instagram:hover {
  filter: brightness(0.9);
}

/* Core Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: white;
  color: #001F3F;
}

/* Section Styles */
/* Music Player Section */
.music-player-section {
  padding: 4rem 1rem;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #001F3F;
  margin-bottom: 2rem;
  font-weight: 600;
}

/* Song Selector */
.song-selector {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.song-btn {
  padding: 0.6rem 1.2rem;
  border: 2px solid #C8102E;
  background: transparent;
  color: #C8102E;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.song-btn:hover {
  background: #C8102E;
  color: #fff;
}

/* Player */
.player {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1rem;
  background: #f8f8f8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Waveform Bars */
.waveform-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 120px;
  width: 100%;
  gap: 5px;
  margin-bottom: 2rem;
}

.bar {
  width: 4px;
  background: #C8102E;
  height: 60%;
  transform-origin: bottom;
  transition: transform 0.2s ease;
  border-radius: 10px;
}

/* Play/Pause Button */
#playBtn {
  position: absolute;
  top: 87%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  padding: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease, background 0.3s ease;
}

#playBtn:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(255, 255, 255, 1);
}

#playBtn svg {
  width: 32px;
  height: 32px;
  fill: #C8102E;
}
.contact-call-section {
  background: #FAFAFC; /* Very light background with a hint of coolness */
  padding: 5rem 2rem;
  text-align: center;
  border-top: 1px solid #E3E6EB;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.03);
}

.call-title {
  font-size: 2.4rem;
  color: #001F3F;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  position: relative;
  display: inline-block;
}

.call-title::after {
  content: '';
  display: block;
  height: 3px;
  width: 48px;
  background: #C8102E;
  margin: 0.8rem auto 0;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.call-title:hover::after {
  width: 64px;
}

.call-description {
  font-size: 1.15rem;
  color: #4A4F55;
  max-width: 620px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  padding: 0 1.2rem;
}

.call-now-button {
  display: inline-block;
  font-size: 1.2rem;
  padding: 1rem 2.8rem;
  color: #fff;
  background: linear-gradient(to right, #C8102E, #a30d22);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.35s ease;
  box-shadow: 0 12px 24px -6px rgba(200, 16, 46, 0.35);
  position: relative;
}

.call-now-button:hover {
  background: linear-gradient(to right, #a30d22, #C8102E);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -6px rgba(200, 16, 46, 0.45);
}

.call-now-button:active {
  transform: scale(0.98);
}

/* Responsive */
@media (max-width: 600px) {
  .call-title {
    font-size: 1.9rem;
  }

  .call-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .call-now-button {
    font-size: 1.05rem;
    padding: 0.85rem 2.2rem;
  }
}

.site-footer {
  background-color: #001F3F; /* deep navy */
  color: #E6E8EA; /* soft off-white */
  padding: 4rem 2rem 2rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-align: center;
  letter-spacing: 0.04em;
  position: relative;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.footer-logo h3 {
  font-size: 2rem;
  margin-bottom: 0.3rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  user-select: none;
}

.footer-logo p {
  font-size: 1rem;
  color: #BFC3C7; /* lighter grey */
  max-width: 360px;
  line-height: 1.5;
  margin: 0 auto;
  user-select: none;
}

.footer-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
}

.footer-links,
.footer-socials {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #D3D6DA;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #C8102E;
  border-color: #C8102E;
  outline: none;
}

.footer-socials a {
  color: #D3D6DA;
  font-size: 1.6rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-socials a:hover,
.footer-socials a:focus {
  color: #C8102E;
  outline: none;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.2rem;
  font-size: 0.9rem;
  color: #8A8E93;
  letter-spacing: 0.08em;
  font-weight: 400;
  border-top: 1px solid #22354A; /* subtle line */
  user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer-links,
  .footer-socials {
    gap: 1.4rem;
  }

  .footer-logo h3 {
    font-size: 1.6rem;
  }

  .footer-logo p {
    font-size: 0.9rem;
  }

  .footer-links a {
    font-size: 0.95rem;
  }

  .footer-socials a {
    font-size: 1.3rem;
  }
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height:60px;
}

.logo img {
  height: 100%;
  max-height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.logo img:hover {
  opacity: 0.9;
}
.quote-of-the-day {
  background: #ffffff;
  color: #001F3F;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Georgia', serif;
  position: relative;
}

.quote-of-the-day blockquote {
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 10px;
}

.quote-of-the-day cite {
  font-size: 1rem;
  color: #C8102E;
  display: block;
  margin-top: 10px;
}
.pse-radio-west {
  position: relative;
  background: #ffffff;
  color: #111;
  padding: 8rem 2rem;
  text-align: center;
  overflow: hidden;
}

.pse-radio-west .background-overlay::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(200,16,46,0.1) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
  z-index: 0;
}

.pse-radio-west .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.pse-radio-west .title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.pse-radio-west .title span {
  color: #C8102E;
}

.pse-radio-west .lead-paragraph {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #333;
}

.pse-radio-west .highlight {
  font-size: 1.1rem;
  font-weight: 500;
  color: #C8102E;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
}
/* Pulse of Radio West */
.pulsee-section {
  background-color: #001F3F;
  color: #fff;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pulsee-container {
  z-index: 2;
}

.pulse-circlee {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: radial-gradient(circle, #C8102E 20%, transparent 70%);
  animation: pulse 2.2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(200, 16, 46, 0.4);
}

.pulse-circlee img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.pulsee-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 10px 0 0;
  color: #ffffff;
}

.pulsee-sub {
  font-size: 1rem;
  font-weight: 300;
  color: #ddd;
  letter-spacing: 0.5px;
}

/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(200, 16, 46, 0.4);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 70px rgba(200, 16, 46, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(200, 16, 46, 0.4);
  }
}

