:root {
  --gold: #d4af37;
  --gold-gradient: linear-gradient(
    135deg,
    #bf953f 0%,
    #fcf6ba 45%,
    #b38728 100%
  );
  --dark-bg: #050505;
  --glass: rgba(15, 15, 15, 0.7);
  --white: #ffffff;
  --grey: #1a1a1a;
  --soft-gold: #c5a059;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
}

/* Navbar - Mobile Optimized */
.navbar-container {
  position: fixed;
  top: 15px;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
}
.navbar-curved {
  background: var(--glass);
  backdrop-filter: blur(20px);
  width: 90%;
  max-width: 1200px;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}
.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}
.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}
.btn-nav {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  white-space: nowrap;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 5%;
    width: 90%;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 10px 0;
  }
  .mobile-menu-btn {
    display: block;
  }
  .navbar-curved {
    padding: 8px 15px;
  }
  .desktop-btn {
    display: none !important;
  }
}

/* Desktop button visible, mobile button hidden */
@media (min-width: 993px) {
  .mobile-btn-in-menu {
    display: none !important;
  }
}

/* --- NAVBAR --- */
.navbar-container {
  position: fixed;
  top: 25px;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.navbar-curved {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 85%;
  max-width: 1100px;
  padding: 10px 30px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

/* --- PREMIUM BUTTONS --- */
.btn-nav,
.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  padding: 12px 23px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
}

.btn-nav:hover,
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(191, 149, 63, 0.5);
  filter: brightness(1.1);
}

/* --- HERO SLIDER --- */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.1);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 1s ease-in-out,
    transform 4s linear;
}

.hero-content {
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out 0.3s;
}

.slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* --- HERO TEXT  --- */
.glitter-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 20px;
}

.tagline {
  color: var(--soft-gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: block;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: #ccc;
}

/* --- INDICATORS --- */
.indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.dot {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.5s;
  cursor: pointer;
}

.dot.active {
  background: var(--soft-gold);
  width: 60px;
}

/* --- MODAL / POPUP --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.modal-box {
  background: #111;
  padding: 25px;
  width: 90%;
  max-width: 550px;
  border: 1px solid var(--gold);
  position: relative;
  border-radius: 15px;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-box.show {
  /* transform: scale(1); */
  opacity: 1;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: var(--gold);
}

/* Form Styling */
.modal-box h2 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  margin-bottom: 30px;
  text-align: center;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  background: #1a1a1a;
  border: 1px solid #333;
  color: white;
  border-radius: 8px;
  outline: none;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: var(--gold);
}

.form-row {
  display: flex;
  gap: 10px;
}

.btn-submit {
  width: 100%;
  background: var(--gold-gradient);
  border: none;
  padding: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  text-transform: uppercase;
}

/* --- NEW SECTIONS --- */
.section-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.section-subtitle {
  text-align: center;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

/* About Section */
.about-section {
  padding: 33px 8%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(26, 26, 26, 0.9) 100%
  );
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Agencies Section with Auto Carousel */
.agencies-section {
  padding: 32px 8%;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.agencies-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 30%
    );
  z-index: 0;
}

.agencies-section .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.agencies-section .section-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 60px;
  color: var(--white);
}

.agencies-section .section-title span {
  color: var(--gold);
  position: relative;
}

.agencies-section .section-title span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
}

/* Swiper Carousel Container */
.agencies-carousel {
  position: relative;
  padding: 0 60px;
}

/* Swiper Custom Styling */
.swiper.agenciesSwiper {
  padding: 30px 10px 50px;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide {
  height: auto;
  opacity: 0.6;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.swiper-slide-next,
.swiper-slide-prev {
  opacity: 0.8;
  transform: scale(0.95);
}

/* Agency Slide Card */
.agency-slide {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.swiper-slide-active .agency-slide {
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* Agency Image */
.agency-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.agency-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.agency-slide:hover .agency-image img {
  transform: scale(1.1);
}

.agency-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
}

/* Agency Content */
.agency-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), #0a0a0a);
}

.agency-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 10px;
}

.agency-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.agency-slide:hover .agency-name::after {
  width: 80px;
}

.agency-location {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.agency-location i {
  font-size: 1rem;
}

.agency-desc {
  color: #aaa;
  line-height: 1.6;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: var(--gold) !important;
  background: rgba(0, 0, 0, 0.7);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--gold);
  color: #000 !important;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.swiper-button-next {
  right: 0 !important;
}

.swiper-button-prev {
  left: 0 !important;
}

/* Pagination */
.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 40px !important;
  height: 3px !important;
  border-radius: 2px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold-gradient) !important;
}

/* Events Section Styles */
.events-section {
  padding: 100px 8%;
  background: var(--dark-bg);
  position: relative;
}

.events-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

.events-section .section-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 60px;
  color: var(--white);
  position: relative;
  padding-bottom: 20px;
}

.events-section .section-title span {
  color: var(--gold);
  position: relative;
}

.events-section .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Event Card */
.event-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-15px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Event Image */
.event-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  pointer-events: none;
}

.event-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
}

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold-gradient);
  color: #000;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
}

/* Event Content */
.event-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.9),
    rgba(10, 10, 10, 1)
  );
}

.event-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.event-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.event-card:hover .event-title::after {
  width: 80px;
}

.event-desc {
  color: #aaa;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.event-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.2rem;
}

.event-btn {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.event-btn:hover {
  background: var(--gold);
  color: #000;
}

/* Services Section */
.services-section {
  padding: 32px 8%;
  background: var(--dark-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--white);
}

.service-card p {
  color: #ccc;
  line-height: 1.6;
}

/* Enhanced Process Section */
.process-section {
  padding: 32px 8%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(26, 26, 26, 0.95) 100%
  );
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 50%
    );
  z-index: 0;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.process-header p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index: 1;
}
.process-step-enhanced {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  opacity: 1 !important; /* Force visible */
  transform: translateY(0) !important; /* Force visible */
  margin-bottom: 30px;
}
.process-step-enhanced.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step-enhanced:nth-child(odd) {
  flex-direction: row;
}

.process-step-enhanced:nth-child(even) {
  flex-direction: row-reverse;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(191, 149, 63, 0.3);
}

.step-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.step-content:hover {
  border-color: var(--gold);
  transform: translateX(10px);
}

.step-number {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.step-content h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.step-content p {
  color: #aaa;
  line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
  padding: 32px 8%;
  background: #0a0a0a;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-form-container h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 10px;
}

.contact-form-container p {
  text-align: center;
  color: #ccc;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: flex;
  gap: 20px;
}

.contact-form-row .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  color: #ccc;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn-submit {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  padding: 18px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-form .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(191, 149, 63, 0.4);
}

/* footer section */

.footer {
  background: linear-gradient(135deg, #050505 0%, #0a0a0a 100%);
  padding: 0px 8% 30px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Background Effects */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(212, 175, 55, 0.03) 0%,
      transparent 20%
    );
  z-index: 0;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* Footer Content Layout */
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Brand Logo Section - Takes full width at top */
.footer-brand-section {
  grid-column: 1 / -1;
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 5px;
  color: var(--white);
}

.footer-logo span {
  color: var(--gold);
  position: relative;
}

.footer-logo span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-tagline {
  color: var(--soft-gold);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.6;
  margin: 0 auto;
}

/* Footer Social Media */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--gold-gradient);
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Footer Columns */
.footer-column {
  text-align: left;
}

.footer-column h3 {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  position: relative;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-column p,
.footer-column a {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-column i {
  color: var(--gold);
  width: 20px;
  margin-right: 10px;
  font-size: 1rem;
  text-align: center;
}

/* Newsletter Section */
.newsletter-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-top: 15px;
}

.newsletter-box p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #aaa;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: white;
  font-size: 0.9rem;
  width: 100%;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter-form button {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: #888;
  font-size: 0.9rem;
  flex: 1;
  min-width: 200px;
}

.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--gold);
}

/* Payment Methods */
.payment-methods {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1;
  min-width: 200px;
}

.payment-methods i {
  color: #666;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.payment-methods i:hover {
  color: var(--gold);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 0px 5% 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo {
    font-size: 2rem;
  }

  .footer-tagline {
    font-size: 1rem;
    padding: 0 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .copyright,
  .footer-links,
  .payment-methods {
    width: 100%;
    justify-content: center;
  }

  .payment-methods {
    justify-content: center;
    margin-top: 10px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 0px 5% 25px;
  }

  .footer-logo {
    font-size: 1.8rem;
    letter-spacing: 3px;
  }

  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 0.9rem;
  }

  .footer-links {
    gap: 15px;
  }

  .footer-social {
    flex-wrap: wrap;
  }
}

/*  Chat Widget Icons  */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.chat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.chat-icon.whatsapp {
  background: #25d366;
  color: white;
}

.chat-icon.telegram {
  background: #0088cc;
  color: white;
}

.chat-icon.email {
  background: var(--gold-gradient);
  color: #000;
}

.chat-icon.phone {
  background: #34b7f1;
  color: white;
}

.chat-icon:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.chat-toggle {
  background: var(--gold-gradient);
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.chat-toggle:hover {
  transform: scale(1.1);
}

.chat-icons.hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content,
  .process-step-enhanced {
    flex-direction: column !important;
    gap: 20px;
    text-align: center;
  }
  .process-step-enhanced:nth-child(odd),
  .process-step-enhanced:nth-child(even) {
    flex-direction: column !important;
  }

  .process-timeline::before {
    left: 30px;
  }

  .step-content {
    width: 100%;
  }
  .process-step-enhanced {
    transition: all 0.6s ease;
  }

  .process-step-enhanced.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .navbar-curved {
    width: 95%;
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .process-step-enhanced:nth-child(odd),
  .process-step-enhanced:nth-child(even) {
    flex-direction: column;
  }

  .contact-form-row {
    flex-direction: column;
    gap: 0;
  }

  .chat-icons {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .chat-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .modal-box,
  .contact-form-container {
    padding: 30px 20px;
    width: 95%;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .chat-widget {
    bottom: 20px;
    right: 20px;
  }

  .agencies-carousel {
    padding: 0 40px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  .agency-content {
    padding: 20px;
  }

  .agency-name {
    font-size: 1.3rem;
  }

  .agency-image {
    height: 150px;
  }

  .events-section {
    padding: 60px 5%;
  }

  .events-section .section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .event-image {
    height: 200px;
  }

  .event-content {
    padding: 20px;
  }

  .event-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .agencies-carousel {
    padding: 0 20px;
  }

  .process-header h2 {
    font-size: 2.5rem;
  }

  .chat-icons {
    gap: 10px;
  }

  .chat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .chat-toggle {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* Animation for event cards on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.event-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Stagger animation for grid items */
.event-card:nth-child(1) {
  animation-delay: 0.1s;
}
.event-card:nth-child(2) {
  animation-delay: 0.2s;
}
.event-card:nth-child(3) {
  animation-delay: 0.3s;
}
.event-card:nth-child(4) {
  animation-delay: 0.4s;
}
.event-card:nth-child(5) {
  animation-delay: 0.5s;
}
.event-card:nth-child(6) {
  animation-delay: 0.6s;
}
.event-card:nth-child(7) {
  animation-delay: 0.7s;
}
.event-card:nth-child(8) {
  animation-delay: 0.8s;
}
.event-card:nth-child(9) {
  animation-delay: 0.9s;
}

/* Decorative Elements */
.agencies-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
  z-index: 0;
}

/* Floating Support Button */
.support-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #bf953f 100%);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
}

.support-floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.support-floating-btn i {
  animation: support-pulse 2s infinite;
}

@keyframes support-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Support Popup Overlay - Bottom Right Positioning */
.support-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  pointer-events: none;
}

.support-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Support Popup Card  Bottom Right Corner */
.support-popup {
  width: 100%;
  max-width: 380px;
  background: #111;
  border-radius: 20px 20px 0 20px;
  overflow: hidden;
  transform: translateY(100px) scale(0.9);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--gold);
  position: relative;
  margin-bottom: 90px;
  margin-right: 10px;
  pointer-events: auto;
}

.support-overlay.active .support-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.support-popup::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid var(--gold);
}

/* Popup Header - Celebtown Theme */
.support-header {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #0a0a0a 100%);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gold);
}

.support-logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-placeholder {
  width: 45px;
  height: 45px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
}

.support-title h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-align: left;
}

.support-title p {
  font-size: 0.8rem;
  color: #aaa;
  text-align: left;
}

.close-popup {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-popup:hover {
  background: var(--gold);
  color: #000;
  transform: rotate(90deg);
}

/* Popup Content */
.support-content {
  padding: 25px;
}

.support-greeting h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
  text-align: left;
}

.support-greeting p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: left;
}

/* Start Chat Button - Celebtown Style */
.start-chat-btn {
  width: 100%;
  background: var(--gold-gradient);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  margin-bottom: 20px;
}

.start-chat-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

.start-chat-btn i {
  font-size: 1.1rem;
}

/* Contact Options */
.contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.contact-options.show {
  max-height: 150px;
}

.contact-option {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.contact-option:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  transform: translateY(-5px);
}

/* All icons use gold theme color */
.contact-icon {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--gold) !important;
}

.contact-option.whatsapp:hover .contact-icon,
.contact-option.telegram:hover .contact-icon,
.contact-option.email:hover .contact-icon {
  color: #000 !important;
}

.contact-option:hover {
  background: var(--gold-gradient);
  color: #000;
}

.contact-name {
  font-size: 0.85rem;
  font-weight: 500;
}

/* Instructions */
.instructions {
  margin-top: 20px;
  color: #888;
  font-size: 0.8rem;
  line-height: 1.6;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

.instructions i {
  color: var(--gold);
  margin-right: 6px;
}

/* Responsive Design for Support Popup */
@media (max-width: 768px) {
  .support-overlay {
    padding: 15px;
    align-items: flex-end;
    justify-content: center;
  }

  .support-popup {
    max-width: 350px;
    margin-bottom: 80px;
    margin-right: 0;
    border-radius: 20px 20px 0 20px;
  }

  .support-popup::after {
    right: 50%;
    transform: translateX(50%);
  }

  .support-header {
    padding: 18px 20px;
  }

  .support-content {
    padding: 20px;
  }

  .contact-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-options.show {
    max-height: 280px;
  }

  .contact-option {
    flex-direction: row;
    justify-content: flex-start;
    padding: 15px 18px;
    gap: 12px;
  }

  .contact-icon {
    margin-bottom: 0;
    font-size: 22px;
  }

  .support-floating-btn {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .support-popup {
    max-width: 320px;
    margin-bottom: 70px;
  }

  .support-header {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .support-logo-area {
    justify-content: center;
  }

  .support-title h3,
  .support-title p {
    text-align: center;
  }

  .support-greeting h2 {
    font-size: 1.4rem;
  }

  .start-chat-btn {
    padding: 14px;
    font-size: 0.95rem;
  }

  .instructions {
    font-size: 0.75rem;
    padding: 10px;
  }
}

.chat-widget {
  display: none !important;
}

/* For extra small screens */
@media (max-width: 360px) {
  .support-popup {
    max-width: 300px;
  }

  .support-content {
    padding: 18px;
  }

  .contact-option {
    padding: 12px 15px;
  }
}

/* Select dropdown options styling - Black text on white background */
select option {
  background-color: white !important;
  color: black !important;
}

select option:hover,
select option:focus,
select option:checked,
select option:selected {
  background-color: #f0f0f0 !important;
  color: black !important;
}

select::-webkit-scrollbar {
  width: 10px;
}

select::-webkit-scrollbar-track {
  background: #f1f1f1;
}

select::-webkit-scrollbar-thumb {
  background: #888;
}

select::-webkit-scrollbar-thumb:hover {
  background: #555;
}

select {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

/* Date picker icon styling for ALL forms */
.contact-form input[type="date"]::-webkit-calendar-picker-indicator,
.modal-box input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(100%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator:hover,
.modal-box input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.contact-form input[type="date"],
.modal-box input[type="date"] {
  color-scheme: dark;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator,
.modal-box input[type="date"]::-webkit-calendar-picker-indicator {
  filter: sepia(1) saturate(5) hue-rotate(5deg);
}

/* Ensure modal works well on mobile */
@media (max-width: 768px) {
  .modal-box {
    width: 95%;
    margin: 10px;
    padding: 20px;
  }

  .modal-box h2 {
    font-size: 1.5rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Fix for very small screens */
@media (max-width: 360px) {
  .navbar-curved {
    padding: 6px 10px;
  }

  .logo {
    font-size: 0.9rem;
  }

  .btn-nav {
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .support-popup {
    max-width: 98%;
  }
}

/*  FEATURED DEVOTIONAL ARTISTS  */
.featured-artists-section {
  padding: 33px 8%;
  background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
  position: relative;
}

.artists-showcase {
  display: grid;
  grid-template-columns: repeat(4, 4fr);
  gap: 40px;
  margin: 60px 0 40px;
}

.artist-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.artist-card:hover {
  transform: translateY(-15px);
  border-color: var(--gold);
  box-shadow: 0 30px 50px rgba(212, 175, 55, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.artist-image {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.artist-card:hover .artist-image img {
  transform: scale(1.1);
}

.artist-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gold-gradient);
  color: #000;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.artist-details {
  padding: 30px;
}

.artist-details h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 5px;
}

.artist-genre {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.artist-desc {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 25px;
}

.artists-cta {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 15px;
  border: 1px dashed var(--gold);
}

.artists-cta p {
  color: var(--soft-gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .artists-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .artist-image {
    height: 250px;
  }
}
/*  Why Choose Section */
.why-choose-section {
  padding: 32px 8%;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.feature-card:hover::before {
  transform: translateX(0);
}

.feature-icon {
  position: relative;
  margin-bottom: 25px;
}

.feature-icon i {
  font-size: 3rem;
  color: var(--gold);
  background: linear-gradient(135deg, #d4af37, #bf953f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-stat {
  position: absolute;
  top: -33px;
  right: 28%;
  background: var(--gold-gradient);
  color: #000;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.feature-card p {
  color: #aaa;
  line-height: 1.6;
}

/*  Celebrity Roster Section */
.celebrity-roster-section {
  padding: 32px 8%;
  background: var(--dark-bg);
}

.roster-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #ccc;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.celebrity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 50px 0;
}

.celebrity-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.celebrity-card:hover {
  transform: translateY(-15px);
  border-color: var(--gold);
  box-shadow: 0 30px 50px rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.celebrity-image {
  height: 350px;
  position: relative;
  overflow: hidden;
}

.celebrity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.celebrity-card:hover .celebrity-image img {
  transform: scale(1.1);
}

.celebrity-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold-gradient);
  color: #000;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.celebrity-details {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.celebrity-details h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 5px;
}

.celebrity-title {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.celebrity-desc {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.roster-cta {
  text-align: center;
  margin-top: 50px;
  padding: 10px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 20px;
  border: 1px dashed var(--gold);
}

.roster-cta p {
  color: var(--soft-gold);
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 500;
}

/* About Section Stats */
.about-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
}

.stat-label {
  color: #ccc;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .celebrity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .celebrity-grid {
    grid-template-columns: 1fr;
  }

  .roster-filters {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }

  .filter-btn {
    width: 100%;
  }

  .celebrity-image {
    height: 300px;
  }
}
/* Coming Soon Message */
.coming-soon-message {
  text-align: center;
  padding: 80px 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 2px dashed var(--gold);
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-message i {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.coming-soon-message h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.coming-soon-message p {
  color: #aaa;
  font-size: 1.2rem;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive for coming soon */
@media (max-width: 768px) {
  .coming-soon-message {
    padding: 50px 20px;
  }

  .coming-soon-message h3 {
    font-size: 1.8rem;
  }

  .coming-soon-message p {
    font-size: 1rem;
  }

  .coming-soon-message i {
    font-size: 3rem;
  }
}
/* No Results / Coming Soon Message */
.no-results-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 2px dashed var(--gold);
  margin: 20px 0;
}

.coming-soon-message i {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.coming-soon-message h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.coming-soon-message p {
  color: #aaa;
  font-size: 1.2rem;
  max-width: 500px;
  margin: 0 auto;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .coming-soon-message h3 {
    font-size: 1.8rem;
  }
  .coming-soon-message p {
    font-size: 1rem;
  }
}
/*  HOLI FLOATING OFFER ICON  */
.holi-float-offer {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 9999;
  cursor: pointer;
  animation: holiFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(212, 175, 55, 0.4));
}

@keyframes holiFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.holi-offer-badge {
  background: linear-gradient(135deg, #ff4d4d, #ff8c4d, #ffd700);
  border-radius: 60px 60px 60px 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(255, 68, 68, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.6);
  backdrop-filter: blur(5px);
  position: relative;
}

.new-badge {
  position: absolute;
  top: -8px;
  left: -8px;
  background: #ff3333;
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 0 2px #ffd700;
  animation: blinkNew 1s infinite;
}

@keyframes blinkNew {
  0%,
  100% {
    background: #ff3333;
    box-shadow: 0 0 0 2px #ffd700;
    transform: scale(1);
  }
  50% {
    background: #ff0000;
    box-shadow: 0 0 15px 5px #ffaa00;
    transform: scale(1.1);
  }
}

.holi-icon {
  font-size: 2.2rem;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
  animation: rotateColors 5s infinite;
}

@keyframes rotateColors {
  0% {
    filter: hue-rotate(0deg) drop-shadow(0 0 10px gold);
  }
  33% {
    filter: hue-rotate(30deg) drop-shadow(0 0 15px #ff4d4d);
  }
  66% {
    filter: hue-rotate(60deg) drop-shadow(0 0 15px #4dff4d);
  }
  100% {
    filter: hue-rotate(0deg) drop-shadow(0 0 10px gold);
  }
}

.holi-text {
  display: flex;
  flex-direction: column;
}

.holi-text .main-text {
  font-size: 1.1rem;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff, #ffeb99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.holi-text .sub-text {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.pulse-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 70px 70px 70px 20px;
  border: 3px solid transparent;
  background: linear-gradient(135deg, #ff4d4d, #ffd700) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: pulseRing 1.5s infinite;
  opacity: 0.6;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/*  HOLI POPUP MODAL - FIXED SIZE */
.holi-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.holi-popup-overlay.active {
  display: flex;
  opacity: 1;
}

.holi-popup-content {
  width: auto;
  max-width: 95vw;
  max-height: 95vh;
  position: relative;
  transform: scale(0.8);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .holi-popup-overlay.active .holi-popup-content {
    transform: scale(1);
} */

.holi-popup-banner {
  /* width: auto;
  height: auto; */
  max-width: 90vw;
  max-height: 85vh;
  width: 450px;
  height: 2048px;
  object-fit: contain;
  border-radius: 30px;
  box-shadow:
    0 30px 60px rgba(212, 175, 55, 0.5),
    0 0 0 4px #ffd700,
    0 0 50px #ff4d4d;
  border: 2px solid gold;
}

@media (max-width: 1400px) {
  .holi-popup-banner {
    width: 1000px;
    height: 1500px;
  }
}

@media (max-width: 1100px) {
  .holi-popup-banner {
    width: 800px;
    height: 1200px;
  }
}

@media (max-width: 900px) {
  .holi-popup-banner {
    width: 600px;
    height: 900px;
  }
}

@media (max-width: 700px) {
  .holi-popup-banner {
    width: 450px;
    height: 675px;
  }
}

@media (max-width: 500px) {
  .holi-popup-banner {
    width: 350px;
    height: 525px;
  }
}

.holi-popup-close {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ff4d4d);
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow:
    0 5px 25px rgba(0, 0, 0, 0.7),
    0 0 20px gold;
  transition: all 0.4s ease;
  z-index: 10;
}

.holi-popup-close:hover {
  transform: rotate(180deg) scale(1.2);
  background: #ff3333;
  color: white;
  box-shadow: 0 0 30px red;
}

/* Confetti animation */
.holi-confetti {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 30px;
}

.holi-confetti span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ff4d4d;
  opacity: 0;
  animation: confetti 4s ease-in infinite;
}

@keyframes confetti {
  0% {
    transform: translateY(-100%) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(1000%) rotate(720deg);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .holi-float-offer {
    bottom: 90px;
    right: 15px;
  }

  .holi-offer-badge {
    padding: 8px 12px;
  }

  .holi-icon {
    font-size: 1.8rem;
  }

  .holi-text .main-text {
    font-size: 0.9rem;
  }

  .holi-text .sub-text {
    font-size: 0.7rem;
  }

  .holi-popup-close {
    top: -20px;
    right: -20px;
    width: 45px;
    height: 45px;
    font-size: 24px;
  }

  .holi-popup-banner {
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .holi-popup-close {
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* Footer Logo */
.footer-logo {
  margin-bottom: 15px;
}

.footer-logo-img {
  width: 180px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Tablet */
@media (max-width: 992px) {
  .footer-logo-img {
    width: 160px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-logo-img {
    width: 140px;
    margin: auto;
  }

  .footer-brand {
    text-align: center;
  }
}
.footer-logo-img {
  width: 180px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}