/* ================================================================
   Ludhiana Taxi Point — Main Stylesheet
   Theme: Bold Red, Deep Black, Gold/Yellow accents
   Font: Oswald (headings) + Nunito (body)
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Nunito:wght@400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --red:        #D42B2B;
  --red-dark:   #A31D1D;
  --red-light:  #FF4444;
  --black:      #0D0D0D;
  --black-soft: #1A1A1A;
  --dark-gray:  #2C2C2C;
  --gray:       #555;
  --light-gray: #F5F5F5;
  --gold:       #F5C518;
  --gold-dark:  #D4A017;
  --white:      #FFFFFF;
  --text:       #222222;
  --border:     #E0E0E0;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.14);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.20);
  --radius:     10px;
  --radius-lg:  18px;

  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Nunito', sans-serif;
  --transition:   0.3s ease;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

/* ── Utilities ─────────────────────────────────────────────── */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--black);
  margin-bottom: 10px;
}
.section-title span { color: var(--red); }

.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  margin: 12px auto 20px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,43,43,0.4);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Header / Navbar ───────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  box-shadow: 0 3px 20px rgba(0,0,0,0.5);
  transition: background var(--transition);
}

#header.scrolled { background: rgba(13,13,13,0.97); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 5%;
}

.logo img { height: 52px; width: auto; object-fit: contain; }
.logo-text {
  display: flex;
  flex-direction: column;
  color: var(--white);
}
.logo-text .name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}
.logo-text .tagline {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { left: 14px; right: 14px; }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Slider ────────────────────────────────────────────────── */
.slider-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
  margin-top: 72px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; z-index: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(180,20,20,0.35) 100%);
  z-index: 2;
}

.slide-content {
  position: absolute;
  z-index: 3;
  bottom: 18%;
  left: 5%;
  max-width: 640px;
  animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
  from { opacity:0; transform: translateY(40px); }
  to   { opacity:1; transform: translateY(0); }
}

.slide-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.slide-content h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.slide-content h1 span { color: var(--gold); }

.slide-content p {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 30px;
  line-height: 1.7;
}

.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active { background: var(--gold); transform: scale(1.3); }

.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}
.arrow-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all var(--transition);
  font-size: 1.1rem;
}
.arrow-btn:hover { background: var(--red); border-color: var(--red); }

/* ── Routes Section ────────────────────────────────────────── */
.routes-section { background: var(--light-gray); }

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.route-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-left: 4px solid var(--red);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.route-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(212,43,43,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.route-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
}

.route-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.route-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.route-card p {
  font-size: 0.85rem;
  color: var(--gray);
}
.route-badge {
  display: inline-block;
  background: rgba(212,43,43,0.1);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 12px;
}

/* ── Services Section ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-soft);
  color: var(--white);
  position: relative;
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
  border: 3px solid var(--black-soft);
}

.service-body { padding: 20px 24px 28px; }
.service-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-body p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ── Booking Form Section ──────────────────────────────────── */
.booking-section {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,43,43,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.booking-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.booking-info h2 span { color: var(--gold); }
.booking-info p { color: rgba(255,255,255,0.7); margin-bottom: 30px; }

.book-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.book-feature-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(212,43,43,0.2);
  border: 1px solid rgba(212,43,43,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.book-feature span { font-size: 0.9rem; color: rgba(255,255,255,0.8); }

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 8px;
}
.form-subtitle { font-size: 0.85rem; color: var(--gray); margin-bottom: 24px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row.single { grid-template-columns: 1fr; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group label .req { color: var(--red); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(212,43,43,0.1);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,43,43,0.45);
}

.form-success, .form-error {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: none;
}
.form-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-error   { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

/* ── About Section ─────────────────────────────────────────── */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.about-badge .years {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge .label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-content .tag {
  display: inline-block;
  background: rgba(212,43,43,0.1);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.about-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--black);
  margin-bottom: 16px;
}

.about-content p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-tabs { margin: 28px 0; }
.tab-btns {
  display: flex;
  border-bottom: 2px solid var(--border);
  gap: 0;
  margin-bottom: 20px;
}
.tab-btn {
  background: none;
  border: none;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.tab-btn.active { color: var(--red); border-bottom-color: var(--red); }
.tab-panel { display: none; animation: fadeIn 0.4s; }
.tab-panel.active { display: block; }

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.tab-panel p { color: var(--gray); line-height: 1.8; font-size: 0.93rem; }

.stats-row {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  display: block;
}
.stat-item .lbl {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Gallery ───────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,43,43,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 2rem;
  color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Contact Section ───────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}

.contact-info h2 { font-size: 1.8rem; color: var(--black); margin-bottom: 12px; }
.contact-info p { color: var(--gray); margin-bottom: 28px; line-height: 1.8; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
  font-size: 0.9rem;
}
.contact-detail span { font-size: 0.88rem; color: var(--gray); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.map-section { padding: 0; }
.map-section iframe { display: block; }

/* ── Footer ────────────────────────────────────────────────── */
#footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 16px 0 20px;
  color: rgba(255,255,255,0.6);
}

.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--red); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '▸';
  color: var(--gold);
  font-size: 0.7rem;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold); }

/* ── Floating Buttons ──────────────────────────────────────── */
.floating-btns {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: all var(--transition);
  cursor: pointer;
  color: var(--white);
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25D366; }
.float-call { background: var(--red); display: none; }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #300 100%);
  padding: 100px 0 50px;
  margin-top: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/silder.png') center/cover no-repeat;
  opacity: 0.15;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ── Admin styles ──────────────────────────────────────────── */
.admin-body {
  background: var(--light-gray);
  min-height: 100vh;
}

.admin-login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--black) 0%, #2a0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.login-card .logo-area { margin-bottom: 30px; }
.login-card h2 {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 6px;
}
.login-card p { font-size: 0.85rem; color: var(--gray); margin-bottom: 28px; }

.admin-header {
  background: var(--black);
  color: var(--white);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}
.admin-header h1 {
  font-size: 1.1rem;
  color: var(--gold);
}
.admin-header .logout {
  background: var(--red);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}
.admin-header .logout:hover { background: var(--red-dark); }

.admin-main { padding: 30px 24px; max-width: 1100px; margin: 0 auto; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--red);
}
.stat-card .val {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--red);
  font-weight: 700;
}
.stat-card .lbl {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.admin-card-header {
  background: var(--black);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-card-header h3 { font-size: 1rem; }

table { width: 100%; border-collapse: collapse; }
thead th {
  background: var(--light-gray);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark-gray);
  font-weight: 700;
}
tbody td {
  padding: 14px 16px;
  font-size: 0.87rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
tbody tr:hover { background: rgba(212,43,43,0.03); }
tbody tr:last-child td { border-bottom: none; }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-new        { background: #e3f2fd; color: #1565c0; }
.badge-confirmed  { background: #e8f5e9; color: #2e7d32; }
.badge-completed  { background: #f3e5f5; color: #6a1b9a; }
.badge-cancelled  { background: #ffebee; color: #c62828; }

.btn-delete {
  background: none;
  border: 1px solid #ffcdd2;
  color: var(--red);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-delete:hover { background: var(--red); color: var(--white); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .booking-wrap { grid-template-columns: 1fr; }
  .about-wrap   { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 0 4%; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 16px; width: 100%; }
  .hamburger { display: flex; }

  .slide-content { left: 4%; right: 4%; bottom: 15%; }
  .slide-btns { flex-direction: column; max-width: 200px; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form-card { padding: 24px 20px; }

  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { gap: 20px; }

  .float-call { display: flex; }
  .floating-btns { bottom: 20px; right: 16px; }

  .about-badge { right: 10px; bottom: 10px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .routes-grid  { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .login-card   { padding: 32px 24px; }
}

/* ── Animations ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.scroll-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }
