/* ========== VIP BAND - COMPLETE CSS ========== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fdfefe;
  color: #2c2c2c;
  position: relative;
}

/* ===== CORNER DESIGN ===== */
.corner-shape {
  position: fixed;
  top: -140px;
  right: -140px;
  width: 280px;
  height: 280px;
  background: #eef5ff;
  border-radius: 50%;
  z-index: -1;
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 25px;
  position: sticky;
  top: 0;
  background: rgba(253, 254, 254, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0.10px 0.9px #000;
}

.logo {
  font-size: 18px;
  font-weight: 600;
  color: #c9a227;
}

/* ===== MENU ICON (3 LINE) ===== */
.menu-icon {
  width: 28px;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  height: 3px;
  background: #2c2c2c;
  margin: 3px 0;
  border-radius: 10px;
}

/* ===== POPUP MENU ===== */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.3);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.menu-box {
  background: #fff;
  width: 260px;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.menu-box a {
  display: block;
  margin: 15px 0;
  text-decoration: none;
  color: #2c2c2c;
  font-size: 16px;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  cursor: pointer;
  color: #999;
  font-size: 20px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  text-align: center;
  padding: 30px 20px 50px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ===== BUTTONS ===== */
.button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.btn {
  background: #c9a227;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #b59220;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
  background: #4a6fa5;
}

.btn-secondary:hover {
  background: #3a5a8c;
}

/* ===== SECTIONS ===== */
.section {
  padding: 60px 25px;
  text-align: center;
}

.section h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.light {
  background: #eef5ff;
}

/* ===== SERVICES CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  font-size: 13px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  cursor: pointer;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,.1);
}

.card i {
  font-size: 24px;
  color: #c9a227;
  margin-bottom: 10px;
}

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* ===== LINKS ===== */
a {
  color: #c9a227;
  text-decoration: none;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #777;
  background: #f9f9f9;
}

/* ===== BOOKING PAGE ===== */
.booking-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10000;
  overflow-y: auto;
  display: none;
}

.booking-page.active {
  display: block;
}

.booking-page-header {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 2px;
  box-shadow: 0.10px 0.9px #7777;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 15px;
}

.booking-page-content {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.booking-items {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #9999;
  margin-bottom: 20px;
  min-height: 100px;
}

.booking-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.booking-item:last-child {
  border-bottom: none;
}

.item-name {
  font-weight: 500;
}

.item-details {
  display: flex;
  align-items: center;
  gap: 15px;
}

.item-quantity {
  background: #eef5ff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.item-price {
  font-weight: 600;
  color: #c9a227;
}

.remove-item {
  background: #ff6b6b;
  color: white;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
}

.empty-booking {
  text-align: center;
  color: #999;
  font-style: italic;
}

/* ===== BOOKING SUMMARY BOX ===== */
.booking-total {
  background: #fff;
  border: 1.5px solid #7777;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,.05);
}

.total-details {
  margin: 20px 0;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 10px;
}

.total-price {
  font-size: 20px;
  font-weight: 600;
  color: #c9a227;
  margin-top: 10px;
}

/* ===== ADVANCE PAYMENT TEXT ===== */
.advance-text {
  font-size: 11px;
  color: #666;
  text-align: center;
  margin: 5px 0 10px 0;
  font-style: italic;
}

/* ===== UPI PAYMENT BUTTON ===== */
.btn-upi {
  background: #4f6d7a;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  margin: 10px 0;
  text-align: center;
}

.btn-upi i {
  margin-right: 8px;
  font-size: 16px;
}

.btn-upi:hover {
  background: #3a5a6b;
  transform: translateY(-2px);
}

/* ===== TRUSTED WEBSITE TEXT ===== */
.trusted-website {
  font-size: 12px;
  font-family: 'Times New Roman', serif;
  text-align: center;
  color: #888;
  margin: 5px 0 15px 0;
  letter-spacing: 1px;
  font-weight: normal;
}

.btn-confirm {
  background: #28a745;
  width: 100%;
  margin: 10px 0;
}

.btn-confirm:hover {
  background: #218838;
}

/* ===== SERVICE PAGES ===== */
#service-pages {
  display: none;
}

.service-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10000;
  overflow-y: auto;
  display: none;
}

.service-page.active {
  display: block;
}

.service-page-header {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 2px;
  box-shadow: 0.10px 0.9px #7777;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 15px;
}

.back-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #333;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: #f5f5f5;
}

.service-content {
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1px;
}

/* ===== CAROUSEL STYLES ===== */
.carousel {
  width: 100%;
  position: relative;
}

.carousel-images {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: 20px;
}

/* Normal scroll speed */
.carousel.normal-scroll .carousel-images {
  scroll-behavior: smooth;
}

.carousel-images::-webkit-scrollbar {
  display: none;
}

.carousel-images img {
  width: 100%;
  flex-shrink: 0;
  scroll-snap-align: start;
  object-fit: cover;
  height: 400px;
  border-radius: 20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #c9a227;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #c9a227;
}

/* ===== PACKAGE DESCRIPTION STYLES ===== */
.package-description {
  display: none;
  margin: 10px 0;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 3px solid #c9a227;
}

.package-description.active {
  display: block;
}

/* ===== SINGLE IMAGE CAROUSEL ===== */
.carousel-images.single-image {
  overflow: hidden;
}

.carousel-images.single-image img {
  width: 100%;
}

/* ===== COMPACT DATE/TIME INSIDE BOOKING ITEMS BOX ===== */
.compact-datetime {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed #ddd;
  font-size: 12px;
}

.compact-date, .compact-time {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 3px 8px;
  border: 1px solid #e0e0e0;
}

.compact-date i, .compact-time i {
  color: #c9a227;
  font-size: 12px;
  margin-right: 4px;
}

.compact-input {
  border: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  padding: 4px 0;
  width: 90px;
  color: #333;
}

.compact-input:focus {
  outline: none;
}

.compact-display {
  font-size: 11px;
  color: #666;
  margin-top: 8px;
  padding-left: 5px;
  font-style: italic;
}

.compact-display i {
  color: #c9a227;
  margin-right: 5px;
  font-size: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .carousel-images img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .carousel-images img {
    height: 250px;
  }
  
  .compact-datetime {
    flex-wrap: wrap;
  }
  
  .compact-date, .compact-time {
    flex: 1;
  }
  
  .compact-input {
    width: 100%;
  }
}

/* Single unit quantity control */
.quantity-control.single-unit {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
}

.quantity-control.single-unit .single-note {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.service-details {
  padding: 2px;
}

.service-details h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.service-details p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.price-section {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 15px;
  border: 1.5px solid #7777;
  margin-top: 30px;
}

.price {
  font-size: 22px;
  font-weight: 600;
  color: #c9a227;
  margin-bottom: 20px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.quantity-control button {
  background: #eef5ff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  color: #333;
}

.quantity-control input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
}

.max-note, .single-note {
  font-size: 12px;
  color: #666;
  margin-left: 10px;
}

.btn-add-to-cart {
  background: #c9a227;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  margin-top: 20px;
}

.btn-add-to-cart:hover {
  background: #b59220;
  transform: translateY(-2px);
}

/* Rath page specific */
#rath-name {
  color: #c9a227;
  transition: all 0.3s ease;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 768px) {
  header {
    padding: 20px 80px;
  }
  
  .hero {
    padding: 40px 20px 60px;
  }
  
  .hero-image {
    max-width: 700px;
  }
  
  .button-group {
    gap: 20px;
  }
  
  .btn {
    padding: 14px 30px;
    font-size: 16px;
  }
  
  .section {
    padding: 80px 120px;
  }
  
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
  
  .card {
    padding: 30px 20px;
    font-size: 14px;
  }
  
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .gallery img {
    height: 220px;
  }
  
  .service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  
  .service-image {
    height: auto;
    margin-bottom: 0;
  }
  
  .booking-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
  }
  
  .booking-items {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 20px 15px 40px;
  }
  
  .hero-image {
    margin-bottom: 20px;
  }
  
  .button-group {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn {
    width: 100%;
    padding: 10px 20px;
  }
  
  .section {
    padding: 40px 20px;
  }
  
  .gallery img {
    height: 160px;
  }
  
  .service-image {
    height: auto;
  }
  
  .service-details h3 {
    font-size: 22px;
  }
  }
