/* =========================================
   Mani Tour And Travels — Main Stylesheet
   Theme: Yellow #F5C400 + Red #D42B2B
   ========================================= */

:root {
  --yellow: #F5C400;
  --yellow-dark: #d4a800;
  --red: #D42B2B;
  --red-dark: #b01f1f;
  --dark: #1a1a1a;
  --dark2: #2c2c2c;
  --white: #ffffff;
  --light: #f8f8f8;
  --gray: #6c757d;
  --border: #e0e0e0;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.65; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); letter-spacing: 0.5px; }
a { text-decoration: none; transition: all 0.25s; }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 2px solid var(--yellow);
}
.top-bar a { color: var(--yellow); font-weight: 600; }
.top-bar a:hover { color: var(--white); }
.top-info { font-size: 0.78rem; color: #999; }

/* ---- NAVBAR ---- */
.main-navbar {
  background: var(--red);
  padding: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.brand-icon {
  background: var(--yellow);
  color: var(--dark);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.brand-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.brand-amp { color: var(--yellow); }
.main-navbar .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 400;
  padding: 18px 14px !important;
  letter-spacing: 0.3px;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--yellow) !important; }
.navbar-toggler { border-color: var(--yellow); }
.navbar-toggler-icon { filter: invert(1); }
.btn-book {
  background: var(--yellow);
  color: var(--dark) !important;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 22px !important;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.btn-book:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* Dropdown */
.services-dropdown {
  max-height: 400px;
  overflow-y: auto;
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  border-top: 3px solid var(--yellow);
}
.services-dropdown .dropdown-item { font-size: 0.88rem; padding: 7px 16px; }
.services-dropdown .dropdown-item:hover { background: var(--yellow); color: var(--dark); }

/* ---- HERO SLIDER ---- */
.hero-slider { position: relative; }
.hero-slider .carousel-item { height: 520px; }
.hero-slide-img {
  width: 100%; height: 520px;
  object-fit: cover;
  filter: brightness(0.55);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(212,43,43,0.7) 0%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 8%;
}
.hero-badge {
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 5px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  display: inline-block;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-title span { color: var(--yellow); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 28px; max-width: 500px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 4px;
  border: none;
  letter-spacing: 0.5px;
}
.btn-hero-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 4px;
  font-size: 1rem;
}
.btn-hero-outline:hover { background: var(--white); color: var(--red); }
.carousel-indicators [data-bs-target] { background-color: var(--yellow); width: 10px; height: 10px; border-radius: 50%; }
.carousel-control-prev-icon,.carousel-control-next-icon { filter: none; }
.carousel-control-prev,.carousel-control-next { width: 48px; height: 48px; background: var(--yellow); border-radius: 50%; top: 50%; transform: translateY(-50%); margin: 0 12px; opacity: 1; }

/* ---- QUICK BOOKING BAR ---- */
.quick-booking-bar {
  background: var(--dark);
  padding: 20px 0;
  border-bottom: 3px solid var(--yellow);
}
.quick-booking-bar .form-control, .quick-booking-bar .form-select {
  background: #2c2c2c;
  border: 1px solid #444;
  color: #fff;
  border-radius: 4px;
}
.quick-booking-bar .form-control::placeholder { color: #888; }
.quick-booking-bar .btn-qb {
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  width: 100%;
}
.quick-booking-bar .btn-qb:hover { background: var(--yellow-dark); }

/* ---- SECTION COMMON ---- */
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--dark); }
.section-title span { color: var(--red); }
.section-subtitle { color: var(--gray); font-size: 1rem; margin-top: 8px; }
.section-divider { width: 60px; height: 4px; background: linear-gradient(to right, var(--red), var(--yellow)); border-radius: 2px; margin: 12px auto 0; }
.section-divider.left { margin: 12px 0 0; }

/* ---- WHY CHOOSE US ---- */
.why-us-section { background: var(--light); padding: 70px 0; }
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
  height: 100%;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--yellow); }
.why-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--white);
}
.why-card h5 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); }
.why-card p { color: var(--gray); font-size: 0.92rem; }

/* ---- BOOKING FORM ---- */
.booking-section { background: var(--white); padding: 70px 0; }
.booking-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.booking-form-header {
  background: linear-gradient(135deg, var(--red), var(--dark));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 18px 24px;
  letter-spacing: 0.5px;
}
.booking-form { padding: 28px 24px; }
.booking-form label { font-size: 0.88rem; font-weight: 600; color: var(--dark2); margin-bottom: 6px; display: block; }
.booking-form .form-control, .booking-form .form-select {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.93rem;
  transition: border-color 0.2s;
}
.booking-form .form-control:focus, .booking-form .form-select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,196,0,0.18);
}
.btn-book-submit {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: 6px;
  letter-spacing: 0.5px;
  transition: all 0.25s;
}
.btn-book-submit:hover { background: linear-gradient(135deg, var(--red-dark), var(--red)); transform: translateY(-1px); box-shadow: var(--shadow); }
.or-call { font-size: 0.88rem; color: var(--gray); }
.or-call a { color: var(--red); font-weight: 700; }

/* ---- FLEET SECTION ---- */
.fleet-section { background: var(--dark); padding: 70px 0; }
.fleet-section .section-title { color: var(--white); }
.fleet-section .section-subtitle { color: #aaa; }
.fleet-card {
  background: var(--dark2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #3a3a3a;
  transition: all 0.3s;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(245,196,0,0.2); border-color: var(--yellow); }
.fleet-card img { width: 100%; height: 200px; object-fit: cover; }
.fleet-card-body { padding: 20px; }
.fleet-card-body h5 { font-family: var(--font-head); color: var(--yellow); font-size: 1.1rem; margin-bottom: 6px; }
.fleet-card-body p { color: #bbb; font-size: 0.88rem; margin-bottom: 12px; }
.fleet-badge {
  display: inline-block;
  background: rgba(245,196,0,0.15);
  color: var(--yellow);
  border: 1px solid var(--yellow);
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 20px;
  margin: 2px;
}

/* ---- ROUTES SECTION ---- */
.routes-section { background: var(--light); padding: 70px 0; }
.route-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s;
  text-decoration: none;
  color: var(--dark);
  margin-bottom: 12px;
}
.route-card:hover { border-color: var(--red); background: #fff5f5; transform: translateX(4px); color: var(--red); }
.route-icon { color: var(--red); font-size: 1rem; min-width: 20px; }
.route-card span { font-size: 0.9rem; font-weight: 600; }
.route-card i.fa-arrow-right { margin-left: auto; color: var(--yellow); }

/* ---- MAP SECTION ---- */
.map-section { padding: 70px 0; background: var(--white); }
.map-section iframe { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ---- ABOUT SECTION ---- */
.about-section { padding: 70px 0; }
.about-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 380px; object-fit: cover; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.about-feature-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
}
.about-feature-text h6 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 4px; color: var(--dark); }
.about-feature-text p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* ---- STATS BAR ---- */
.stats-bar { background: linear-gradient(135deg, var(--red), var(--red-dark)); padding: 40px 0; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--yellow); }
.stat-label { color: rgba(255,255,255,0.85); font-size: 0.9rem; }

/* ---- CONTACT ---- */
.contact-section { padding: 70px 0; background: var(--light); }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  height: 100%;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-info-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white);
}
.contact-info-text h6 { font-family: var(--font-head); margin-bottom: 4px; color: var(--dark); }
.contact-info-text a, .contact-info-text p { color: var(--gray); font-size: 0.92rem; margin: 0; }
.contact-info-text a:hover { color: var(--red); }

/* ---- FOOTER ---- */
.main-footer { background: var(--dark); }
.footer-top { padding: 60px 0 40px; }
.footer-taxi-icon { font-size: 2rem; color: var(--yellow); margin-bottom: 10px; display: block; }
.footer-brand h4 { font-family: var(--font-head); color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.footer-brand p { color: #aaa; font-size: 0.88rem; margin-bottom: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  background: #2c2c2c;
  border: 1px solid #3a3a3a;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #aaa; font-size: 0.9rem; margin-right: 8px;
  transition: all 0.25s;
}
.footer-social a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }
.footer-heading { font-family: var(--font-head); color: var(--white); font-size: 1.05rem; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--yellow); display: inline-block; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #aaa; font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--yellow); }
.footer-links .fas { font-size: 0.7rem; color: var(--yellow); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; color: #aaa; font-size: 0.88rem; }
.footer-contact-list li i { color: var(--yellow); min-width: 14px; margin-top: 3px; }
.footer-contact-list a { color: #aaa; }
.footer-contact-list a:hover { color: var(--yellow); }
.footer-bottom { background: #111; padding: 16px 0; border-top: 1px solid #2a2a2a; }
.footer-bottom p { color: #666; font-size: 0.85rem; margin: 0; }
.footer-bottom a { color: var(--yellow); }

/* ---- FLOAT BUTTONS ---- */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 20px;
  width: 52px; height: 52px;
  background: #25D366; color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  z-index: 999; animation: pulse 2s infinite;
}
.call-float {
  position: fixed; bottom: 20px; right: 20px;
  width: 52px; height: 52px;
  background: var(--red); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(212,43,43,0.4);
  z-index: 999;
}
.whatsapp-float:hover,.call-float:hover { transform: scale(1.1); color: var(--white); }
@keyframes pulse { 0%,100%{box-shadow:0 4px 15px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 30px rgba(37,211,102,0.7)} }

/* ---- LANDING PAGE ---- */
.landing-hero {
  background: linear-gradient(135deg, var(--red) 0%, var(--dark) 100%);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}
.landing-hero::before {
  content: '\f1b9';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12rem;
  color: rgba(255,255,255,0.04);
}
.landing-hero h1 { font-family: var(--font-head); font-size: clamp(1.6rem,3.5vw,2.5rem); color: var(--white); font-weight: 700; }
.landing-hero .breadcrumb-item, .landing-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.landing-hero .breadcrumb-item.active { color: var(--yellow); }
.landing-hero .breadcrumb-divider { color: rgba(255,255,255,0.4); }

/* Features strip */
.feature-strip { background: var(--yellow); padding: 14px 0; }
.feature-item { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 0.95rem; color: var(--dark); font-weight: 600; justify-content: center; }
.feature-item i { color: var(--red); }

/* Page content */
.page-content-section { padding: 60px 0; }
.content-body { font-size: 0.95rem; color: var(--dark2); line-height: 1.8; }

/* ---- ADMIN ---- */
.admin-wrap { min-height: 100vh; background: #f4f6f9; }
.admin-sidebar {
  background: var(--dark);
  min-height: 100vh;
  width: 240px;
  position: fixed; left: 0; top: 0;
  padding: 20px 0;
  z-index: 100;
}
.admin-sidebar .brand { padding: 0 20px 20px; border-bottom: 1px solid #333; margin-bottom: 10px; }
.admin-sidebar .brand h5 { font-family: var(--font-head); color: var(--yellow); font-size: 1.1rem; }
.admin-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  color: #bbb;
  font-size: 0.92rem;
  transition: all 0.2s;
}
.admin-nav a:hover, .admin-nav a.active { background: #2c2c2c; color: var(--yellow); }
.admin-nav a i { width: 18px; }
.admin-main { margin-left: 240px; padding: 30px; }
.admin-header { background: var(--white); padding: 16px 24px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; }
.admin-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; margin-bottom: 24px; }
.admin-card h5 { font-family: var(--font-head); border-bottom: 2px solid var(--yellow); padding-bottom: 10px; margin-bottom: 20px; }
.btn-admin-red { background: var(--red); color: var(--white); border: none; padding: 7px 16px; border-radius: 4px; font-size: 0.88rem; }
.btn-admin-red:hover { background: var(--red-dark); color: var(--white); }
.btn-admin-yellow { background: var(--yellow); color: var(--dark); border: none; padding: 7px 16px; border-radius: 4px; font-size: 0.88rem; font-weight: 600; }
.btn-admin-yellow:hover { background: var(--yellow-dark); }
.admin-table th { background: var(--dark); color: var(--yellow); font-family: var(--font-head); font-size: 0.88rem; }
.admin-table td { font-size: 0.88rem; vertical-align: middle; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-slider .carousel-item, .hero-slide-img { height: 380px; }
  .hero-content { padding: 0 5%; }
  .hero-title { font-size: 1.5rem; }
  .admin-sidebar { width: 100%; min-height: auto; position: relative; }
  .admin-main { margin-left: 0; padding: 16px; }
  .top-info { display: none; }
}
