:root {
  --primary: #ff7a00;
  --primary-dark: #d9590a;
  --secondary: #0b2e4f;
  --secondary-light: #134a7a;
  --light: #f7f8fb;
  --muted: #6c757d;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 46, 79, 0.08);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  color: #2b2b2b;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
}

a {
  text-decoration: none;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 14px;
}

.btn-primary-custom {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.35);
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-custom:hover {
  background: #fff;
  color: var(--secondary);
}

/* Navbar */
.navbar-custom {
  background: rgba(11, 46, 79, 0.97);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  padding: 14px 0;
}
.navbar-custom.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}
.navbar-custom .navbar-brand {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-custom .navbar-brand img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.navbar-custom .nav-link {
  color: #e9eef5 !important;
  font-weight: 500;
  margin: 0 6px;
  position: relative;
}
.navbar-custom .nav-link.active,
.navbar-custom .nav-link:hover {
  color: var(--primary) !important;
}
.navbar-custom .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

/* Hero */
.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, rgba(11,46,79,0.88), rgba(11,46,79,0.65)),
    url("../images/hero.jpg") center/cover no-repeat;
  color: #fff;
}
.hero-section h1 {
  font-size: 3.2rem;
  line-height: 1.15;
}
.hero-section .tagline {
  font-size: 1.15rem;
  color: #dfe7f0;
  max-width: 560px;
}
.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 14px 20px;
  min-width: 140px;
}
.hero-badge h4 {
  color: var(--primary);
  margin: 0;
  font-size: 1.6rem;
}
.hero-badge span {
  font-size: 0.85rem;
  color: #dfe7f0;
}

.hero-side-img {
  max-height: 480px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

/* Sections */
section {
  padding: 90px 0;
}
.bg-light-custom {
  background: var(--light);
}

/* Vehicle Cards */
.vehicle-card {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  background: #fff;
}
.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 46, 79, 0.18);
}
.vehicle-card .img-wrap {
  overflow: hidden;
  height: 220px;
}
.vehicle-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vehicle-card:hover .img-wrap img {
  transform: scale(1.1);
}
.vehicle-card .card-body {
  padding: 22px;
}
.vehicle-card .price-tag {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.3rem;
}
.vehicle-card .capacity-badge {
  background: var(--light);
  color: var(--secondary);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* About */
.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(255, 122, 0, 0.12);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* Contact */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.form-label-custom {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--secondary);
  margin-bottom: 6px;
  display: block;
}
.form-control-custom {
  width: 100%;
  border: 1.5px solid #e3e7ed;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.form-control-custom:focus {
  outline: none;
  border-color: var(--primary);
}
.contact-info-card {
  background: var(--secondary);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  height: 100%;
}
.contact-info-card .info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info-card .info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 122, 0, 0.18);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--secondary);
  color: #cfd8e3;
  padding: 60px 0 0;
}
.site-footer h5 {
  color: #fff;
  margin-bottom: 18px;
}
.site-footer a {
  color: #cfd8e3;
  transition: color 0.2s ease;
}
.site-footer a:hover {
  color: var(--primary);
}
.footer-links li {
  margin-bottom: 10px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  margin-right: 10px;
}
.social-icons a:hover {
  background: var(--primary);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 18px 0;
  text-align: center;
  font-size: 0.88rem;
}

/* Scroll to top */
/* Floating WhatsApp + CTA buttons */
.floating-actions {
  position: fixed;
  bottom: 96px;
  right: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  z-index: 999;
}
.whatsapp-float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}
.cta-float {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.cta-float:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.5);
}
@media (max-width: 576px) {
  .floating-actions { right: 16px; bottom: 86px; }
  .cta-float-label { display: none; }
  .cta-float { padding: 14px; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
}

/* Scroll to top */
.scroll-top-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
}
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Page header for service.html */
.page-header {
  background: linear-gradient(135deg, rgba(11,46,79,0.92), rgba(11,46,79,0.75)),
    url("../images/hero.jpg") center/cover no-repeat;
  padding: 140px 0 70px;
  color: #fff;
  text-align: center;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Form messages */
.form-msg {
  padding: 12px 16px;
  border-radius: 10px;
  margin-top: 18px;
  font-size: 0.92rem;
  display: none;
}
.form-msg.success {
  background: #e3f8ec;
  color: #157347;
  display: block;
}
.form-msg.error {
  background: #fdecea;
  color: #c0392b;
  display: block;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .hero-section h1 { font-size: 2.2rem; }
  .hero-section { min-height: auto; padding: 140px 0 60px; }
  .contact-form-wrap { padding: 24px; }
  .contact-info-card { padding: 28px; margin-top: 24px; }
}
