/*--------------------------------------------------------------
# General Variables & Cyberpunk Theme
--------------------------------------------------------------*/
:root {
  --font-default: "Poppins", sans-serif;
  --font-heading: "Orbitron", sans-serif;
  
  --bg-dark: #0a0a0a;
  --glass-bg: rgba(30, 30, 30, 0.6); 
  --glass-border: 1px solid rgba(255, 255, 255, 0.15);
  
  --color-accent: #D9232D; 
  --color-accent-glow: rgba(217, 35, 45, 0.5);
  --color-text: #ffffff;
  --color-text-muted: #b0b0b0;
}

body {
  font-family: var(--font-default);
  background-color: var(--bg-dark);
  color: var(--color-text);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a { text-decoration: none; color: var(--color-accent); transition: 0.3s; }
a:hover { color: #ff5e68; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-accent); }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid #333;
  padding: 15px 0;
  z-index: 997;
}

.header .logo img { max-height: 50px; }

.navmenu ul { margin: 0; padding: 0; display: flex; list-style: none; }
.navmenu a {
  color: #e0e0e0;
  font-weight: 500;
  padding: 10px 15px;
  font-size: 15px;
  text-transform: uppercase;
}
.navmenu a:hover, .navmenu .active { color: var(--color-accent); }

/* Mobile Nav */
.mobile-nav-toggle { font-size: 28px; cursor: pointer; color: #fff; margin-right: 15px; }
.mobile-nav-active { overflow: hidden; }
.mobile-nav-active .navmenu {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999;
  display: flex; justify-content: center; align-items: center;
}
.mobile-nav-active .navmenu ul { flex-direction: column; gap: 20px; align-items: center; }


/*--------------------------------------------------------------
# Main Contact Section
--------------------------------------------------------------*/
.section { padding: 40px 0; }

.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 {
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 10px; font-weight: 700;
}
.section-title p {
  font-family: var(--font-heading); font-size: 36px; text-transform: uppercase;
  color: #fff;
}

/*--------------------------------------------------------------
# Glass Form Container
--------------------------------------------------------------*/
.glass-form-container {
  background: var(--glass-bg);
  border: var(--glass-border);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  margin-bottom: 40px;
}

/* Fieldsets */
fieldset {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
}

legend {
  font-size: 1.1rem;
  color: var(--color-accent);
  font-weight: 600;
  width: auto;
  padding: 0 10px;
  font-family: var(--font-heading);
}

/* Labels & Inputs */
label {
  color: #eee;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group { margin-bottom: 20px; }

.form-control {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #444;
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  transition: 0.3s;
}

.form-control::placeholder { color: #777; }

.form-control:focus {
  background: rgba(0, 0, 0, 0.8);
  border-color: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent-glow);
  color: #fff;
  outline: none;
}

select.form-control { color: #fff; }
select.form-control option { background-color: #1a1a1a; color: #fff; }

.message {
  font-size: 0.85rem;
  color: #ff9ea3;
  margin-top: 5px;
  display: none;
}

/*--------------------------------------------------------------
# Right Side Info Box
--------------------------------------------------------------*/
.info-box-wrapper {
  background: var(--glass-bg);
  border: var(--glass-border);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* Sticky behavior for desktop */
@media(min-width: 992px){
    .info-box-wrapper {
        position: sticky;
        top: 100px;
    }
}

.info-box-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 10px;
  display: inline-block;
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-item .icon {
  font-size: 24px;
  color: var(--color-accent);
  background: rgba(217, 35, 45, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
  border: 1px solid var(--color-accent);
}

.info-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.info-item p {
  font-size: 14px;
  color: #ccc;
  margin: 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Radio & Payment
--------------------------------------------------------------*/
.radio-group { display: flex; flex-wrap: wrap; gap: 20px; }
.custom-radio { display: flex; align-items: center; cursor: pointer; }
.custom-radio input { display: none; }
.radio-btn {
  width: 20px; height: 20px; border: 2px solid var(--color-accent);
  border-radius: 50%; margin-right: 10px; position: relative; transition: 0.3s;
}
.custom-radio input:checked + .radio-btn { background: var(--color-accent); box-shadow: 0 0 10px var(--color-accent); }
.radio-label { color: #fff; }

.payment-info {
  background: rgba(0,0,0,0.3);
  padding: 15px; border-radius: 10px; border: 1px solid #333;
}
.fee-text { font-size: 1.2rem; color: #fff; margin-bottom: 15px; }
.highlight-fee { color: var(--color-accent); font-family: var(--font-heading); font-size: 1.4rem; }

.upi-field {
  display: flex; align-items: center; gap: 10px; background: #222;
  padding: 8px 15px; border-radius: 5px; width: fit-content; border: 1px solid #444;
}
.upi-text { font-family: monospace; color: #fff; letter-spacing: 1px; }

.qr-container {
  margin-top: 15px; background: #fff; padding: 10px;
  border-radius: 10px; width: fit-content; min-height: 50px;
}
.qr-container img { max-width: 180px; }

/* Submit Button */
.btn-submit {
  width: 100%; padding: 15px; background: var(--color-accent);
  color: #fff; border: none; border-radius: 50px;
  font-size: 18px; font-weight: bold; text-transform: uppercase;
  letter-spacing: 1px; font-family: var(--font-heading);
  transition: 0.3s; box-shadow: 0 0 20px rgba(217, 35, 45, 0.4); cursor: pointer;
  margin-top: 20px;
}
.btn-submit:hover {
  transform: translateY(-3px); box-shadow: 0 0 30px rgba(217, 35, 45, 0.8);
  background: #fff; color: var(--color-accent);
}

/*--------------------------------------------------------------
# Popups
--------------------------------------------------------------*/
.popup, .whatsapp-popup {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85); z-index: 2000;
  justify-content: center; align-items: center; backdrop-filter: blur(5px);
}
.popup-content, .whatsapp-popup-content {
  background: #151515; border: 1px solid var(--color-accent);
  padding: 30px; border-radius: 15px; max-width: 500px; width: 90%;
  text-align: center; box-shadow: 0 0 40px rgba(217, 35, 45, 0.2);
}
.popup-content h2, .whatsapp-popup-content h2 {
  font-family: var(--font-heading); color: var(--color-accent); margin-bottom: 20px;
}
.popup-content p { color: #ccc; }
.scrollable-box {
  max-height: 250px; overflow-y: auto; text-align: left; background: #111;
  padding: 15px; border-radius: 5px; margin-bottom: 20px; color: #ddd;
}
.scrollable-box li { margin-bottom: 10px; font-size: 0.9rem; }
.btn-close-popup {
  background: #333; color: #fff; border: none; padding: 8px 20px;
  border-radius: 5px; transition: 0.3s; cursor: pointer;
}
.btn-close-popup:hover { background: #555; }

/*--------------------------------------------------------------
# Loader
--------------------------------------------------------------*/
#loading-spinner {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.95); z-index: 3000; justify-content: center; align-items: center;
}
.spinner-content {
  text-align: center; border: 1px solid var(--color-accent); padding: 40px;
  border-radius: 20px; background: #000; box-shadow: 0 0 30px var(--color-accent-glow);
}
.spinner-content img { width: 50px; margin-bottom: 20px; }
.spinner-content p { color: #fff; font-size: 1.1rem; }

/*--------------------------------------------------------------
# Detailed Footer Styling
--------------------------------------------------------------*/
.footer {
  background: #050505;
  border-top: 1px solid #222;
  padding-top: 60px;
  margin-top: auto;
  width: 100%;
}

.footer .footer-top {
  padding-bottom: 30px;
}

.footer .logo span {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #fff;
  letter-spacing: 1px;
}

.footer-contact p {
  color: #aaa;
  margin-bottom: 5px;
  font-size: 14px;
}

.footer-contact strong {
  color: #fff;
}

.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid #333;
  color: #fff; margin-right: 10px; transition: 0.3s;
  font-size: 16px;
}
.social-links a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.footer h4 {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  bottom: 0;
  left: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  color: #aaa;
}

/* Specific class for contact list items to remove bullets if needed, but styling here is general */
.contact-li {
  color: #ccc;
  font-size: 14px;
}

.footer-links a {
  color: #aaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.footer .copyright {
  border-top: 1px solid #222;
  padding: 25px 0;
  color: #aaa;
  font-size: 14px;
}

/* Footer Flex Layout for Desktop */
@media (min-width: 992px) {
  .footer-flex {
    justify-content: space-between;
  }
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 576px) {
  .glass-form-container { padding: 15px; }
  fieldset { padding: 15px; }
  .section { padding: 20px 0; }
  .qr-container img { max-width: 100%; }
}