
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      background: #fef7e8;
      scroll-behavior: smooth;
    }
    /* color theme : gold + deep red + white */
    :root {
      --primary-gold: #004813;
      --dark-red: #004512;
      --light-red: #b22222;
      --dark-bg: #1e1a0c;
      --light-gold-bg: #fffae6;
    }
    .navbar {
      background: white;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      border-bottom: 3px solid var(--primary-gold);
      padding:0;
    }
    .navbar-brand img {
        width: 85px;
    }
    .footer_logo {
        width: 85px;
    }
    .nav-link {
      font-weight: 600;
      color: #333 !important;
      transition: 0.3s;
    }
   /* .nav-link:hover, .nav-link.active {
      color: var(--dark-red) !important;
      border-bottom: 2px solid var(--primary-gold);
    }*/
    .btn-gold {
      background: #004813;
      color: white;
      font-weight: bold;
      border: none;
      padding: 8px 20px;
      border-radius: 40px;
      transition: 0.3s;
    }
    .btn-gold:hover {
      background: #c5a028;
      color: #000;
      transform: translateY(-2px);
    }
    .btn-red {
      background: var(--dark-red);
      color: white;
      font-weight: bold;
      border: none;
      border-radius: 40px;
      padding: 10px 24px;
    }
    .btn-red:hover {
      background: #9b1e1e;
    }
    .hero {
      background: linear-gradient(135deg, #1a1303 0%, #2c2412 100%);
      color: white;
      padding: 70px 0;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: 800;
    }
    .gold-text {
      color: var(--primary-gold);
    }
    .card-lottery {
      border: none;
      border-radius: 24px;
      background: white;
      box-shadow: 0 15px 30px rgba(0,0,0,0.07);
      transition: all 0.3s ease;
      overflow: hidden;
    }
    .card-lottery:hover {
      transform: translateY(-6px);
      box-shadow: 0 25px 40px rgba(0,0,0,0.12);
    }
    
    .section-title {
      border-left: 6px solid var(--primary-gold);
      padding-left: 20px;
      margin-bottom: 40px;
      font-weight: 800;
    }
    .winner-card {
      background: linear-gradient(145deg, #fff7e8, #fff);
      border-left: 5px solid #004813;
      text-align:center;
    }
    .winner-card img {
            width: 100px;
    height: 100px;
    border-radius: 999px;
    object-fit: cover;
    margin-bottom: 10px;
    }
    .status-box {
      background: #f7f2e0;
      border-radius: 20px;
      padding: 25px;
    }
    .table-custom th {
      background: #fef7e8;
    color: #004512;
    }
    .modal-content {
      border-radius: 30px;
    }
    .popup-notify {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--dark-red);
      color: white;
      border-radius: 50px;
      padding: 12px 25px;
      cursor: pointer;
      z-index: 1090;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      font-weight: bold;
      display: none;
    }
    @media (max-width: 768px) {
        .fake-img-bg {
                display: block !important;
        }
        .fake-img-bg i {display:none;}
      .hero h1 {
          
        font-size: 2rem;
      }
      .navbar-brand {
        font-size: 1.2rem;
      }
    }
    .booking-step {
      background: #fef5e3;
      border-radius: 28px;
    }
    img.banner-img {
      max-height: 380px;
      object-fit: cover;
      width: 100%;
      border-radius: 24px;
    }
    .fake-img-bg {
      background: #e4d5b6;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #7a5c2c;
      font-weight: bold;
    }
       /* Hero Slider Simple Styles */
.hero-slider-section {
  margin-top: 0;
  overflow: hidden;
}

.slide-banner {
  min-height: 500px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .slide-banner {
    min-height: 400px;
  }
  .slide-banner h1 {
    font-size: 28px;
  }
  .slide-banner .lead {
    font-size: 16px;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 20px;
}

.btn-gold {
  background: #004813;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-gold:hover {
  background: #c5a028;
  transform: translateY(-2px);
}

.carousel-indicators button {
  width: 40px;
  height: 4px;
  background-color: #004813;
}

.carousel-indicators button.active {
  background-color: #fff;
}
.all_img_set {
    width:100%;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}
/* Breadcrumb Styles */
.breadcrumb-section {
  background: #f8f4e8;
  padding: 12px 0;
  border-bottom: 1px solid #e8ddc5;
  z-index: 1020;
  backdrop-filter: blur(8px);
  background: rgba(248, 244, 232, 0.95);
}

.breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}

.breadcrumb-item {
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-link {
  color: #004512;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-link:hover {
  color: #004813;
  transform: translateX(3px);
}

.breadcrumb-item.active {
  color: #6c5a3a;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #004813;
  font-size: 18px;
  font-weight: bold;
  padding: 0 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 8px 0;
    top: 60px;
  }
  .breadcrumb-item {
    font-size: 12px;
  }
  .breadcrumb-item i {
    font-size: 14px;
  }
}
.counter-section-minimal {
  padding: 50px 0;
  background: #fef7e8;
}

.counter-card-minimal {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.counter-card-minimal:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

.counter-icon-minimal {
  font-size: 40px;
  color: #004813;
  margin-bottom: 15px;
}

.counter-number-minimal {
  font-size: 36px;
  font-weight: 800;
  color: #004512;
}

.counter-card-minimal h4 {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}
/* Prize Structure Section Styles */
.prize-structure-section {
  padding: 0 0 50px;
  background: linear-gradient(180deg, #fef7e8 0%, #fffaf0 100%);
  position: relative;
}

.section-header {
  margin-bottom: 50px;
}

.section-title-center {
  font-size: 42px;
  font-weight: 800;
  color: #1a1303;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title-center i {
  color: #004813;
  margin-right: 10px;
}

.gold-border {
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #004813, #004813, #004813);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: #666;
  font-size: 18px;
  margin-top: 15px;
}

/* Prize Cards */
.prize-card {
  background: white;
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  cursor: pointer;
}

.prize-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* Card Variants */
.prize-card-gold {
  border: 2px solid #004813;
  background: linear-gradient(135deg, #fffdf5, #fff8e7);
}

.prize-card-silver {
  border: 2px solid #C0C0C0;
  background: linear-gradient(135deg, #f8f9fa, #f0f0f0);
}

.prize-card-special {
  border: 2px solid #FF6B6B;
  background: linear-gradient(135deg, #fff5f5, #ffe8e8);
}

.prize-card-bronze {
  border: 2px solid #CD7F32;
  background: linear-gradient(135deg, #fdf7f0, #f5ede3);
}

.prize-card-purple {
  border: 2px solid #9B59B6;
  background: linear-gradient(135deg, #f9f0ff, #f0e6ff);
}

.prize-card-bonus {
  border: 2px solid #FF8C00;
  background: linear-gradient(135deg, #fff8f0, #fff0e0);
}

/* Prize Badge */
.prize-badge {
  display: inline-block;
  background: linear-gradient(135deg, #004813, #004813);
  color: #1a1303;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(212,175,55,0.3);
}

.prize-badge i {
  margin-right: 5px;
  font-size: 16px;
}

.prize-badge-silver {
  background: linear-gradient(135deg, #A9A9A9, #D3D3D3);
  color: #333;
}

.prize-badge-special {
  background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
  color: white;
}

.prize-badge-bronze {
  background: linear-gradient(135deg, #CD7F32, #E8A87C);
  color: white;
}

.prize-badge-purple {
  background: linear-gradient(135deg, #9B59B6, #BB8FCE);
  color: white;
}

.prize-badge-bonus {
  background: linear-gradient(135deg, #FF8C00, #FFA559);
  color: white;
}

/* Prize Amount */
.prize-amount {
  margin-bottom: 20px;
  padding: 10px;
}

.currency {
  font-size: 28px;
  font-weight: 600;
  color: #004512;
  vertical-align: top;
}

.amount {
  font-size: 42px;
  font-weight: 800;
  color: #004512;
  letter-spacing: 2px;
}

.rupees {
  font-size: 24px;
  font-weight: 600;
  color: #004512;
}

/* Consolation Prize */
.prize-consolation {
  background: rgba(212, 175, 55, 0.1);
  border-radius: 16px;
  padding: 15px;
  margin: 20px 0;
  text-align: center;
}

.prize-consolation i {
  font-size: 20px;
  color: #004813;
  margin-right: 8px;
}

.prize-consolation span {
  display: block;
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 5px 0;
}

.prize-consolation strong {
  display: block;
  font-size: 18px;
  color: #004813;
  margin-top: 5px;
}

/* Prize Footer */
.prize-footer {
  background: rgba(0,0,0,0.03);
  padding: 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #004512;
  margin-top: 15px;
}

.prize-footer i {
  margin-right: 5px;
  color: #004813;
}

/* Responsive */
@media (max-width: 768px) {
  .prize-structure-section {
    padding: 50px 0;
  }
  
  .section-title-center {
    font-size: 28px;
  }
  
  .amount {
    font-size: 32px;
  }
  
  .currency {
    font-size: 22px;
  }
  
  .prize-card {
    padding: 20px 15px;
  }
}

@media (max-width: 576px) {
  .amount {
    font-size: 26px;
  }
  
  .prize-consolation strong {
    font-size: 14px;
  }
}  
/* Contact Section Styles */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef7e8 0%, #fffaf5 100%);
}

/* Section Header */
.section-title-center {
  font-size: 42px;
  font-weight: 800;
  color: #1a1303;
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

.section-title-center i {
  color: #004813;
  margin-right: 10px;
}

.gold-border {
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #004813, #004813, #004813);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: #666;
  font-size: 18px;
  margin-top: 15px;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
  background: white;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
}

.contact-info-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1303;
  margin-bottom: 15px;
}

.contact-info-title i {
  color: #004813;
  margin-right: 10px;
}

.contact-info-desc {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Contact Cards */
.contact-details {
  margin-bottom: 30px;
}

.contact-card {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #f0e6d2;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #004813, #004813);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 24px;
  color: #1a1303;
}

.contact-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1303;
  margin-bottom: 8px;
}

.contact-text p {
  color: #555;
  margin-bottom: 5px;
  line-height: 1.5;
}

.contact-text a {
  color: #004512;
  text-decoration: none;
  transition: 0.3s;
}

.contact-text a:hover {
  color: #004813;
}

.contact-text small {
  color: #999;
  font-size: 12px;
}

/* Social Links */
.social-links {
  margin-top: 25px;
}

.social-links h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.social-links h4 i {
  color: #004813;
  margin-right: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  width: 42px;
  height: 42px;
  background: #f0e6d2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004512;
  font-size: 20px;
  transition: 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background: #004813;
  color: white;
  transform: translateY(-3px);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: white;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1303;
  margin-bottom: 10px;
}

.contact-form-title i {
  color: #004813;
  margin-right: 10px;
}

.form-desc {
  color: #666;
  margin-bottom: 25px;
}

/* Form Styles */
.form-group {
  margin-bottom: 5px;
}

.form-label {
  font-weight: 600;
  color: #1a1303;
  margin-bottom: 8px;
  display: block;
}

.form-label i {
  color: #004813;
  margin-right: 5px;
}

.required {
  color: #ff0000;
}

.form-control, .form-select {
  border: 2px solid #f0e6d2;
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 14px;
  transition: 0.3s;
}

.form-control:focus, .form-select:focus {
  border-color: #004813;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
  resize: vertical;
}

.form-check-input:checked {
  background-color: #004813;
  border-color: #004813;
}

.form-check-label a {
  color: #004813;
  text-decoration: none;
}

.btn-submit {
  background: linear-gradient(135deg, #004512, #a52a2a);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  transition: 0.3s;
  cursor: pointer;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #a52a2a, #004512);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}

.btn-submit i {
  margin-right: 8px;
}

/* Map Section */
.map-section {
  background: white;
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1303;
}

.map-title i {
  color: #004813;
  margin-right: 8px;
}

.map-container {
  overflow: hidden;
  border-radius: 20px;
}

/* Contact FAQ */
.contact-faq {
  background: linear-gradient(135deg, #1a1303, #2c2412);
  border-radius: 24px;
  padding: 30px 35px;
  color: white;
}

.contact-faq h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-faq h4 i {
  color: #004813;
  margin-right: 8px;
}

.contact-faq p {
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.btn-faq {
  background: #004813;
  color: #1a1303;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
}

.btn-faq:hover {
  background: #004813;
  transform: translateX(5px);
  color: #1a1303;
}

/* Alert Messages */
.alert {
  border-radius: 12px;
  padding: 12px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .section-title-center {
    font-size: 28px;
  }
  
  .contact-info-wrapper,
  .contact-form-wrapper {
    padding: 25px;
  }
  
  .contact-card {
    gap: 12px;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
  }
  
  .contact-icon i {
    font-size: 20px;
  }
  
  .contact-text h4 {
    font-size: 16px;
  }
  
  .contact-text p {
    font-size: 13px;
  }
  
  .contact-faq {
    padding: 25px;
    text-align: center;
  }
  
  .contact-faq .text-lg-end {
    text-align: center !important;
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .social-icons {
    justify-content: center;
  }
  
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin: 0 auto;
  }
}

.lottery-footer {
  background: #0b0f1a;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}
.footer-col h2.logo {
  color: #004813;
}

.footer-col h3 {
  margin-bottom: 15px;
  color: #004813;
}

.footer-col p {
  font-size: 14px;
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #004813;
}

.footer-col input {
  width: 100%;
  padding: 10px;
  border: none;
  margin-bottom: 10px;
  border-radius: 5px;
}

.footer-col button {
  width: 100%;
  padding: 10px;
  background: #004813;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 30px;
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}
.policy_page {
    padding:50px 0;
}
.policy_page h2 {
    font-size: 18px;
}

/* Standard Ticket */
.standard-ticket {
  text-align: center;
  padding: 20px;
  background: #f5f0e8;
  border-radius: 12px;
  margin: 20px 0 30px;
  font-size: 18px;
}

.standard-ticket span {
  font-weight: 800;
  color: #1a1a2e;
}

/* Booking Form Wrapper */
.booking-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.form-main-title {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #004813;
  display: inline-block;
}

/* Form Styles */
.booking-exact-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1;
  min-width: 180px;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
}

.star {
  color: #ff0000;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e8e0d0;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: #004813;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-field input[readonly] {
  background: #f5f0e8;
  font-weight: 600;
  color: #004512;
}

.full-width {
  width: 100%;
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
}

.book-now-btn {
  background: linear-gradient(135deg, #004813, #FFD700);
  color: #1a1a2e;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.book-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Booking Info */
.booking-info-exact {
  background: linear-gradient(135deg, #fff8e7, #fff);
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  border: 1px solid #004813;
}

.booking-info-exact h4 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.booking-info-exact ul {
  list-style: none;
  padding: 0;
}

.booking-info-exact ul li {
  padding: 8px 0;
  color: #444;
  font-size: 14px;
}

.counter-info {
  display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e0d0;
}

.counter-item {
  text-align: center;
}

.counter-num {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #004512;
}

.counter-text {
  font-size: 12px;
    color: #000000;
    background: #d3af3780;
    border: 1px solid #d3af37fc;
    padding: 5px 10px;
    border-radius: 30px;
    font-weight: 600;
}

/* Success Message */
.success-message {
  background: #d4edda;
  color: #155724;
  padding: 12px;
  border-radius: 10px;
  margin-top: 15px;
  text-align: center;
}

.error-message {
  background: #f8d7da;
  color: #721c24;
  padding: 12px;
  border-radius: 10px;
  margin-top: 15px;
  text-align: center;
}
.ticket-booking-exact {
    padding: 60px 0;
    background: #fff8f0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}
.main-heading h1 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #004813;
}
a {
    text-decoration:none;
}
.qr_code {
        text-align: center;
    margin-bottom: 20px;
}
.qr_code img {
        width: 200px;
}
@media (max-width: 768px) {
    .right_site {
        display:none;
    }
        .main-heading h1 {
        font-size: 24px;
    }
}
/* FAQ Section Styles */
.faq-section {
  padding: 0 0 50px;
  position: relative;
}

/* Section Header */
.faq-header {
  margin-bottom: 50px;
}

.faq-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1303;
  margin-bottom: 15px;
}

.faq-main-title i {
  color: #004813;
  margin-right: 10px;
}

.faq-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.title-border {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #004813, #FFD700);
  margin: 0 auto;
  border-radius: 2px;
}

/* FAQ Container */
.faq-container {
  background: white;
  border-radius: 24px;
  padding: 0px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #f0e6d2;
  margin-bottom: 5px;
}

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

/* FAQ Question */
.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  border-radius: 12px;
}

.faq-question:hover {
  background: #fff8e7;
}

.faq-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #004813, #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #1a1303;
  font-size: 14px;
  flex-shrink: 0;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1303;
  margin: 0;
  flex: 1;
}

.faq-icon {
  font-size: 24px;
  color: #004813;
  transition: transform 0.3s ease;
  font-weight: bold;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
  display: none;
  padding: 0 20px 20px 75px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item.active .faq-answer {
  display: block;
}

.answer-content {
  display: flex;
  gap: 15px;
}

.answer-content > i {
  font-size: 24px;
  color: #004813;
  flex-shrink: 0;
}

.answer-text {
  flex: 1;
}

.answer-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.answer-text ul {
  margin: 10px 0;
  padding-left: 20px;
}

.answer-text ul li {
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}

.answer-text ul li strong {
  color: #004512;
}

.note-text {
  background: #fff8e7;
  padding: 10px 15px;
  border-radius: 10px;
  border-left: 3px solid #004813;
  font-size: 14px;
  margin-top: 10px;
}

/* Price Table Mini */
.price-table-mini {
  background: #f8f4e8;
  border-radius: 12px;
  padding: 12px;
  margin: 15px 0;
}

.price-row-mini {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #e8ddc5;
}

.price-row-mini:last-child {
  border-bottom: none;
}

.price-row-mini span:first-child {
  font-weight: 500;
  color: #333;
}

.price-row-mini span:last-child {
  font-weight: 700;
  color: #004512;
}

/* Draw Schedule */
.draw-schedule {
  background: #f8f4e8;
  border-radius: 12px;
  padding: 15px;
  margin: 15px 0;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #e8ddc5;
}

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

.draw-type {
  font-weight: 600;
  color: #333;
}

.draw-time strong {
  color: #004512;
  font-weight: 800;
}

/* Warning Box */
.warning-box {
  background: #fff3e0;
  border-left: 4px solid #ff8c00;
  padding: 12px 15px;
  border-radius: 10px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.warning-box i {
  font-size: 20px;
  color: #ff8c00;
}

.warning-box strong {
  color: #ff8c00;
}

/* Info Box */
.info-box {
  background: #e8f4f8;
  border-left: 4px solid #17a2b8;
  padding: 15px;
  border-radius: 10px;
  margin: 15px 0;
  display: flex;
  gap: 12px;
}

.info-box i {
  font-size: 22px;
  color: #17a2b8;
}

.info-box strong {
  color: #17a2b8;
}

/* Still Questions */
.still-questions {
  margin-top: 40px;
}

.questions-box {
  background: linear-gradient(135deg, #1a1303, #2c2412);
  border-radius: 20px;
  padding: 30px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.questions-box i {
  font-size: 48px;
  color: #004813;
}

.questions-text {
  flex: 1;
}

.questions-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.questions-text p {
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.contact-faq-btn {
  background: #004813;
  color: #1a1303;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-faq-btn:hover {
  background: #FFD700;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {

  
  .faq-main-title {
    font-size: 28px;
  }
  
  .faq-subtitle {
    font-size: 14px;
  }
  
  .faq-container {
    padding: 15px;
  }
  
  .faq-question {
    padding: 12px;
    gap: 10px;
  }
  
  .faq-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .faq-question h3 {
    font-size: 15px;
  }
  
  .faq-answer {
    padding: 0 12px 15px 50px;
  }
  
  .answer-content {
    flex-direction: column;
  }
  
  .schedule-item {
    flex-direction: column;
    gap: 5px;
  }
  
  .questions-box {
    padding: 25px;
    flex-direction: column;
    text-align: center;
  }
  
  .price-row-mini {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}
.checkstatus_btn {
    /* Continuous zoom animation */
    animation: zoomInOut 1.8s ease-in-out infinite;
    text-align: center;
    display: block;
    max-width: fit-content;
    margin: 30px auto 0;
    background: #732229;
    color: white;
}
/* Keyframes */
@keyframes zoomInOut {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}
@media (max-width: 480px) {
  .faq-answer {
    padding: 0 10px 15px 40px;
  }
  
  .answer-text ul {
    padding-left: 15px;
  }
  .counter-card-minimal {
      padding: 10px;
  }
  .booking-form-wrapper {
      padding: 15px;
  }
  .hero-slider-section img {
          height: 200px;
    object-fit: cover;
  }
}
.banner_middle img {
    width:100%;
}