/* ============================================================
   NAMMATAXI — Modern Design System
   Bootstrap 5 + Custom CSS
   ============================================================ */

/* ---------- Google Font Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary:        #F5A623;
  --primary-dark:   #D4890A;
  --primary-light:  #FFF3D6;
  --dark:           #1C1C2E;
  --darker:         #0F0F1A;
  --light:          #F8F9FA;
  --white:          #FFFFFF;
  --text:           #2D2D3A;
  --text-muted:     #6B7280;
  --border:         #E5E7EB;
  --success:        #10B981;
  --danger:         #EF4444;
  --warning:        #F59E0B;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08);
  --shadow:         0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:      0 12px 40px rgba(0,0,0,.16);
  --transition:     all .25s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nt-navbar {
  background: var(--dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nt-navbar .navbar-brand img { height: 48px; width: auto; }
.nt-navbar .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  font-size: 14px;
  padding: .65rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition);
}
.nt-navbar .nav-link:hover,
.nt-navbar .nav-link.active {
  color: var(--primary) !important;
  background: rgba(245,166,35,.1);
}
.nt-navbar .nav-link.active { font-weight: 600; }
.nt-navbar .navbar-toggler {
  border-color: rgba(245,166,35,.5);
  padding: .4rem .6rem;
}
.nt-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245, 166, 35, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Top info bar */
.nt-topbar {
  background: var(--darker);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nt-topbar a { color: rgba(255,255,255,.75); }
.nt-topbar a:hover { color: var(--primary); }
.nt-topbar .ti { margin-right: 6px; color: var(--primary); }

/* My Bookings CTA button */
.btn-nt-primary {
  background: var(--primary);
  color: var(--dark) !important;
  font-weight: 700;
  font-size: 13px;
  padding: .45rem 1.2rem !important;
  border-radius: 50px !important;
  border: 2px solid var(--primary);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nt-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* ============================================================
   HERO / BOOKING FORM SECTION
   ============================================================ */
.nt-hero {
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 60%, #2a1a4e 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.nt-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5A623' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-headline span { color: var(--primary); }
.hero-tagline {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  margin-bottom: 2rem;
}
.hero-tagline li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tagline li i { color: var(--primary); font-size: 14px; }

/* Booking card */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.booking-card-tabs {
  display: flex;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.booking-card-tabs a {
  flex: 1;
  text-align: center;
  padding: .9rem .5rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.booking-card-tabs a:hover,
.booking-card-tabs a.active {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
  background: var(--white);
}
.booking-card-body { padding: 1.5rem; }

/* Trip type radios */
.trip-type-radios { display: flex; gap: 8px; margin-bottom: 1rem; flex-wrap: wrap; }
.trip-radio-label {
  display: flex; align-items: center; gap: 6px;
  cursor: pointer; font-size: 13px; font-weight: 500;
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: 50px; padding: 6px 14px;
  transition: var(--transition);
}
.trip-radio-label input[type="radio"] { display: none; }
.trip-radio-label:has(input:checked),
.trip-radio-label.checked {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}

/* Form fields */
.nt-field {
  margin-bottom: 1rem;
}
.nt-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}
.nt-field input,
.nt-field select {
  width: 100%;
  height: 46px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0 14px;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  font-family: 'Inter', sans-serif;
}
.nt-field input:focus,
.nt-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}
.nt-field input::placeholder { color: #b0b8c4; }
.nt-field input[readonly] { background: #f9fafb; color: var(--text-muted); cursor: default; }

/* Search button */
.btn-search {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,.4);
  background: linear-gradient(135deg, var(--primary-dark) 0%, #b57208 100%);
}

/* Validation errors */
label.error {
  color: var(--danger);
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* ============================================================
   OFFERS SLIDER
   ============================================================ */
.nt-offers-slider {
  background: var(--dark);
  padding: 10px 0;
}
.swiper-container { overflow: hidden; }
.slide-content {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
  margin: 6px 8px;
}
.slide-content img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; }
.coupon_content .dealCode {
  font-size: 16px; font-weight: 800; color: var(--primary);
  cursor: pointer; letter-spacing: 1px;
}
.coupon_content .upto_max { font-size: 12px; color: rgba(255,255,255,.6); }
.valid_date_time, .taxi_type { font-size: 11px; color: rgba(255,255,255,.55); margin: 0; }

/* ============================================================
   FEATURE BADGES (below hero)
   ============================================================ */
.nt-features {
  background: var(--white);
  padding: 0;
  margin-top: -32px;
  position: relative;
  z-index: 10;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  text-align: center;
  border-top: 4px solid var(--primary);
  transition: var(--transition);
  height: 100%;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card .icon {
  width: 60px; height: 60px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 22px; color: var(--primary-dark);
}
.feature-card h5 { font-weight: 700; font-size: 15px; margin-bottom: .4rem; }
.feature-card p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .badge-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .75rem;
}
.section-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; font-size: 15px; }

/* ============================================================
   WHO WE ARE / ABOUT
   ============================================================ */
.nt-about { padding: 80px 0; }
.about-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-item .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}
.stat-item .num sup { font-size: 1rem; }
.stat-item p { font-size: 13px; color: var(--text-muted); margin: 4px 0 0; font-weight: 500; }
.about-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-text h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem; font-weight: 800; margin-bottom: 1rem; color: var(--dark);
}
.about-text p { color: var(--text-muted); line-height: 1.8; font-size: 15px; }

/* ============================================================
   FLEET CAROUSEL
   ============================================================ */
.nt-fleet { padding: 80px 0; background: var(--light); }
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin: 0 10px;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-card img { width: 100%; height: 220px; object-fit: cover; }
.fleet-card-body { padding: 1.25rem; }
.fleet-card-body h5 { font-weight: 700; font-size: 15px; margin-bottom: .25rem; }
.fleet-price { font-size: 18px; font-weight: 800; color: var(--primary-dark); }
.fleet-price small { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.fleet-actions { display: flex; gap: 8px; margin-top: 1rem; }
.btn-fleet-primary {
  flex: 1; text-align: center; padding: 8px;
  background: var(--primary); color: var(--dark);
  font-weight: 700; font-size: 13px;
  border-radius: var(--radius); transition: var(--transition);
  border: 2px solid var(--primary);
}
.btn-fleet-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white);
}
.btn-fleet-outline {
  flex: 1; text-align: center; padding: 8px;
  background: transparent; color: var(--dark);
  font-weight: 600; font-size: 13px;
  border-radius: var(--radius); transition: var(--transition);
  border: 2px solid var(--border);
}
.btn-fleet-outline:hover { border-color: var(--dark); background: var(--dark); color: var(--white); }

/* ============================================================
   SERVICES
   ============================================================ */
.nt-services { padding: 80px 0; }
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(245,166,35,.15);
  transform: translateY(-4px);
}
.service-card img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 1rem; }
.service-card h5 { font-weight: 700; font-size: 15px; margin-bottom: .5rem; }
.service-card p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ============================================================
   POPULAR DESTINATIONS
   ============================================================ */
.nt-destinations { padding: 80px 0; background: var(--light); }
.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dest-card img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s ease; }
.dest-card:hover img { transform: scale(1.05); }
.dest-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  padding: 1.5rem 1rem 1rem;
}
.dest-overlay h5 { color: var(--white); font-weight: 700; margin-bottom: 4px; font-size: 15px; }
.dest-overlay .price-badge {
  background: var(--primary); color: var(--dark);
  font-size: 12px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
  display: inline-block;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.nt-testimonials { padding: 80px 0; }
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 0 10px;
  transition: var(--transition);
}
.review-card:hover { border-color: var(--primary); box-shadow: 0 6px 24px rgba(245,166,35,.12); }
.reviewer-info { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.reviewer-avatar {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--primary);
}
.reviewer-name { font-weight: 700; font-size: 14px; }
.reviewer-role { font-size: 12px; color: var(--text-muted); }
.review-stars { color: var(--primary); font-size: 13px; margin-bottom: .75rem; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-style: italic; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.nt-cta {
  background: linear-gradient(135deg, var(--dark) 0%, #2a1a4e 100%);
  padding: 60px 0;
  text-align: center;
}
.nt-cta h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: var(--white); font-size: 2rem; margin-bottom: .75rem; }
.nt-cta p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--dark);
  font-weight: 700; font-size: 15px;
  padding: .8rem 2rem; border-radius: 50px;
  transition: var(--transition);
}
.btn-cta:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.nt-footer {
  background: var(--darker);
  padding: 60px 0 0;
  color: rgba(255,255,255,.7);
}
.nt-footer h4 {
  color: var(--white); font-weight: 700; font-size: 16px;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.nt-footer p { font-size: 14px; line-height: 1.8; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 6px; }
.footer-contact li {
  display: flex; gap: 10px; margin-bottom: 12px;
  font-size: 14px; align-items: flex-start;
}
.footer-contact i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 10px; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--dark); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 40px; padding: 18px 0;
  font-size: 13px; color: rgba(255,255,255,.45);
  text-align: center;
}
.footer-bottom a { color: var(--primary); }

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.nt-floating {
  position: fixed; right: 18px; bottom: 24px;
  display: flex; flex-direction: column; gap: 10px; z-index: 999;
}
.nt-floating a {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: var(--transition);
}
.nt-floating .wa { background: #25D366; color: #fff; }
.nt-floating .ph { background: var(--primary); color: var(--dark); }
.nt-floating a:hover { transform: scale(1.12); }

/* Processing overlay */
#PopUpMessage {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9999;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
#PopUpMessage.show-loader { display: flex; }
.nt-spinner {
  width: 50px; height: 50px;
  border: 4px solid rgba(255,255,255,.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
#loader-msg { color: var(--white); font-weight: 600; font-size: 15px; }

/* ============================================================
   SEARCH CABS PAGE
   ============================================================ */
.nt-search-meta {
  background: var(--dark);
  padding: 18px 0;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}
.search-meta-item { display: flex; align-items: center; gap: 8px; }
.search-meta-item i { color: var(--primary); }
.btn-modify {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: .4rem 1.2rem;
  border-radius: 50px;
  font-size: 13px; font-weight: 600;
  transition: var(--transition); cursor: pointer;
}
.btn-modify:hover { background: var(--primary); color: var(--dark); }

.cabs-page { padding: 40px 0; background: var(--light); min-height: 60vh; }
.cab-result-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.cab-result-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.cab-img-wrap {
  height: 200px; overflow: hidden;
  background: var(--light); display: flex; align-items: center; justify-content: center;
}
.cab-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.cab-result-body { padding: 1.25rem; }
.cab-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 16px; color: var(--dark); }
.cab-seats { font-size: 13px; color: var(--text-muted); margin-bottom: 1rem; }

.fare-option {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1rem;
  flex: 1;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.fare-option:hover { border-color: var(--primary); background: var(--primary-light); }
.fare-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); }
.fare-price { font-size: 1.5rem; font-weight: 800; color: var(--dark); }
.fare-price .original { text-decoration: line-through; color: var(--text-muted); font-size: 1rem; font-weight: 400; }
.fare-price .discounted { color: var(--success); }
.fare-summary-link { font-size: 12px; color: var(--primary-dark); cursor: pointer; display: block; margin: 4px 0 8px; }
.fare-summary-link:hover { text-decoration: underline; }
.btn-book-now {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--dark); font-weight: 700; font-size: 13px;
  padding: 9px; border: none; border-radius: 8px;
  cursor: pointer; transition: var(--transition);
}
.btn-book-now:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,166,35,.35); }

/* Modal modernize */
.booking_modal .modal-content {
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
}
.booking_modal h3 { font-weight: 800; margin-bottom: 1.25rem; color: var(--dark); }
.modal-btns { display: flex; gap: 10px; margin-top: 1rem; justify-content: flex-end; }
.cancel_btn {
  padding: .5rem 1.5rem; border: 1.5px solid var(--border);
  background: transparent; border-radius: var(--radius);
  font-weight: 600; cursor: pointer; transition: var(--transition);
}
.cancel_btn:hover { background: var(--light); }
.save_btn {
  padding: .5rem 1.5rem;
  background: var(--primary); border: none; border-radius: var(--radius);
  font-weight: 700; color: var(--dark); cursor: pointer; transition: var(--transition);
}
.save_btn:hover { background: var(--primary-dark); color: var(--white); }

/* ============================================================
   INNER PAGES — Banner + Breadcrumb
   ============================================================ */
.nt-inner-banner {
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  padding: 50px 0;
  text-align: center;
}
.nt-inner-banner h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 2rem; color: var(--white);
}
.nt-breadcrumb { background: var(--white); border-bottom: 1px solid var(--border); padding: 11px 0; }
.nt-breadcrumb ul { display: flex; gap: 0; align-items: center; list-style: none; margin: 0; padding: 0; font-size: 13px; font-weight: 500; flex-wrap: wrap; }
.nt-breadcrumb li { display: flex; align-items: center; color: var(--text-muted); }
.nt-breadcrumb li a { color: var(--primary-dark); text-decoration: none; transition: color .2s; }
.nt-breadcrumb li a:hover { color: var(--primary); }
.nt-breadcrumb li + li::before { content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 9px; color: var(--border); margin: 0 8px; }
.nt-breadcrumb li:last-child { color: var(--dark); font-weight: 600; max-width: 280px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.nt-login-section { padding: 80px 0; min-height: 70vh; display: flex; align-items: center; background: var(--light); }
.login-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 420px; margin: 0 auto;
}
.login-card-header {
  background: linear-gradient(135deg, var(--dark) 0%, #2a1a4e 100%);
  padding: 2rem 2rem 1.5rem;
  text-align: center;
}
.login-card-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; color: var(--white); font-size: 1.6rem;
}
.login-card-header p { color: rgba(255,255,255,.65); font-size: 14px; margin: 4px 0 0; }
.login-card-header .logo { height: 44px; margin-bottom: 1.25rem; }
.login-card-body { padding: 2rem; }

.otp-field-group { position: relative; }
.otp-field-group input {
  padding-right: 100px;
}
.send-otp-btn {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  background: var(--primary); color: var(--dark);
  border: none; border-radius: 8px;
  padding: 6px 12px; font-size: 12px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.send-otp-btn:hover { background: var(--primary-dark); color: var(--white); }
#message.success { color: var(--success); font-size: 13px; font-weight: 500; margin-bottom: 8px; }
#message.error { color: var(--danger); font-size: 13px; font-weight: 500; margin-bottom: 8px; }
.btn-login {
  width: 100%; height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--dark); font-weight: 700; font-size: 15px;
  border: none; border-radius: var(--radius);
  cursor: pointer; transition: var(--transition);
}
.btn-login:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,.4); }

/* ============================================================
   MY BOOKINGS PAGE
   ============================================================ */
.nt-my-bookings { padding: 40px 0; background: var(--light); min-height: 70vh; }
.bookings-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 10px; }
.bookings-header h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.5rem; }
.btn-logout {
  background: var(--danger); color: var(--white);
  border: none; padding: .5rem 1.25rem; border-radius: 50px;
  font-weight: 600; font-size: 13px; cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.btn-logout:hover { background: #c0392b; color: var(--white); }

.booking-item-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.booking-item-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.booking-id { font-size: 12px; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.booking-id span { color: var(--primary-dark); font-size: 15px; font-weight: 800; }
.booking-route { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: .5rem; }
.booking-route i { color: var(--primary); margin: 0 6px; }
.booking-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: .75rem; }
.booking-meta-item { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.booking-meta-item i { color: var(--primary); font-size: 12px; }
.booking-driver { background: var(--light); border-radius: 8px; padding: .6rem .9rem; font-size: 13px; margin-bottom: .75rem; }
.booking-driver strong { color: var(--dark); }
.badge-status {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 700;
}
.badge-pending  { background: #FFF3CD; color: #856404; }
.badge-complete { background: #D1FAE5; color: #065F46; }
.badge-cancel   { background: #FEE2E2; color: #991B1B; }
.booking-actions { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.btn-invoice {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--primary-dark); font-weight: 600;
  border: 1.5px solid var(--primary); padding: 4px 12px;
  border-radius: 50px; transition: var(--transition);
}
.btn-invoice:hover { background: var(--primary); color: var(--dark); }
.driver-phone { color: var(--success); font-weight: 600; }

/* ============================================================
   THANK YOU / CONFIRMATION
   ============================================================ */
.nt-thankyou { padding: 80px 0; background: var(--light); min-height: 70vh; display: flex; align-items: center; }
.thankyou-card {
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.thankyou-success {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 100%);
  padding: 3rem 2rem; text-align: center;
}
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--success); margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--white);
  animation: popIn .5s cubic-bezier(.68,-.55,.27,1.55);
}
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.thankyou-success h2 { color: var(--white); font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: .5rem; }
.thankyou-success p { color: rgba(255,255,255,.75); font-size: 15px; }
.booking-summary-card { padding: 2rem; }
.booking-summary-card h3 { font-weight: 800; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 2px solid var(--border); }
.summary-list { }
.summary-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: 14px;
}
.summary-list li:last-child { border-bottom: none; }
.summary-list li span:first-child { color: var(--text-muted); font-weight: 500; }
.summary-list li span:last-child { font-weight: 600; color: var(--dark); }
.total-fare {
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1rem;
  font-weight: 800; font-size: 16px;
}
.total-fare .amount { font-size: 1.5rem; color: var(--primary-dark); }
.btn-back-home {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--dark);
  font-weight: 700; padding: .75rem 2rem; border-radius: 50px;
  margin-top: 1.5rem; transition: var(--transition); font-size: 14px;
}
.btn-back-home:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.nt-faq { padding: 80px 0; background: var(--white); }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-question {
  padding: 1rem 1.25rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white); transition: var(--transition);
}
.faq-question:hover { background: var(--primary-light); }
.faq-answer { padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; padding: .75rem 1.25rem 1.25rem; }
.faq-item.open .faq-question { background: var(--primary-light); color: var(--primary-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .nt-hero { min-height: auto; padding: 50px 0 60px; }
  .booking-card { margin-top: 2.5rem; }
  .nt-about, .nt-fleet, .nt-services, .nt-destinations, .nt-testimonials { padding: 60px 0; }
}
@media (max-width: 767px) {
  .hero-headline { font-size: 1.9rem; }
  .nt-topbar { display: none; }
  .about-stats { gap: 1.25rem; }
  .fare-options-row { flex-direction: column; }
  .booking-meta { gap: .5rem; }
}
@media (max-width: 575px) {
  .booking-card-tabs a { font-size: 12px; padding: .75rem .35rem; }
  .trip-type-radios { gap: 5px; }
  .trip-radio-label { font-size: 12px; padding: 5px 10px; }
}

/* ============================================================
   OWL CAROUSEL overrides
   ============================================================ */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span { background: var(--primary); }
.owl-theme .owl-nav button { color: var(--primary) !important; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-primary-nt { color: var(--primary-dark) !important; }
.bg-primary-nt { background: var(--primary) !important; }
.section-pad { padding: 80px 0; }
.d-flex-center { display: flex; align-items: center; justify-content: center; }

/* ============================================================
   LEGACY CLASS COMPATIBILITY
   Styles for pages not yet fully rewritten (posts, contact,
   offers, become-partner, terms, etc.)
   ============================================================ */

/* Inner banner */
.tj-inner-banner {
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  padding: 50px 0; text-align: center;
}
.tj-inner-banner h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 2rem; color: var(--white);
}

/* Breadcrumb */
.tj-breadcrumb { background: var(--primary-light); padding: 12px 0; }
.tj-breadcrumb .breadcrumb-list { display: flex; gap: 8px; align-items: center; font-size: 13px; font-weight: 500; padding: 0; margin: 0; }
.tj-breadcrumb .breadcrumb-list li { color: var(--text-muted); }
.tj-breadcrumb .breadcrumb-list li a { color: var(--primary-dark); }
.tj-breadcrumb .breadcrumb-list li::after { content: '/'; margin-left: 8px; color: var(--border); }
.tj-breadcrumb .breadcrumb-list li:last-child::after { content: ''; }
.tj-breadcrumb .breadcrumb-list li.active { color: var(--text); }

/* Old booking form fields */
.field-outer { margin-bottom: 1rem; }
.field_label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; }
.field-outer input,
.field-outer select,
.field-outer textarea {
  width: 100%; height: 46px; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 0 14px;
  font-size: 14px; color: var(--text); background: var(--white);
  transition: var(--transition); outline: none;
  font-family: 'Inter', sans-serif;
}
.field-outer textarea { height: auto; padding: 12px 14px; }
.field-outer input:focus, .field-outer select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(245,166,35,.15); }

/* Old trip-outer booking card */
.trip-outer {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.trip-type-tabs { background: var(--light); border-bottom: 1px solid var(--border); }
.trip-type-tabs ul { display: flex; padding: 0; margin: 0; }
.trip-type-tabs ul li { flex: 1; }
.trip-type-tabs ul li a {
  display: block; text-align: center; padding: .85rem .5rem;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  border-bottom: 3px solid transparent; transition: var(--transition);
}
.trip-type-tabs ul li a:hover,
.trip-type-tabs ul li.active a {
  color: var(--primary-dark); border-bottom-color: var(--primary); background: var(--white);
}
.tab-content { padding: 1.25rem; }
.trip_types { display: flex; gap: 8px; margin-bottom: 1rem; flex-wrap: wrap; }
.trip_types label {
  display: flex; align-items: center; gap: 6px; cursor: pointer;
  font-size: 13px; font-weight: 500;
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: 50px; padding: 6px 14px; transition: var(--transition);
}
.trip_types input[type="radio"] { accent-color: var(--primary); }
.search-btn {
  width: 100%; height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--dark); font-weight: 700; font-size: 15px;
  border: none; border-radius: var(--radius); cursor: pointer;
  transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px;
}
.search-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,.4); }

/* Old banner form section */
.tj-banner-form {
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 60%, #2a1a4e 100%);
  padding: 50px 0 60px; min-height: 70vh;
}
.banner-caption { padding: 2rem 0 0 2rem; }
.banner-inner h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--white); margin-bottom: 1rem;
}
.banner-inner strong { color: rgba(255,255,255,.8); font-size: 14px; line-height: 2; font-weight: 400; }
.banner-inner strong i { color: var(--primary); margin-right: 6px; }

/* Old contact / info form holder */
.tj-contact-section { padding: 60px 0; background: var(--light); }
.form-holder {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 2rem;
}
.inner-holder { margin-bottom: 1rem; }
.inner-holder label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; }
.inner-holder input,
.inner-holder select,
.inner-holder textarea {
  width: 100%; height: 46px; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 0 14px;
  font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text);
  background: var(--white); transition: var(--transition); outline: none;
}
.inner-holder textarea { height: 120px; padding: 12px 14px; }
.inner-holder input:focus, .inner-holder select:focus, .inner-holder textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}
.inner-holder input[readonly] { background: #f9fafb; color: var(--text-muted); }

.btn-submit, .reg-btn {
  width: 100%; height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--dark); font-weight: 700; font-size: 15px;
  border: none; border-radius: var(--radius); cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover, .reg-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,.4); }

.apply_btn {
  width: 100%; height: 46px; display: flex; align-items: center; justify-content: center;
  background: var(--primary) !important; color: var(--dark) !important;
  font-weight: 700; border-radius: var(--radius) !important;
  border: none; cursor: pointer; transition: var(--transition);
}
.apply_btn:hover { background: var(--primary-dark) !important; }

/* Old address-box / taxi info card */
.address-box {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.taxi_info {
  background: linear-gradient(135deg, var(--dark), #2a1a4e);
  color: var(--white); font-weight: 700; font-size: 15px;
  padding: 1rem; text-align: center;
}
.seater, .ac_non_ac {
  font-size: 12px; font-weight: 600; background: rgba(245,166,35,.2);
  color: var(--primary); padding: 2px 8px; border-radius: 50px;
  margin-left: 6px; border: 1px solid rgba(245,166,35,.3);
}
.taxi_info_title { padding: .6rem 1rem; font-size: 13px; border-bottom: 1px solid var(--border); }
.taxi_info_title span { font-weight: 600; color: var(--text-muted); }

.coupon_container { background: var(--primary-light); color: var(--primary-dark); font-size: 11px; font-weight: 700; padding: 1px 7px; border-radius: 4px; margin-left: 4px; }
.applied_text { color: var(--success); font-size: 12px; font-weight: 600; display: block; margin-top: 4px; }
#coupon_applied { color: var(--success); font-size: 12px; font-weight: 600; margin-top: 4px; }

/* Old login form */
.login-frm {
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: 2rem; max-width: 420px; margin: 0 auto;
}
.field-holder { position: relative; margin-bottom: 1rem; }
.field-holder span.fas { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.field-holder input {
  width: 100%; height: 46px; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 0 14px 0 38px;
  font-size: 14px; font-family: 'Inter', sans-serif; outline: none; transition: var(--transition);
}
.field-holder input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(245,166,35,.15); }

/* Book now button (cabs.blade old) */
.book_now_btn {
  background: var(--primary); color: var(--dark);
  border: none; border-radius: 8px; font-weight: 700;
  font-size: 13px; padding: 8px 16px; cursor: pointer; transition: var(--transition);
}
.book_now_btn:hover { background: var(--primary-dark); color: var(--white); }

/* Old posts / blog list */
.tj-posts-section { padding: 60px 0; background: var(--light); }
.post-box {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden; margin-bottom: 1.5rem;
  transition: var(--transition);
}
.post-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-box img { width: 100%; height: 220px; object-fit: cover; }
.post-box-info { padding: 1.25rem; }
.post-box-info h4 { font-weight: 700; font-size: 16px; margin-bottom: .5rem; }
.post-box-info p { font-size: 13px; color: var(--text-muted); }
.read-more { color: var(--primary-dark); font-weight: 600; font-size: 13px; }

/* Old offers section */
.tj-offer-section { padding: 60px 0; background: var(--light); }
.offer-item {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 1.5rem; text-align: center; border-top: 4px solid var(--primary);
  margin-bottom: 1.5rem; transition: var(--transition);
}
.offer-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offer-item .coupon-code { font-size: 1.5rem; font-weight: 800; color: var(--primary-dark); letter-spacing: 2px; }

/* Become partner / driver */
.tj-become-section { padding: 60px 0; }
.become-box { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 2rem; margin-bottom: 1.5rem; }
.accordion .panel { border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: .5rem; overflow: hidden; }
.accordion .panel-heading { background: var(--light); padding: 0; }
.accordion .panel-title a { display: block; padding: .9rem 1.25rem; font-weight: 600; font-size: 14px; color: var(--dark); }
.accordion .panel-body { padding: 1rem 1.25rem; font-size: 14px; color: var(--text-muted); line-height: 1.8; border-top: 1px solid var(--border); }

/* Terms & Conditions */
.tj-terms-section { padding: 60px 0; }
.terms-content { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 2.5rem; }
.terms-content h3 { font-weight: 700; margin: 1.5rem 0 .75rem; color: var(--dark); }
.terms-content p { font-size: 14px; color: var(--text-muted); line-height: 1.85; margin-bottom: .75rem; }
.terms-content ul li { font-size: 14px; color: var(--text-muted); padding: 4px 0; }

/* Contact section */
.tj-contact-form .inner-holder input,
.tj-contact-form .inner-holder textarea {
  background: var(--white);
}

/* Generic utility */
.text_center { text-align: center; }
.text_right { text-align: right; }
.mb_25 { margin-bottom: 25px; }
.fw_bold { font-weight: 700; }
.pb_10 { padding-bottom: 10px; }
.pt_25 { padding-top: 25px; }

/* old .error class */
span.error, label.error { color: var(--danger); font-size: 11px; font-weight: 500; margin-top: 3px; display: block; }

/* ===== tj-welcome / about sections on outstation & local-package pages ===== */
.tj-welcome { padding: 60px 0; background: var(--white); }
.tj-welcome .about-info p { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
.tj-heading-style { margin-bottom: 1.5rem; }
.tj-heading-style h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.6rem; color: var(--dark);
  position: relative; padding-bottom: .75rem; margin-bottom: 0;
}
.tj-heading-style h3::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 50px; height: 3px; background: var(--primary); border-radius: 2px;
}
.welcome-banner { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.welcome-banner img { width: 100%; height: 340px; object-fit: cover; display: block; }

/* ===== tj-news (posts page wrapper) ===== */
.tj-news { padding: 60px 0; background: var(--light); }
.news-box { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 1.5rem; transition: var(--transition); }
.news-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-box figure { margin: 0; overflow: hidden; height: 220px; }
.news-box figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-box:hover figure img { transform: scale(1.06); }
.news-detail { padding: 1.25rem; }
.news-detail h4 { font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: .5rem; }
.news-detail ul { display: flex; gap: 1rem; font-size: 12px; color: var(--text-muted); padding: 0; }
.news-detail ul li i { color: var(--primary); margin-right: 4px; }

/* ===== coupon_item (old offers page) ===== */
.coupon_item {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  overflow: hidden; margin-bottom: 1.5rem; border: 1.5px solid var(--border);
  transition: var(--transition);
}
.coupon_item:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.coupon_title { background: linear-gradient(135deg, var(--dark), #2a1a4e); color: var(--primary); font-weight: 700; font-size: 14px; padding: .75rem 1rem; }
.jumboContent { padding: 1.25rem; }
.dealCode { font-size: 1.5rem; font-weight: 800; color: var(--primary-dark); letter-spacing: 2px; display: block; }
.dealText { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.introTxt { font-size: 14px; color: var(--text-muted); margin: 4px 0; }
.amount { font-size: 13px; color: var(--text); }

/* ===== form-control Bootstrap compat ===== */
.form-control {
  width: 100%; height: 46px; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 0 14px;
  font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--text); background: var(--white);
  transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(245,166,35,.15); }
textarea.form-control { height: auto; padding: 12px 14px; }

/* ===== General section spacing fixes ===== */
.ptb_25 { padding: 40px 0; }
.mb_15 { margin-bottom: 15px; }
.no-pad { padding-left: 0; }
