* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f2937;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

/* Keep booking modals above the fixed navbar on all pages. */
#bookingModal.modal.show,
#bookingConfirmModal.modal.show {
  z-index: 2005 !important;
}

.modal-backdrop.show {
  z-index: 2000 !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff !important;
}

.logo-icon {
  width: 80px;
  height: 60px;
  margin-right: 10px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1.2rem !important;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1.05rem;
}

.nav-link:hover,
.nav-link:focus {
  color: #f97316 !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #dc2626 0%, #f97316 100%);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 80%;
}

/* Hero Section */
.hero {
  background:
    linear-gradient(
      135deg,
      rgba(31, 41, 55, 0.95) 0%,
      rgba(55, 65, 81, 0.95) 100%
    ),
    url("../image/hero-banner-sua-xe-luu-dong.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #dc2626 0%, #f97316 50%, #fbbf24 100%);
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero .highlight {
  background: linear-gradient(90deg, #dc2626 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary-custom {
  background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
  border: none;
  color: white;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.6);
  color: white;
}

.btn-secondary-custom {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary-custom:hover {
  background: white;
  color: #dc2626;
}

.stats-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f97316;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  margin: 0;
}

/* Section Styling */
.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dc2626 0%, #f97316 100%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid #f3f4f6;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
  border-color: #f97316;
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotateY(180deg);
}

.service-card h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.service-card p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: 5rem 0;
}

.about-image {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

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

.feature-box {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: start;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.feature-box h6 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.feature-box p {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
}

/* Booking Section */
.booking-section {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* .booking-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../image/ChatGPT\ Image\ 20_43_28\ 10\ thg\ 3\,\ 2026.png");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
} */

.booking-card {
  background: white;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.form-control,
.form-select {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

.form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: white;
}

.contact-card {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: #f97316;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.contact-card h5 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.contact-card p {
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.contact-link {
  color: #dc2626;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-link:hover {
  color: #f97316;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  padding: 3rem 0 1.5rem;
}

footer h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #f97316;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.7rem;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: #f97316;
  padding-left: 5px;
}

.social-links a {
  display: inline-flex;
  width: 45px;
  height: 45px;
  background: rgba(249, 115, 22, 0.2);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  margin-right: 0.7rem;
  color: white;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Page Header */
.page-header {
  background:
    linear-gradient(
      135deg,
      rgba(31, 41, 55, 0.95) 0%,
      rgba(55, 65, 81, 0.95) 100%
    ),
    url("../image/hero-banner-sua-xe-luu-dong.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  margin-top: 72px;
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #dc2626 0%, #f97316 50%, #fbbf24 100%);
  opacity: 0.15;
}

.page-header-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
  background: transparent;
  justify-content: center;
  margin: 0;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #f97316;
}

.breadcrumb-item.active {
  color: #f97316;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 1s ease-out;
}
.info {
  margin-left: 10px;
  padding: 5px;
}
/* Responsive */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .navbar-collapse {
    background: rgba(31, 41, 55, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .booking-card {
    padding: 2rem;
  }

  .logo-icon {
    width: 60px;
    height: 40px;
  }
  .navbar-brand span {
    font-size: 18px;
  }
  .info {
    width: auto;
  }
}
