body {
  font-family: "Kanit", sans-serif;
  padding-top: 70px;
  /* Space for fixed navbar */
  background-color: #f3f4f6;
  background-image:
    radial-gradient(at 0% 0%, var(--primary-color) 0, transparent 50%),
    radial-gradient(at 100% 0%, var(--primary-color) 0, transparent 50%);
  background-repeat: no-repeat;
  background-size: 100% 600px;
  /* Gradient only at the top area underneath hero */
  background-attachment: fixed;
}

/* Custom Colors to match original theme */
:root {
  --primary-color: #1e40af;
  /* blue-800 */
  --primary-dark: #1e3a8a;
  /* blue-900 */
  --accent-color: #f97316;
  /* orange-500 */
}
.nav-link {
  color: white !important;
}

.text-primary-custom {
  color: var(--primary-color);
}

.text-accent {
  color: var(--accent-color);
}

.bg-primary-custom {
  background-color: var(--primary-color);
}

.bg-primary-dark {
  background-color: var(--primary-dark);
}

.bg-accent {
  background-color: var(--accent-color);
}

.btn-primary-custom {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-primary-custom:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.btn-accent:hover {
  background-color: #ea580c;
  color: white;
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-dark);
}

/* Glassmorphism Effects */
.glass-white {
  background: rgb(155 178 255 / 35%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgb(230 236 247 / 50%);
  box-shadow: inset 1px 3px 8px 0 rgba(31, 38, 135, 0.1);
}

.glass {
  background: rgba(255, 255, 255, 35%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.glass-dark {
  background: rgba(33, 37, 41, 35%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-glass {
  background: rgba(255, 255, 255, 35%) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  min-height: 600px;
  border-radius: 0 0 50px 50px;
  /* Slight curve at bottom */
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Service Cards Hover Effect */
.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Image Hover Zoom & Cursor */
.img-zoom-container {
  overflow: hidden;
  cursor: pointer;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.img-zoom-container img {
  transition: transform 0.5s ease;
}

.img-zoom-container:hover img {
  transform: scale(1.1);
}

/* Testimonial Avatar */
.testimonial-avatar {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

/* Footer Tag */
.footer-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: #ccc;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-right: 4px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tag:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

/* Mobile Footer */
.mobile-footer-btn {
  border-radius: 0;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
}

.mobile-footer-btn i {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

/* Tracking Section Style */
.tracking-box {
  /* Now using .glass class directly in HTML */
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  z-index: 10;
  margin-top: -80px;
  /* Overlap effect */
}

/* Input Fields - Better Touch Targets */

/* Page Header Specific */
.page-header-info {
  background: var(--primary-dark);
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  margin-bottom: 3rem;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.page-header-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}
/* Zigzag Layout Styles */
.service-row-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
}
.service-row-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.service-row-img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-row-card:hover .service-row-img {
  transform: scale(1.05);
}

.spec-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.spec-list i {
  width: 25px;
  text-align: center;
  margin-right: 10px;
}

/* Step Process */
.step-circle {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(30, 64, 175, 0.3);
}
.step-item {
  position: relative;
}
.step-item::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #cbd5e1;
  z-index: 0;
  display: none;
}
@media (min-width: 768px) {
  .step-item:not(:last-child)::after {
    display: block;
  }
}

/* Accordion Custom */
.accordion-glass .accordion-item {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  border-radius: 1rem !important;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.accordion-glass .accordion-button {
  background: transparent;
  font-weight: 500;
  color: var(--primary-dark);
}
.accordion-glass .accordion-button:not(.collapsed) {
  background: rgba(30, 64, 175, 0.1);
  color: var(--primary-color);
  box-shadow: none;
}
.accordion-glass .accordion-button:focus {
  box-shadow: none;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero-bg {
    min-height: 480px;
    /* Reduced height for mobile */
    border-radius: 0 0 30px 30px;
  }

  .display-3 {
    font-size: 2.5rem;
    /* Smaller font for mobile title */
  }

  .tracking-box {
    margin-top: -60px !important;
    /* Less overlap on mobile */
    padding: 1.5rem !important;
  }

  /* Adjust spacing for mobile */
  section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .navbar-brand {
    font-size: 0.9rem;
    /* Smaller logo text */
  }
}

/* --- Areas Page --- */
/* Search Section Removed - Using Unified Design */

.region-card {
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s;
  background: #fff;
  border: 1px solid #eee;
}

.region-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.region-header {
  background: var(--primary-color);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.region-header.central {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}
.region-header.north {
  background: linear-gradient(135deg, #059669, #047857);
}
.region-header.northeast {
  background: linear-gradient(135deg, #d97706, #b45309);
}
.region-header.east {
  background: linear-gradient(135deg, #0891b2, #0e7490);
}
.region-header.south {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}
.region-header.west {
  background: linear-gradient(135deg, #db2777, #be185d);
}
.region-body {
  padding: 20px;
}
.province-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
}

.province-list li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: center;
}

.province-list li::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 0.8rem;
}

.table-custom thead {
  background: var(--primary-dark);
  color: white;
}

.table-custom th,
.table-custom td {
  padding: 15px;
  vertical-align: middle;
}

.map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #e9ecef;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-overlay {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* --- Area Details --- */
.area-hero {
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.area-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px;
  color: white;
}

.district-badge {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #555;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}

.district-badge:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.route-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.map-container-detail {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  background: #eee;
  position: relative;
}

.sticky-sidebar {
  position: sticky;
  top: 100px;
  z-index: 10;
}

/* --- Blog & Blog Details --- */
.article-cover {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.article-content h2,
.article-content h3 {
  color: var(--primary-dark);
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.quote-box {
  border-left: 4px solid var(--accent-color);
  background: rgba(249, 115, 22, 0.1);
  padding: 1.5rem;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  margin: 2rem 0;
  color: #555;
}

.author-box {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.sidebar-widget {
  margin-bottom: 30px;
}

.widget-title {
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  text-decoration: none;
  color: #555;
  display: flex;
  justify-content: space-between;
  transition: color 0.2s;
}

.category-list a:hover {
  color: var(--primary-color);
}

.category-count {
  background: #eee;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
}

.related-post-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s;
  border: 1px solid #eee;
  background: white;
}

.related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-post-img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.blog-card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--primary-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #333;
  transition: color 0.2s;
}

.blog-card:hover .blog-title {
  color: var(--primary-color);
}

.blog-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Featured Blog Card Hover */
.blog-card-featured {
  cursor: pointer;
  transition: all 0.4s ease;
}

.blog-card-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.blog-card-featured:hover .blog-featured-img {
  transform: scale(1.05);
}

.blog-card-featured:hover .featured-title {
  color: var(--primary-color);
}

.blog-featured-img {
  transition: transform 0.6s ease;
}

/* --- Portfolio --- */
.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  border: none;
  background: rgba(255, 255, 255, 0.5);
  color: #555;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 10px rgba(30, 64, 175, 0.2);
}

.portfolio-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-img-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.1);
}

.portfolio-action {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.portfolio-item:hover .portfolio-action {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.portfolio-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 8px;
}

.portfolio-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.4;
}

.portfolio-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio-location {
  margin-top: auto;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #888;
  border-top: 1px dashed #eee;
  display: flex;
  align-items: center;
}

/* --- Service Details --- */
.main-img-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.main-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.main-img-wrapper:hover img {
  transform: scale(1.05);
}

.thumb-img {
  height: 80px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all 0.2s;
}

.thumb-img.active,
.thumb-img:hover {
  border-color: var(--primary-color);
  opacity: 1;
}

.highlight-item {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.2s;
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: rgba(30, 64, 175, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.2rem;
}

.specs-table-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #ddd;
}

.other-car-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
  transition: all 0.2s;
}

.other-car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.other-car-img {
  height: 120px;
  width: 100%;
  object-fit: cover;
}

.sticky-booking-card {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.price-display {
  background: linear-gradient(135deg, var(--primary-color), #1e3a8a);
  color: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-display::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  transform: rotate(45deg);
}

.work-img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
}

.work-img:hover {
  transform: scale(1.03);
}

/* --- Tracking --- */
.timeline {
  position: relative;
  padding-left: 3rem;
  margin-top: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e9ecef;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-icon {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: #999;
}

.timeline-item.active .timeline-icon {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
}

.timeline-item.completed .timeline-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.timeline-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.25rem;
}

.timeline-desc {
  font-size: 0.95rem;
  color: #666;
}

.driver-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 15px;
}

.driver-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
  margin-right: 15px;
}

.tracking-map {
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  opacity: 0.8;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Animations */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-slide-up {
  animation: slideUp 0.5s ease-out forwards;
}

.animate-fade-out {
  animation: fadeOut 0.5s ease-in forwards;
}

.animate-pulse {
  animation: pulse 2s infinite ease-in-out;
}

/* Cookie Banner Enhancements */
#cookie-banner {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  max-width: 600px;
  right: 0;
  left: 0;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 768px) {
  #cookie-banner {
    margin: 15px !important;
    border-radius: 20px !important;
  }
}

/* Promotion Modal Enhancements */
#promotionPopup .modal-content {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

#promotionPopup .btn-close {
  background-color: white;
  opacity: 1;
  border-radius: 50%;
  padding: 10px;
  background-size: 50%;
}

/* --- Services & Booking Process --- */
.service-row-card img {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-row-card:hover img {
  transform: scale(1.05);
}

.hover-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: color-mix(in srgb, var(--primary-color), transparent 95%);
  box-shadow: none;
}

.booking-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.booking-step-item:hover .booking-icon-wrapper {
  transform: rotate(15deg) scale(1.1);
  border-radius: 50% !important;
}

.booking-step-item {
  transition: transform 0.3s ease;
}

.booking-step-item:hover {
  transform: translateY(-5px);
}

/* --- Portfolio Gallery Swiper --- */
.portfolio-gallery-swiper .swiper {
  width: 100%;
  height: 100%;
}

.portfolio-gallery-swiper .swiper-main {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: #000;
}

.portfolio-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 70vh;
  object-fit: contain;
}

.portfolio-gallery-swiper .swiper-thumbs {
  padding: 10px 0;
  background: #fff;
  border-radius: 0 0 12px 12px;
}

.portfolio-gallery-swiper .swiper-thumbs .swiper-slide {
  width: 80px;
  height: 60px;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
}

.portfolio-gallery-swiper .swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--primary-color);
}

.portfolio-gallery-swiper .swiper-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Peek-ahead effect for thumbnails */
.swiper-thumbs-container {
  position: relative;
  padding: 0 15px;
  background: #fff;
}

/* --- Areas Page --- */
.province-link {
  transition: all 0.2s;
  color: #4b5563;
}

.province-link:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* --- Service Details --- */
.service-details .main-img-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
}

.service-details .thumb-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-details .thumb-img:hover,
.service-details .thumb-img.active {
  opacity: 1;
  border-color: var(--primary-color);
}

.service-details .highlight-item {
  background: white;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s ease;
}

.service-details .highlight-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-details .highlight-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--primary-color), transparent 90%);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.25rem;
}

.service-details .specs-table-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.service-details .specs-table-row:last-child {
  border-bottom: none;
}

.service-details .price-display {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  color: white;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 25px;
}

.service-details .sticky-booking-card {
  position: sticky;
  top: 100px;
}

.service-details .work-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.service-details .work-img:hover {
  transform: scale(1.05);
}

.service-details .other-car-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

.service-details .width-20 {
  width: 20px;
  text-align: center;
}

@media (max-width: 991px) {
  .service-details .main-img-wrapper img {
    height: 300px;
  }
}
/* --- Route Cards V2 (Logistics Ticket Style) --- */
.route-card-v2 {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background-image: radial-gradient(
    at 100% 0%,
    rgba(var(--primary-rgb), 0.03) 0%,
    transparent 50%
  );
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.route-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.route-card-v2 .card-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-color);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 15px;
  border-bottom-left-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.route-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.route-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--primary-color), transparent 92%);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.route-card-v2:hover .route-icon-box {
  background: var(--primary-color);
  color: white;
}

.route-info label {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.route-info strong {
  font-size: 1.1rem;
  color: #1e293b;
  display: block;
}

.route-path-visual {
  padding-left: 20px;
  margin: -5px 0;
  position: relative;
}

.path-line {
  width: 2px;
  height: 30px;
  background: repeating-linear-gradient(
    to bottom,
    #cbd5e1 0,
    #cbd5e1 4px,
    transparent 4px,
    transparent 8px
  );
  margin-left: -1px;
}

.route-card-v2:hover .path-line {
  background: repeating-linear-gradient(
    to bottom,
    var(--primary-color) 0,
    var(--primary-color) 4px,
    transparent 4px,
    transparent 8px
  );
}

.route-footer-v2 {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px dashed #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-tag {
  display: flex;
  flex-direction: column;
}

.price-tag .small-label {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
}

.price-tag .amount {
  color: #059669;
  font-weight: 800;
  font-size: 1.1rem;
}

.btn-route-action {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
}

.route-card-v2:hover .btn-route-action {
  background: var(--primary-color);
  color: white;
  transform: rotate(-45deg);
}

/* --- Area Details & Sales Page Premium Styles --- */
.area-hero-premium {
  min-height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 60px 60px;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  margin-bottom: -100px;
  z-index: 1;
}

.floating-info-card {
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.watermark-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  transition: all 0.5s ease;
}

.bg-light .watermark-icon,
.section-light .watermark-icon {
  color: rgba(0, 0, 0, 0.05);
}

.z-1 {
  z-index: 1;
  position: relative;
}

@media (max-width: 768px) {
  .area-hero-premium {
    min-height: 400px;
    border-radius: 0 0 40px 40px;
    background-attachment: scroll;
  }
}

.ls-1 {
  letter-spacing: 1px;
}
.ls-2 {
  letter-spacing: 2px;
}
.ls-n1 {
  letter-spacing: -1px;
}

.bg-white-10 {
  background: rgba(255, 255, 255, 0.1);
}
.bg-white-05 {
  background: rgba(255, 255, 255, 0.05);
}
.bg-accent-dark {
  color: #854d0e;
}
.border-white-10 {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.hover-bg-white-05:hover {
  background: rgba(255, 255, 255, 0.08);
}
.text-dark-50 {
  color: rgba(0, 0, 0, 0.5);
}

.route-line-ui {
  height: 2px;
  background: #cbd5e1;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.route-icon-animate {
  position: relative;
  z-index: 1;
  background: white;
  padding: 0 5px;
  display: inline-block;
  animation: truck-run 4s infinite linear;
}

@keyframes truck-run {
  0% {
    transform: translateX(-15px);
  }
  50% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(-15px);
  }
}

.coverage-table-modern thead th {
  text-transform: uppercase;
  font-weight: 700;
}

.coverage-table-modern tbody tr:hover {
  background-color: #f8fafc;
}

.portfolio-item-sales {
  cursor: pointer;
}

.portfolio-item-sales .overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.9) 0%,
    transparent 60%
  );
  opacity: 0.85;
  transition: all 0.3s ease;
}

.portfolio-item-sales:hover .overlay-gradient {
  opacity: 1;
}

.portfolio-item-sales:hover img {
  transform: scale(1.05);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.03);
}

/* Truck moving animation for routes */
@keyframes truck-move {
  0% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(-10px);
  }
}

/* --- Coverage Table Mobile Responsiveness --- */
/* --- Coverage Table Mobile - Maintain Table Style without Squashing --- */
@media (max-width: 768px) {
  .coverage-table-modern {
    min-width: 700px; /* ยืนยันความกว้างขั้นต่ำไม่ให้หด */
  }

  /* ตกแต่ง Scrollbar ให้ดูพรีเมียม */
  .table-responsive::-webkit-scrollbar {
    height: 4px;
  }
  .table-responsive::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    opacity: 0.3;
  }
  .table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  /* ปรับขนาดตัวอักษรเล็กน้อยในมือถือ */
  .coverage-table-modern td,
  .coverage-table-modern th {
    padding: 1rem 0.75rem !important;
    white-space: nowrap; /* ป้องกันการขึ้นบรรทัดใหม่จนเสียทรง */
  }

  /* อนุมัติให้ช่องคำอธิบายขึ้นบรรทัดใหม่ได้บ้างแต่ไม่ให้บีบมาก */
  .coverage-table-modern td:nth-child(2) {
    white-space: normal;
    min-width: 250px;
  }

  /* Terms Section mobile tweak */
  .terms-style {
    font-size: 0.95rem;
  }
  .terms-style ul,
  .terms-style ol {
    padding-left: 1.25rem;
  }
}

/* --- Redesigned Premium Footer --- */
.main-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #cbd5e1;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(249, 115, 22, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.footer-column-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.footer-column-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.footer-link {
  color: rgba(203, 213, 225, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.footer-link:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-link i {
  font-size: 0.7rem;
  color: var(--accent-color);
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.social-icon-btn:hover {
  background: var(--accent-color);
  color: #000 !important;
  transform: translateY(-5px) rotate(8deg);
  border-color: var(--accent-color);
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-contact-info label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.footer-contact-info p,
.footer-contact-info a {
  color: #f1f5f9;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 1rem;
}

.bottom-bar {
  background: var(--primary-dark);
  padding: 1.5rem 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 991px) {
  .main-footer {
    padding-top: 3rem;
  }
  .footer-column-title {
    margin-bottom: 1.5rem;
  }
}

/* --- Mobile Menu Modal (Premium Menu Card) --- */
.navbar-toggler-icon-custom {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar-toggler-icon-custom span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-modal .modal-content {
  border-radius: 30px 30px 0 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 576px) {
  .mobile-menu-modal .modal-content {
    border-radius: 30px;
  }
}

.btn-close-custom {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #64748b;
  transition: all 0.2s;
}

.btn-close-custom:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: rotate(90deg);
}

.menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-decoration: none !important;
  color: #334155;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(241, 245, 249, 1);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.1);
  border-color: rgba(30, 64, 175, 0.2);
  color: var(--primary-color);
}

.menu-card.active {
  background: var(--primary-color);
  color: white !important;
}

.menu-card.active .menu-card-icon {
  color: white !important;
}

.menu-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--primary-color);
  transition: transform 0.3s;
}

.menu-card:hover .menu-card-icon {
  transform: scale(1.15);
}

.menu-card span {
  font-size: 0.95rem;
  font-weight: 600;
}

.menu-card-wide {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-decoration: none !important;
  color: #334155;
  transition: all 0.3s;
  border: 1px solid rgba(241, 245, 249, 1);
}

.menu-card-wide .menu-card-icon {
  margin-bottom: 0;
  margin-right: 15px;
  font-size: 1.4rem;
}

.menu-card-wide span {
  font-weight: 600;
}

.menu-card-wide:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.1);
}

.menu-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  border-radius: 15px;
  background: rgb(255 255 255);
  text-decoration: none !important;
  color: #1e293b;
  transition: all 0.2s;
}

.menu-contact-item:hover {
  background: #f1f5f9;
}

.menu-contact-item .icon-box {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-contact-info label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.footer-contact-info p,
.footer-contact-info a {
  color: #f1f5f9;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 1rem;
}

.bottom-bar {
  background: var(--primary-dark);
  padding: 1.5rem 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 991px) {
  .main-footer {
    padding-top: 3rem;
  }
  .footer-column-title {
    margin-bottom: 1.5rem;
  }
}

/* --- Mobile Menu Modal (Premium Menu Card) --- */
.navbar-toggler-icon-custom {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar-toggler-icon-custom span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-modal .modal-content {
  border-radius: 30px 30px 0 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 576px) {
  .mobile-menu-modal .modal-content {
    border-radius: 30px;
  }
}

.btn-close-custom {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #64748b;
  transition: all 0.2s;
}

.btn-close-custom:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: rotate(90deg);
}

.menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-decoration: none !important;
  color: #334155;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(241, 245, 249, 1);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.1);
  border-color: rgba(30, 64, 175, 0.2);
  color: var(--primary-color);
}

.menu-card.active {
  background: var(--primary-color);
  color: white !important;
}

.menu-card.active .menu-card-icon {
  color: white !important;
}

.menu-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--primary-color);
  transition: transform 0.3s;
}

.menu-card:hover .menu-card-icon {
  transform: scale(1.15);
}

.menu-card span {
  font-size: 0.95rem;
  font-weight: 600;
}

.menu-card-wide {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-decoration: none !important;
  color: #334155;
  transition: all 0.3s;
  border: 1px solid rgba(241, 245, 249, 1);
}

.menu-card-wide .menu-card-icon {
  margin-bottom: 0;
  margin-right: 15px;
  font-size: 1.4rem;
}

.menu-card-wide span {
  font-weight: 600;
}

.menu-card-wide:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.1);
}

.menu-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  border-radius: 15px;
  background: rgb(255 255 255);
  text-decoration: none !important;
  color: #1e293b;
  transition: all 0.2s;
}

.menu-contact-item:hover {
  background: #f1f5f9;
}

.menu-contact-item .icon-box {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ==========================================================================
   SERVICE DETAILS PAGE
   ========================================================================== */

.service-details .breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  color: #94a3b8;
}

.main-img-wrapper {
  height: 450px;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.main-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

.thumb-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.thumb-img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.thumb-img.active {
  border-color: var(--primary-color);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.highlight-item {
  background: white;
  padding: 1.5rem;
  border-radius: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f1f5f9;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: rgba(30, 64, 175, 0.05);
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
  background: var(--primary-color);
  color: white;
  transform: rotate(10deg);
}

.specs-table-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.specs-table-row:last-child {
  border-bottom: none;
}

.width-20 {
  width: 20px;
  display: inline-block;
  text-align: center;
}

.sticky-booking-card {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.price-display {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-color) 100%
  );
  color: white;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-display::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
}

.price-display .display-4 {
  font-weight: 800;
  letter-spacing: -1px;
}

.other-car-card {
  border-radius: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.other-car-card:hover {
  background: white;
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
}

.other-car-img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.other-car-card:hover .other-car-img {
  transform: scale(1.1);
}

.hover-lift {
  transition: transform 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
}

.animate-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

.fw-black {
  font-weight: 900;
}

.loading-skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.glass-premium {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.fs-xs {
  font-size: 0.75rem;
}
