/* ─── Typography ────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--yellow);
}
.page-template-template-contact .section-label::before{background: var(--black);}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--black);
  line-height: 1.0;
  margin-bottom: 18px;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--yellow-deep);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.8;
  margin: 0 auto;
}

/* ─── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-yellow);
}
.btn-yellow:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,196,0,0.40);
}

.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-black:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.sp-main ul {list-style: disc !important;}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-white:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-outline-black {
  border: 2px solid var(--black);
  color: var(--black);
}
.btn-outline-black:hover {
  background: var(--black);
  color: var(--yellow);
}

.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ─── Header ────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(13,13,13,0.97);

}

.site-header.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Top bar */
.header-topbar {
  background: var(--yellow);
  padding: 7px 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  transition: var(--transition);
}
.site-header.scrolled .header-topbar { display: none; }
.header-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 14px; height: 14px; fill: var(--black); }

/* Main nav */
.header-main { background: rgba(13,13,13,0.0); }
.site-header.scrolled .header-main { background: transparent; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 30px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--yellow);
  line-height: 1;
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--yellow); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--yellow-light) !important; color: var(--black) !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--yellow);
  transition: var(--transition);
}

/* ─── Footer ────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-tagline {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--light-grey);
  line-height: 1.8;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--yellow); border-color: var(--yellow); }
.social-link:hover svg { fill: var(--black); }
.social-link svg { width: 16px; height: 16px; fill: var(--white); }

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--light-grey);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--yellow); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--light-grey); margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--yellow); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: center;
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: var(--yellow); }

/* ─── Hero ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

/* Diagonal stripe accent */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: var(--yellow);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.015) 30px,
    rgba(255,255,255,0.015) 31px
  );
  z-index: 1;
}

/* Hero image layer over yellow */
.hero-image-overlay {
  position: absolute;
  right: 0; top: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245,196,0,0.3) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16rem;
  overflow: hidden;
}
.hero-emoji-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(3,1fr);
  opacity: 0.06;
  font-size: 8rem;
  align-items: center;
  justify-items: center;
}

.hero-badge {
  position: absolute;
  top: 50px; right: 48px;
  z-index: 10;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--yellow);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: 160px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
}

.hero-text {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.hero-eyebrow-line { width: 36px; height: 2px; background: var(--yellow); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero-title .highlight {
  color: var(--yellow);
  display: block;
}
.hero-title .italic-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  font-size: 0.75em;
  letter-spacing: 0;
  color: rgba(255,255,255,0.7);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
  max-width: 380px;
}
.hero-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.hero-stat:hover { background: rgba(245,196,0,0.12); border-color: rgba(245,196,0,0.3); }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 600;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--yellow), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ─── Services Section ──────────────────────── */
.services { padding: var(--section-pad); background: var(--off-white); }
.services-content {}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 60px;
}
.services-header-right { text-align: right; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--yellow);
  transition: height var(--transition);
  z-index: 0;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); z-index: 2; }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .service-num { color: var(--black); }
.service-card:hover .service-icon-wrap { background: var(--white); }

.service-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--yellow-deep);
  margin-bottom: 20px;
}

.service-icon-wrap {
  width: 54px; height: 54px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background var(--transition);
}
.service-icon-wrap svg { width: 26px; height: 26px; fill: var(--black); }

.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.service-desc {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.8;
  transition: color var(--transition);
}

/* ─── Why Us ────────────────────────────────── */
.why-us { padding: var(--section-pad); background: var(--black); }
.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.why-us-left .section-title { color: var(--white); }
.why-us-left .section-subtitle { color: var(--light-grey); }

.why-list { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--yellow);
  transition: var(--transition);
}
.why-item:hover {
  background: rgba(245,196,0,0.06);
  border-left-color: var(--yellow-light);
}
.why-icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 22px; height: 22px; fill: var(--black); }
.why-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 5px;
}
.why-item p { font-size: 0.86rem; color: var(--light-grey); line-height: 1.7; }

.why-right {}
.why-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.why-visual-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: var(--transition);
}
.why-visual-card:hover { transform: scale(1.03); }
.why-visual-card:nth-child(1) { background: var(--yellow); grid-row: span 2; aspect-ratio: auto; }
.why-visual-card:nth-child(2) { background: var(--charcoal); }
.why-visual-card:nth-child(3) { background: var(--dark); }
.why-visual-card .overlay-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  padding: 20px;
}
.why-visual-card:nth-child(1) .overlay-text { background: rgba(245,196,0,0.1); }
.vc-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.why-visual-card:nth-child(2) .vc-number,
.why-visual-card:nth-child(3) .vc-number { color: var(--yellow); font-size: 2.8rem; }
.vc-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  margin-top: 6px;
}
.why-visual-card:nth-child(2) .vc-label,
.why-visual-card:nth-child(3) .vc-label { color: rgba(255,255,255,0.6); }

/* ─── Tour Packages ─────────────────────────── */
.tours { padding: var(--section-pad); }
.tours-content {}
.tours-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tour-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  transition: var(--transition);
  cursor: pointer;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.tour-image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.tour-image-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: transform 0.5s ease; }
.tour-card:hover .tour-image-inner { transform: scale(1.08); }

.tour-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}
.tour-tag.hot { background: var(--accent-red); color: var(--white); }
.tour-tag.new { background: var(--accent-blue); color: var(--white); }

.tour-info { padding: 24px; }
.tour-meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}
.tour-meta span { display: flex; align-items: center; gap: 5px; }
.tour-meta svg { width: 13px; height: 13px; fill: var(--yellow-deep); }

.tour-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.15;
}
.tours-grid .tour-name a:hover, .blog-card-title a:hover{
  color: var(--yellow);
}
.tour-desc { font-size: 0.85rem; color: var(--grey); line-height: 1.75; margin-bottom: 20px; }

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.tour-price {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}
.tour-price strong {
  display: block;
  font-size: 1.8rem;
  color: var(--black);
  letter-spacing: -0.02em;
}

.book-btn {
  padding: 10px 20px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: none; cursor: pointer;
}
.book-btn:hover { background: var(--black); color: var(--yellow); transform: scale(1.04); }

/* ─── Testimonials ──────────────────────────── */
.testimonials { padding: var(--section-pad); background: var(--yellow); }
.testimonials-content {}
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header .section-label { color: var(--black); }
.testimonials-header .section-label::before { background: var(--black); }
.testimonials-header .section-title { color: var(--black); }

.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.testi-card {
  background: var(--black);
  border-radius: var(--radius-md);
  padding: 34px;
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }

.testi-stars { color: var(--yellow); font-size: 1rem; letter-spacing: 3px; margin-bottom: 18px; }
.testi-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--yellow);
  line-height: 0.5;
  margin-bottom: 14px;
  display: block;
}
.testi-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.testi-name { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; }
.testi-origin { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ─── Process / How it Works ────────────────── */
.process { padding: var(--section-pad); background: var(--off-white); }
.process-content {}
.process-header { text-align: center; margin-bottom: 70px; }
.process-header .section-subtitle { margin: 0 auto; text-align: left; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}
.process-connector {
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 10px, transparent 10px, transparent 20px);
  opacity: 0.6;
}

.process-step { text-align: center; padding: 0 20px; position: relative; }
.step-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 28px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--black);
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 24px rgba(245,196,0,0.35);
  transition: var(--transition);
}
.process-step:hover .step-circle { transform: scale(1.12); box-shadow: 0 12px 36px rgba(245,196,0,0.5); }
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 10px;
}
.step-desc { font-size: 0.85rem; color: var(--grey); line-height: 1.8; }

/* ─── Fleet / Vehicles ──────────────────────── */
.fleet { padding: var(--section-pad); background: var(--charcoal); }
.fleet-content {}
.fleet-header { margin-bottom: 56px; }
.fleet-header .section-title { color: var(--white); }
.fleet-header .section-subtitle { color: var(--light-grey); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fleet-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.fleet-card:hover {
  background: rgba(245,196,0,0.08);
  border-color: rgba(245,196,0,0.3);
  transform: translateY(-5px);
}
.fleet-icon { font-size: 3.5rem; margin-bottom: 16px; }
.fleet-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 6px;
}
.fleet-cap {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 12px;
}
.fleet-desc { font-size: 0.82rem; color: var(--light-grey); line-height: 1.7; }

/* ─── CTA Banner ────────────────────────────── */
.cta-banner {
  padding: 100px 0;
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.06);
  pointer-events: none;
}
.cta-banner-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.0;
  margin-bottom: 14px;
}
.cta-sub { font-size: 1rem; color: rgba(0,0,0,0.65); max-width: 480px; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }

/* ─── Blog Page ─────────────────────────────── */
.blog-hero {
  padding: 160px 0 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}
.blog-hero-content .section-title { color: var(--white); }
.blog-hero-content .section-label { color: var(--yellow); }
.blog-hero-content .section-label::before { background: var(--yellow); }
.blog-hero-content .section-subtitle { color: var(--light-grey); margin-top: 14px; }

.blog-main { padding: 80px 0 100px; }
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: flex-start; }

/* Featured post */
.blog-featured {
  margin-bottom: 50px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 340px;
  transition: var(--transition);
}
.blog-featured:hover { box-shadow: var(--shadow-lg); }
.blog-feat-image {
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  background: var(--yellow);
  position: relative;
}
.blog-feat-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-feat-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 14px;
  width: fit-content;
}
.blog-feat-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.1;
  cursor: pointer;
  transition: color var(--transition);
}
.blog-feat-title:hover { color: var(--yellow-deep); }
.blog-feat-excerpt { font-size: 0.88rem; color: var(--grey); line-height: 1.8; margin-bottom: 22px; }
.blog-feat-meta { font-size: 0.75rem; color: var(--light-grey); display: flex; gap: 14px; }

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  transition: var(--transition);
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.blog-card-image {
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
}
.blog-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.blog-card-body { padding: 22px; }
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.2;
  transition: color var(--transition);
}
.blog-card:hover .blog-card-title { color: var(--yellow-deep); }
.blog-card-excerpt { font-size: 0.83rem; color: var(--grey); line-height: 1.75; margin-bottom: 14px; }
.blog-card-meta { font-size: 0.72rem; color: var(--light-grey); display: flex; gap: 12px; }

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1.5px solid rgba(0,0,0,0.12);
  color: var(--grey);
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
}
.page-btn:hover, .page-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 32px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 28px;
}
.sidebar-widget-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
}
.sidebar-search {
  display: flex;
  gap: 8px;
}
.sidebar-search input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}
.sidebar-search input:focus { border-color: var(--yellow); }
.sidebar-search button {
  width: 38px; height: 38px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sidebar-search button svg { width: 16px; height: 16px; fill: var(--black); }

.sidebar-cats { display: flex; flex-direction: column; gap: 8px; }
.sidebar-cat {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}
.sidebar-cat:hover { background: var(--yellow); color: var(--black); }
.sidebar-cat-count {
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition);
}
.sidebar-cat:hover .sidebar-cat-count { background: var(--black); color: var(--yellow); }

.sidebar-recent { display: flex; flex-direction: column; gap: 14px; }
.sidebar-post {
  display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
  transition: var(--transition);
}
.sidebar-post:hover { transform: translateX(4px); }
.sidebar-post-thumb {
  width: 54px; height: 54px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  background: var(--yellow-pale);
}
.sidebar-post-title { font-size: 0.83rem; font-weight: 600; color: var(--dark); line-height: 1.4; margin-bottom: 4px; transition: color var(--transition); }
.sidebar-post:hover .sidebar-post-title { color: var(--yellow-deep); }
.sidebar-post-date { font-size: 0.72rem; color: var(--grey); }

.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tag {
  padding: 5px 14px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey);
  cursor: pointer;
  transition: var(--transition);
}
.sidebar-tag:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

/* ─── Animations ────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ─── Page Spacing ──────────────────────────── */
.page-top-pad { padding-top: 120px; }

/* ─── Scrollbar ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ─── Selection ─────────────────────────────── */
::selection { background: var(--yellow); color: var(--black); }
/* ── Section ── */
.vehicles { padding: var(--section-pad); }
.vehicles-header { text-align: center; margin-bottom: 48px; }

/* ── Grid ── */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .vehicles-grid { grid-template-columns: repeat(1, 1fr); } }

/* ── Card ── */
.vehicle-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}

.vehicle-thumb {
  position: relative;
  height: auto;
  overflow: hidden;
}
.vehicle-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.vehicle-card:hover .vehicle-thumb img { transform: scale(1.06); }

.vehicle-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vehicle-card:hover .vehicle-overlay { opacity: 1; }
.vehicle-overlay svg { width: 40px; height: 40px; fill: #fff; }

.vehicle-info {
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.vehicle-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.vehicle-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #FFF8E1;
  color: #B8860B;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid #F5C400;
}

/* ── Lightbox ── */
.vl-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
.vl-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.vl-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.8);
  z-index: 1;
}

.vl-box {
  position: relative;
  z-index: 1;
  width: min(820px, 94vw);
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vl-overlay.active .vl-box { transform: scale(1); }

.vl-img-wrap {
  width: 100%;
  height: 460px;
  overflow: hidden;
}
.vl-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}
.vl-img-wrap img.loading { opacity: 0; }

.vl-caption {
  padding: 20px 24px 24px;
}
.vl-caption h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.vl-caption p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.vl-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 45px; height: 45px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.799);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}
.vl-close:hover { background: rgba(255,255,255,0.25); }
.vl-close svg { width: 25px; height: 25px; fill: #fff; }

.vl-nav {
  position: absolute;
  top: calc(460px / 2);
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}
.vl-nav:hover { background: var(--color-accent, #F5C400); transform: translateY(-50%) scale(1.1); }
.vl-nav:hover svg { fill: #111; }
.vl-nav svg { width: 24px; height: 24px; fill: #fff; transition: fill 0.2s; }
.vl-nav-prev { left: 14px; }
.vl-nav-next { right: 14px; }

.vl-counter {
  position: absolute;
  bottom: 80px; right: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

@media (max-width: 600px) {
  .vl-img-wrap { height: 260px; }
  .vl-nav { top: calc(260px / 2); }
  .vl-counter { bottom: 100px; }
}

.gallery-slider { padding: var(--section-pad); overflow: hidden; }
.gallery-header { text-align: center; margin-bottom: 48px; }

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
  padding: 0 calc((100% - 860px) / 2);
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.slide {
  flex: 0 0 860px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.slide:hover img { transform: scale(1.04); }

.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
}

.slide-caption span {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: 50px;
}

/* Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.slider-btn:hover {
  background: var(--color-accent, #F5C400);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transform: translateY(-50%) scale(1.08);
}
.slider-btn svg { width: 24px; height: 24px; fill: #222; }
.slider-btn-prev { left: 24px; }
.slider-btn-next { right: 24px; }

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.slider-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--color-accent, #F5C400);
}

/* Responsive */
@media (max-width: 960px) {
  .slider-track { padding: 0 32px; }
  .slide { flex: 0 0 85vw; height: 380px; }
}
@media (max-width: 600px) {
  .slide { flex: 0 0 90vw; height: 260px; border-radius: 14px; }
  .slider-btn { width: 40px; height: 40px; }
  .slider-btn-prev { left: 10px; }
  .slider-btn-next { right: 10px; }
}

.contact-layout { display:grid; grid-template-columns:1fr 1.5fr; gap:70px; align-items:flex-start; }
.info-card { background:var(--black); border-radius:var(--radius-md); padding:44px; position:sticky; top:110px; }
.info-card-title { font-family:var(--font-display); font-size:1.8rem; font-weight:900; text-transform:uppercase; color:var(--yellow); margin-bottom:8px; }
.info-card-sub { font-size:0.88rem; color:var(--light-grey); margin-bottom:36px; line-height:1.7; }
.info-detail { display:flex; align-items:flex-start; gap:14px; padding:16px 0; border-bottom:1px solid rgba(255,255,255,0.07); }
.info-detail:last-of-type { border-bottom:none; }
.info-icon { width:40px; height:40px; background:var(--yellow); border-radius:6px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-icon svg { width:18px; height:18px; fill:var(--black); }
.info-label { font-size:0.68rem; letter-spacing:0.14em; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-bottom:3px; font-weight:600; }
.info-val { font-size:0.9rem; color:var(--white); }

.form-card { background:var(--white); border-radius:var(--radius-md); padding:48px; border:1px solid rgba(0,0,0,0.07); }
.form-card-title { font-family:var(--font-display); font-size:2rem; font-weight:900; text-transform:uppercase; color:var(--black); margin-bottom:6px; }
.form-card-sub { font-size:0.9rem; color:var(--grey); margin-bottom:36px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:0; }
.form-group { display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
.form-label { font-family:var(--font-display); font-size:0.72rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--dark); }
.form-input, .form-textarea, .form-select {
  padding:13px 16px; border:1.5px solid rgba(0,0,0,0.12); border-radius:var(--radius-sm);
  font-size:0.9rem; color:var(--black); outline:none; width:100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  background:var(--off-white);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color:var(--yellow); box-shadow:0 0 0 3px rgba(245,196,0,0.15); background:var(--white); }
.form-textarea { min-height:120px; resize:vertical; }
.form-submit { width:100%; padding:16px; font-size:0.85rem; justify-content:center; }
.form-success { display:none; text-align:center; padding:40px 30px; }
.form-success.show { display:block; }
.form-success-icon { font-size:3.5rem; margin-bottom:16px; }
.form-success h3 { font-family:var(--font-display); font-size:1.8rem; font-weight:900; text-transform:uppercase; color:var(--black); margin-bottom:10px; }
.form-success p { color:var(--grey); font-size:0.9rem; }

@media (max-width:768px) {
  .contact-layout { grid-template-columns:1fr; }
  .info-card { position:static; }
  .form-row { grid-template-columns:1fr; }
  .form-card { padding:28px 20px; }
}

.sp-sidebar { display: flex; flex-direction: column; gap: 28px; }
.sp-widget {
  background: #fff;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 22px 22px;
}
.sb-cta-widget { background: var(--black) !important; border-color: var(--black) !important; }
.sb-cta-widget .sp-widget-title { color: var(--yellow); border-color: var(--yellow); }
.sb-cta-widget p { font-family: var(--font-body); font-size: 0.85rem; color: #bbb; line-height: 1.7; margin-bottom: 18px; }
.btn-sb-cta {
  display: block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  text-decoration: none;
}
.btn-sb-cta:hover { opacity: .85; }

a.site-logo img {
    max-width: 100px;
    height: 80px;
}

.features-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
}
.service-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:24px;
}

.vl-overlay{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
}

.vl-overlay.active{
    display:block;
}

.vl-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.8);
    z-index: 1;
}

.vl-modal{
    position:relative;
    z-index:2;
    max-width:1000px;
    width:90%;
    margin:40px auto;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    z-index: 2;
}

.vl-image-wrap{
    max-height:550px;
	height: auto;
}

.vl-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.vl-content{
    padding:25px;
}

.vl-content h3{
    margin-bottom:10px;
}

.vl-footer{
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid #eee;
}

.vl-footer button{
    padding:10px 18px;
    cursor:pointer;
}

.vl-thumbs{
    display:flex;
    gap:10px;
    padding:15px;
    justify-content:center;
    flex-wrap:wrap;
}

.vl-thumb{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
    cursor:pointer;
    opacity:.6;
    border:2px solid transparent;
    transition:.3s;
}

.vl-thumb.active{
    opacity:1;
    border-color:#d19a5f;
}

.vl-thumb:hover{
    opacity:1;
}