/* RESET & BASE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #C8102E;
  --primary-hover: #a50e26;
  --text-dark: #1a1a2e;
  --text-light: #6c757d;
  --bg-body: #f8f9fa;
  --bg-white: #ffffff;
  --bg-light: #f1f3f5;
  --border: #e9ecef;
  --shadow: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-body);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-white {
  background-color: var(--bg-white);
}

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

.w-100 {
  width: 100%;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.text-red {
  color: var(--primary);
}

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

.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

.navbar.scrolled {
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 10px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  flex: 1;
}

.badge {
  display: inline-block;
  background-color: rgba(200, 16, 46, 0.1);
  color: var(--primary);
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border: 6px solid rgba(200,16,46,0.1);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.decorative-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: rgba(200, 16, 46, 0.05);
  border: 2px dashed rgba(200, 16, 46, 0.2);
  position: relative;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--primary);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.el-1 { top: 10%; left: 10%; animation-delay: 0s; }
.el-2 { top: 50%; right: -10%; animation-delay: 2s; }
.el-3 { bottom: 10%; left: 30%; animation-delay: 4s; }

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.statistics-bar {
  display: flex;
  justify-content: space-between;
  background-color: var(--bg-white);
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-top: 50px;
  transform: translateY(50%);
  position: relative;
  z-index: 10;
}

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

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  color: var(--text-light);
  font-weight: 500;
}

/* ABOUT */
.about {
  padding-top: 120px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.checkmark-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.checkmark-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.checkmark-list i {
  color: var(--primary);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.stat-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-white);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

/* TEST PRICES */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  align-items: start;
}

.test-category-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.category-header {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.category-header i {
  font-size: 1.5rem;
}

.category-header h3 {
  margin-bottom: 0;
  flex: 1;
}

.test-count {
  background-color: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.test-list {
  padding: 10px 20px;
}

.test-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

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

.test-name {
  flex: 1;
  font-weight: 500;
  font-size: 0.95rem;
  padding-right: 15px;
}

.test-price {
  font-weight: 700;
  color: var(--primary);
  margin-right: 15px;
  min-width: 60px;
  text-align: right;
}

.book-btn {
  padding: 6px 12px;
  font-size: 0.8rem;
  background-color: var(--bg-light);
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.book-btn:hover {
  background-color: var(--primary);
  color: var(--bg-white);
}

.hidden-tests {
  padding: 0 20px;
  border-top: 1px dashed var(--border);
  background-color: #fafafa;
}

.view-all-btn {
  width: 100%;
  padding: 15px;
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.view-all-btn:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

/* HEALTH PACKAGES */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.package-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.package-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.package-tests {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 15px 0 25px;
  min-height: 50px;
}

.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

/* DOCTORS */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.doctor-card {
  background-color: var(--bg-white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.red-bg { background-color: #C8102E; }
.navy-bg { background-color: #1a1a2e; }
.teal-bg { background-color: #20c997; }

.qualification {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.experience-badge {
  display: inline-block;
  background-color: var(--bg-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.doctor-desc {
  font-size: 0.95rem;
}

/* APPOINTMENT FORM */
.form-container {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.radio-group {
  display: flex;
  gap: 20px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
}

.upi-section {
  text-align: center;
  padding: 30px;
  background-color: var(--bg-light);
  border-radius: 8px;
  margin: 20px 0;
  border: 1px dashed var(--border);
}

.qr-box {
  width: 200px;
  height: 200px;
  background-color: #e0e0e0;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: var(--text-light);
  border-radius: 8px;
}

.upi-id {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

.form-submit-btn {
  margin-top: 20px;
  font-size: 1.1rem;
  padding: 15px;
}

/* MAP */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: var(--bg-white);
}

.map-controls {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

#distance-info {
  font-weight: 600;
  font-size: 1.1rem;
}

.status-success {
  color: #28a745;
  font-weight: 600;
  background-color: rgba(40, 167, 69, 0.1);
  padding: 10px 20px;
  border-radius: 6px;
}

.status-error {
  color: var(--primary);
  font-weight: 600;
  background-color: rgba(200, 16, 46, 0.1);
  padding: 10px 20px;
  border-radius: 6px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  background-color: rgba(200, 16, 46, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 5px;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* FOOTER */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 20px;
}

.footer-brand .logo-text .text-red {
  color: #ff4d6d;
}

.tagline {
  color: #a0a0b0;
  margin-bottom: 20px;
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary);
}

.footer-links h4, .footer-contact h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #a0a0b0;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  color: #a0a0b0;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  color: #a0a0b0;
  font-size: 0.9rem;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
}
.whatsapp-btn i {
  color: white;
  font-size: 34px;
  line-height: 1;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* CART SIDEBAR */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 100vw;
  height: 100%;
  background-color: var(--bg-white);
  z-index: 1002;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.close-cart:hover {
  color: var(--primary);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-info {
  flex: 1;
  padding-right: 15px;
}

.cart-item-name {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 700;
}

.remove-item {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 5px;
}

.empty-cart-msg {
  text-align: center;
  color: var(--text-light);
  margin-top: 50px;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  background-color: var(--bg-light);
}

.cart-total {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: right;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 15px 25px;
  background-color: #333;
  color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-weight: 500;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-success {
  background-color: #28a745;
}

.toast-warning {
  background-color: #fd7e14;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  h1 { font-size: 2.5rem; }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .statistics-bar { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .stat-item { width: 45%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .hidden-mobile { display: none; }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    gap: 15px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease;
  }
  
  .navbar.nav-open .nav-links {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .social-icons { justify-content: center; }
  .statistics-bar { transform: translateY(0); margin-top: 40px; margin-bottom: 20px; }
  .hero { padding-top: 120px; }
}
/* STRICT LOCATION BOOKING */

.booking-type-box {

  display: flex;
  gap: 15px;
  flex-wrap: wrap;

}

.booking-option {

  border: 2px solid var(--border);
  padding: 14px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  background: white;

}

.booking-option:hover {

  border-color: var(--primary);

}

.location-helper {

  margin-bottom: 15px;

}

#booking-map {

  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
  border: 2px solid var(--border);

}

.location-success {

  margin-top: 15px;
  background: rgba(40,167,69,0.1);
  color: #28a745;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;

}

.location-coords {

  margin-top: 10px;
  background: #f8f9fa;
  padding: 12px;
  border-radius: 10px;

}
.hero-image-container {

  width: 450px;
  height: 450px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid rgba(200,16,46,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);

}

.hero-image {

  width: 100%;
  height: 100%;
  object-fit: cover;

}
/* PHOTO GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background: white;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}
/* PHOTO GALLERY */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.gallery-item img{
  width:100%;
  height:250px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
  transition:0.3s;
}

.gallery-item img:hover{
  transform:scale(1.03);
}
/* ================================================================
   BOOKING TYPE SELECTION — Two-mode system styles
================================================================ */

.booking-type-box {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.booking-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  background: #fff;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  flex: 1;
  min-width: 200px;
  user-select: none;
}

.booking-option:hover {
  border-color: #C8102E;
  background: #fff5f5;
}

.booking-option input[type="radio"] {
  accent-color: #C8102E;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.booking-option:has(input:checked) {
  border-color: #C8102E;
  background: #fff5f5;
  color: #C8102E;
}

.booking-option span i {
  margin-right: 6px;
  color: #C8102E;
}

/* Map picker container */
#booking-map {
  height: 320px;
  border-radius: 10px;
  border: 2px solid #e2e8f0;
  z-index: 0;
}

/* Location helper text */
.location-helper {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 10px;
}

@media (max-width: 600px) {
  .booking-type-box { flex-direction: column; }
  .booking-option   { min-width: unset; }
  #booking-map      { height: 250px; }
}
