/* ============================================================
   REASONABLE DETAILING — MAIN STYLESHEET
   Primary: #ec260e | Font: Bebas Neue + Montserrat
============================================================ */

/* ── CSS Variables ── */
:root {
  --red:        #ec260e;
  --red-dark:   #c41e0b;
  --red-light:  #ff4a2e;
  --dark:       #0f0f0f;
  --dark2:      #181818;
  --dark3:      #222222;
  --mid:        #2e2e2e;
  --grey:       #6b6b6b;
  --light-grey: #f4f4f4;
  --white:      #ffffff;
  --gold:       #c9a84c;
  --font-head:  'Bebas Neue', sans-serif;
  --font-body:  'Montserrat', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:     0 8px 40px rgba(0,0,0,0.18);
  --shadow-red: 0 8px 30px rgba(236,38,14,0.35);
  --radius:     6px;
  --radius-lg:  14px;
}

/* ── 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(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Scroll Bar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ── Selection ── */
::selection { background: var(--red); color: var(--white); }

/* ── z-index utility ── */
.z-1 { z-index: 1; }


/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.section-eyebrow.light { color: var(--red-light); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.section-title.light  { color: var(--white); }
.section-title em     { font-family: var(--font-serif); font-style: italic; font-size: 0.88em; }

.text-accent { color: var(--red); }

.rd-divider {
  width: 54px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 0.9rem 0 1.4rem;
}

.section-intro {
  font-size: 1rem;
  color: var(--grey);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-intro.light { color: rgba(255,255,255,0.75); }

.section-header { margin-bottom: 1rem; }


/* ============================================================
   BUTTONS
============================================================ */
.btn-primary-rd {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary-rd::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn-primary-rd:hover::after { transform: translateX(0); }
.btn-primary-rd:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn-outline-rd {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
}
.btn-outline-rd:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-rd-dark {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--dark);
  transition: var(--transition);
}
.btn-outline-rd-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-book {
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem !important;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-book:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.9rem;
}


/* ============================================================
   TOP BAR
============================================================ */
#topbar {
  background: var(--red);
  padding: 0.55rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  z-index: 1050;
  position: relative;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
}
.topbar-item i { font-size: 0.7rem; opacity: 0.85; }
.topbar-item a {
  color: var(--white);
  font-weight: 700;
  transition: opacity 0.2s;
}
.topbar-item a:hover { opacity: 0.8; }
.topbar-item small {
  font-size: 0.68rem;
  opacity: 0.75;
  margin-left: 0.1rem;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.topbar-social {
  color: var(--white);
  font-size: 0.82rem;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.topbar-social:hover { opacity: 1; transform: translateY(-2px); background: rgba(255,255,255,0.25); }


/* ============================================================
   NAVBAR
============================================================ */
#mainNav {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
  z-index: 1040;
}
#mainNav.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  animation: slideDown 0.35s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

#mainNav .container {
  display: flex;
  align-items: center;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

/* Logo */
.nav-logo {
  height: 100px;
  width: auto;
  transition: height 0.3s ease;
  object-fit: contain;
}
#mainNav.sticky-nav .nav-logo { height: 64px; }

@media (max-width: 1200px) { .nav-logo { height: 80px; } }
@media (max-width: 992px)  { .nav-logo { height: 64px; } }
@media (max-width: 768px)  { .nav-logo { height: 52px; } }
@media (max-width: 480px)  { .nav-logo { height: 44px; } }

/* Nav Links */
.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.navbar-nav .nav-link:hover { color: var(--red) !important; }

/* Dropdown */
.dropdown-menu {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  padding: 0.6rem 0;
  min-width: 220px;
  animation: fadeInDown 0.22s ease;
  margin-top: 0 !important;
  border-top: 3px solid var(--red);
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0.6rem 1.4rem;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.dropdown-item:hover {
  background: var(--light-grey);
  color: var(--red);
  padding-left: 1.8rem;
}

/* Hover Dropdown — desktop */
@media (min-width: 992px) {
  .hover-dropdown:hover > .dropdown-menu { display: block; }
  .hover-dropdown > .dropdown-menu { margin-top: 0 !important; }
  .nav-item.dropdown .dropdown-toggle::after { margin-left: 5px; }
}

/* Toggler */
.navbar-toggler {
  border: none;
  padding: 0.4rem;
  background: none;
  box-shadow: none !important;
  outline: none !important;
}
.toggler-icon {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-fallback {
  display: none;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* On devices where autoplay is blocked */
@media (max-width: 768px) {
  .hero-video { display: none; }
  .hero-img-fallback { display: block; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.78) 0%,
    rgba(15,15,15,0.55) 60%,
    rgba(236,38,14,0.15) 100%
  );
}

.hero-carousel-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.heroSwiper {
  width: 100%;
  min-height: 100vh;
}

.hero-slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 8rem 8% 6rem;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.hero-accent { color: var(--red); }

.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Pagination */
.hero-pagination {
  bottom: 2.5rem !important;
  left: 8% !important;
  text-align: left;
}
.hero-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.4);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--red);
  width: 28px;
  border-radius: 4px;
}

/* Hero Nav Buttons */
.hero-prev,
.hero-next {
  width: 48px !important;
  height: 48px !important;
  background: rgba(255,255,255,0.12) !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  backdrop-filter: blur(6px);
  color: var(--white) !important;
  transition: background 0.3s !important;
  top: auto !important;
  bottom: 2.5rem !important;
}
.hero-prev { right: 5rem !important; left: auto !important; }
.hero-next { right: 2rem !important; }
.hero-prev:hover,
.hero-next:hover { background: var(--red) !important; }
.hero-prev::after,
.hero-next::after { display: none !important; }
.hero-prev i, .hero-next i { font-size: 0.9rem; }

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.6); }
}


/* ============================================================
   ABOUT SECTION
============================================================ */
.section-about {
  padding: 7rem 0;
  background: var(--white);
  overflow: hidden;
}

.about-row {
  gap: 0;
  position: relative;
}

.about-photos-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.about-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover img { transform: scale(1.05); }

.about-img-accent {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--red);
  bottom: -1px;
  right: -1px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.about-img-accent.right {
  bottom: -1px;
  left: -1px;
  right: auto;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.about-text-col {
  padding: 2rem 2.5rem;
  text-align: center;
}
.about-text-inner { max-width: 500px; margin: 0 auto; }

.about-lead {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-body {
  font-size: 0.93rem;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 0.9rem;
}

.about-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.about-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.badge-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  color: var(--red);
  line-height: 1;
}
.badge-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}


/* ============================================================
   SECTION DARK (Services background)
============================================================ */
.section-services {
  padding: 7rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.section-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.88);
  z-index: 0;
}

.section-dark-alt .section-dark-overlay {
  background: rgba(10,10,10,0.82);
}


/* ============================================================
   SERVICE CARDS
============================================================ */
.service-card {
  background: var(--dark2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(255,255,255,0.05);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.service-card-alt {
  background: var(--dark3);
}

.service-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.07); }

.service-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
}
.badge-premium { background: var(--gold); color: var(--dark); }

.service-card-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.service-card-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--red);
  margin-top: 0.5rem;
}

.service-card-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.service-feature-list {
  margin-bottom: 1.4rem;
  flex: 1;
}
.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.78);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-feature-list li:last-child { border-bottom: none; }
.service-feature-list li i { color: var(--red); margin-top: 0.2rem; flex-shrink: 0; }
.service-feature-list li i.text-muted { color: rgba(255,255,255,0.3); }
.service-feature-list li em { color: rgba(255,255,255,0.45); font-style: italic; }


/* ============================================================
   VEHICLE TYPES
============================================================ */
.section-vehicles {
  padding: 7rem 0;
  background: var(--light-grey);
}

.vehicle-type-card {
  text-align: center;
  transition: transform 0.3s ease;
}
.vehicle-type-card:hover { transform: translateY(-6px); }

.vehicle-type-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--mid);
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.vehicle-type-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vehicle-type-card:hover .vehicle-type-img img { transform: scale(1.08); }

.vehicle-type-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--dark);
}

.vehicle-type-card-more .vehicle-type-img::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--white);
  background: rgba(236,38,14,0.65);
  font-family: var(--font-head);
  letter-spacing: 0;
}

.vehicle-cta-text {
  font-size: 1.05rem;
  color: var(--grey);
  margin-bottom: 1.2rem;
}


/* ============================================================
   REVIEWS
============================================================ */
.section-reviews {
  padding: 7rem 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.reviewSwiper { padding: 1rem 0.5rem 4rem; }

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(236,38,14,0.35);
}

.review-stars { color: #f5c518; font-size: 0.9rem; letter-spacing: 0.1em; }

.review-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-name {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
}
.review-location {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

.review-prev, .review-next {
  width: 44px !important;
  height: 44px !important;
  background: var(--red) !important;
  border-radius: 50% !important;
  color: var(--white) !important;
  transition: background 0.3s !important;
  top: auto !important;
  bottom: 0 !important;
}
.review-prev { left: calc(50% - 52px) !important; }
.review-next { right: calc(50% - 52px) !important; left: auto !important; }
.review-prev:hover, .review-next:hover { background: var(--red-dark) !important; }
.review-prev::after, .review-next::after { display: none !important; }
.review-prev i, .review-next i { font-size: 0.85rem; }

.review-pagination { bottom: -0.5rem !important; display: none}
.review-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.4); opacity: 1; }
.review-pagination .swiper-pagination-bullet-active { background: var(--red); }


/* ============================================================
   GALLERY
============================================================ */
.section-gallery {
  padding: 7rem 0;
  background: var(--dark2);
  overflow: hidden;
}

.gallery-row-wrap { margin-bottom: 4rem; }
.gallery-row-wrap:last-child { margin-bottom: 0; }

.gallery-ticker-wrap {
  overflow: hidden;
  width: 100%;
  cursor: pointer;
  margin-top: 2rem;
  padding: 0.5rem 0;
}
.gallery-ticker-wrap:hover .gallery-ticker { animation-play-state: paused; }

.gallery-ticker {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}
.gallery-ticker-reverse .gallery-ticker {
  animation: tickerScrollReverse 30s linear infinite;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes tickerScrollReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.gallery-item {
  display: block;
  width: 420px;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(236,38,14,0.6);
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 576px) {
  .gallery-item { width: 220px; height: 160px; }
}


/* ============================================================
   CONTACT SECTION
============================================================ */
.section-contact {
  padding: 7rem 0;
  background: var(--white);
}

/* Form */
.contact-form-wrap {
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
	overflow: hidden;
}

.form-group-rd { margin-bottom: 0.2rem; }
.form-group-rd label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.required { color: var(--red); }

.rd-input {
  background: var(--white) !important;
  border: 1.5px solid #e0e0e0 !important;
  border-radius: var(--radius) !important;
  padding: 0.7rem 1rem !important;
  font-size: 0.9rem !important;
  font-family: var(--font-body) !important;
  color: var(--dark) !important;
  transition: border-color 0.25s, box-shadow 0.25s !important;
  width: 100%;
}
.rd-input:focus {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(236,38,14,0.1) !important;
  outline: none !important;
}
.rd-textarea { resize: vertical; min-height: 110px; }

/* Checkboxes */
.rd-check-wrap { margin-bottom: 0.3rem; }
.rd-check-wrap .form-check-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
}
.form-check-input.rd-check:checked {
  background-color: var(--red);
  border-color: var(--red);
}
.form-check-input.rd-check:focus { box-shadow: 0 0 0 3px rgba(236,38,14,0.15); }

.consent-label {
  font-size: 0.74rem !important;
  color: var(--grey) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* Services checklist */
.services-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.services-checklist {
  background: var(--white);
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
}
.service-check-group { margin-bottom: 1rem; }
.service-check-group:last-child { margin-bottom: 0; }
.service-check-heading {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #eee;
}

/* Contact Info */
.contact-info-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}
.contact-info-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.92) 100%);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  overflow-y: auto;
}
.contact-info-title {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.contact-info-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--red);
  margin-top: 0.4rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.contact-info-item i {
  color: var(--red);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.contact-info-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.1rem;
}
.contact-info-val {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.contact-info-val:hover { color: var(--red-light); }

.contact-service-areas { margin-top: 0.5rem; }
.service-areas-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.service-areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem 0.5rem;
}
.service-areas-list li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  padding: 0.15rem 0;
}
.service-areas-list li::before {
  content: '✓ ';
  color: var(--red);
  font-weight: 700;
}

.contact-socials { display: flex; gap: 0.6rem; }
.contact-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: background 0.3s, transform 0.3s;
}
.contact-social-btn:hover {
  background: var(--red);
  transform: translateY(-3px);
  color: var(--white);
}


/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--dark2); }

.footer-top {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  width: 90%;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 0.8rem;
}

.footer-about {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.footer-socials a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
}

.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s, padding-left 0.25s;
}
.footer-links a:hover {
  color: var(--red-light);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.9rem;
  line-height: 1.6;
}
.footer-contact-list i {
  color: var(--red);
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}
.footer-contact-list a:hover { color: var(--red-light); }
.footer-contact-list small { color: rgba(255,255,255,0.35); font-size: 0.72rem; }

/* Footer Bottom */
.footer-bottom {
  padding: 1.4rem 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-payment {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.payment-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 0.3rem;
}
.payment-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  padding: 0.2rem 0.5rem;
}


/* ============================================================
   FLOATING CTA
============================================================ */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 24px rgba(236,38,14,0.5);
  z-index: 9999;
  transition: transform 0.3s, background 0.3s;
  animation: floatPulse 2.5s ease-in-out infinite;
}
.float-cta:hover {
  transform: scale(1.12) translateY(-2px);
  background: var(--red-dark);
  color: var(--white);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(236,38,14,0.5); }
  50%       { box-shadow: 0 6px 40px rgba(236,38,14,0.8); }
}


/* ============================================================
   GLIGHTBOX OVERRIDES
============================================================ */
.glightbox-clean .gclose {
  background: var(--red) !important;
}
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: var(--red) !important;
}


/* ============================================================
   RESPONSIVE ADJUSTMENTS
============================================================ */
@media (max-width: 1199px) {
  .about-img-wrap img { height: 180px; }
}

@media (max-width: 991px) {
  .about-photos-col { flex-direction: row; }
  .about-img-wrap   { flex: 1; }
  .about-img-wrap img { height: 180px; }
  .about-text-col  { padding: 2.5rem 1rem; order: -1; }
  .hero-slide-content { padding: 8rem 5% 7rem; }
  .hero-prev { right: 4rem !important; bottom: 1.5rem !important; }
  .hero-next { right: 1rem !important; bottom: 1.5rem !important; }
  .hero-pagination { bottom: 1.5rem !important; }

  .contact-info-overlay { position: relative; inset: auto; }
  .contact-img { min-height: 250px; }
}

@media (max-width: 767px) {
  #topbar { display: none; }

  .about-photos-col { display: none; }
  .about-text-col { order: 0; padding: 2rem 0.5rem; }

  .hero-slide-content { padding: 7rem 1.5rem 8rem; max-width: 100%; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }

  .section-about,
  .section-services,
  .section-vehicles,
  .section-reviews,
  .section-gallery,
  .section-contact { padding: 4.5rem 0; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-payment { justify-content: center; }
  .footer-logo { height: 52px; }
  .footer-about { max-width: 100%; }

  .service-areas-list { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 1.4rem; }

  .vehicle-type-img { aspect-ratio: 1/1; }
}

@media (max-width: 480px) {
  .topbar-left { gap: 0.6rem; font-size: 0.72rem; }
  .hero-btns { flex-direction: column; }
  .about-badges { gap: 1rem; }
  .badge-num { font-size: 2rem; }
}

/* AOS custom distance */
[data-aos="fade-up"]    { transform: translateY(24px); }
[data-aos="fade-down"]  { transform: translateY(-24px); }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-left"]  { transform: translateX(24px); }
