/* ============================================
   Component Styles - Header, Footer, Cards, etc.
   ============================================ */

/* ----- Header ----- */
.header {
  position: static;
  top: 0;
  left: 0;
  right: 0;
  background: var(--wdtBodyBGColor);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}

.top-ticker {
  width: 100%;
  background: #000000;
  color: #fff;
  overflow: hidden;
  padding: 8px 0;
  display: none;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 20s linear infinite;
}

.ticker-item {
  padding: 0 50px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.header .container {
  max-width: 100%;
}

.header-top {
  border-bottom: 1px solid var(--wdtBorderColor);
  font-size: var(--wdtFontSize_Ext);
  padding: var(--spacing-sm) 0;
}

.header-top__inner {
  gap: var(--spacing-md);
}

.header-top__left,
.header-top__right {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.header-top__item {
  opacity: 0.8;
}

.header-top__link {
  opacity: 0.9;
}

.header-top__link:hover {
  color: var(--wdtLinkHoverColor);
}

.header-top__social {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-left: var(--spacing-md);
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wdtSecondaryColor);
  color: var(--wdtAccentTxtColor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.header-main {
  height: 80px;
  display: flex;
  align-items: stretch;
}

.header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  flex: 1;
}

.logo {
  font-family: var(--wdtFontTypo_Alt);
  font-size: var(--wdtFontSize_H5);
  font-weight: var(--wdtFontWeight_Alt);
  color: var(--wdtHeadAltColor);
}

.logo span {
  font-weight: 400;
}

.nav--desktop {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  gap: var(--spacing-xl);
  gap: 1.5rem;
  margin: 0;
}

@media (min-width: 1198px) and (max-width: 1440px) {
  .nav__list {
    gap: 12px;
  }
}

.nav__link {
  font-size: var(--wdtFontSize_Base);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-full);
  transition: background var(--transition-base), color var(--transition-base);
}

.nav__link--active,
.nav__link:hover {
  background: var(--wdtPrimaryColor);
  color: var(--wdtAccentTxtColor);
}

a.nav__link--active{
    color: #fff;
}
.header-toggle {
  width: 60px;
  height: 100%;
  border: none;
  background: var(--wdtPrimaryColor);
  color: var(--wdtAccentTxtColor);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-toggle__icon,
.header-toggle__icon::before,
.header-toggle__icon::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--wdtAccentTxtColor);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.header-toggle__icon::before {
  transform: translateY(-6px);
}

.header-toggle__icon::after {
  transform: translateY(5px);
}

.header-toggle--open .header-toggle__icon {
  background: transparent;
}

.header-toggle--open .header-toggle__icon::before {
  transform: translateY(0) rotate(45deg);
}

.header-toggle--open .header-toggle__icon::after {
  transform: translateY(0) rotate(-45deg);
}

.header-drawer {
  position: fixed;
  top: 0;
  right: -620px;
  width: 100%;
  max-width: 550px;
  height: 100vh;
  background: var(--wdtBodyBGColor);
  box-shadow: -8px 0 24px rgba(var(--wdtBodyTxtColorRgb), 0.12);
  transition: right var(--transition-base);
  z-index: 1300;
  display: flex;
  flex-direction: column;
}

.header-drawer__inner {
  height: 100%;
  padding: var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  /* gap: var(--spacing-2xl); */
  position: relative;
}

/* Desktop-only drawer wrap (image layout) - hidden on mobile */
.header-drawer__desktop-wrap {
  display: none;
}

.header-drawer__close--circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wdtPrimaryColor);
  color: var(--wdtAccentTxtColor);
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.header-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-drawer__close {
  border: none;
  background: none;
  font-size: 1.4rem;
  padding: 5px ;
  line-height: inherit;
  min-width: 30px;
  width: 30px;
  height: 30px;
  min-height: 30px;
  background: var(--wdtPrimaryColor);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-drawer__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.nav-drawer__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--wdtBorderColor);
}

.nav-drawer__link {
  font-size: var(--wdtFontSize_Base);
}

.nav-drawer__arrow {
  font-size: 0.85rem;
  opacity: 0;
}

.header-drawer__section-title {
  font-size: var(--wdtFontSize_Ext);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-xs);
}

/* Desktop wrap: vertical section titles */
.header-drawer__desktop-wrap .header-drawer__section-title {
  writing-mode: vertical-rl;
  transform: rotate(-180deg);
  text-orientation: mixed;
  margin-bottom: 0;
  margin-right: var(--spacing-md);
  align-self: stretch;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #000;
  justify-content: center;
  font-size: 24px;
  text-transform: capitalize;
  letter-spacing: 0;
  padding-left: 10px;
  border-left: 1px solid #ddd;
}

.header-drawer__section p {
  font-size: var(--wdtFontSize_Base);
  opacity: 0.9;
}

.header-drawer__section-content p {
  margin: 0 0 var(--spacing-xs);
  font-size: var(--wdtFontSize_Base);
  color: #444;
  opacity: 0.9;
}

.header-drawer__section-content p:last-child {
  margin-bottom: 0;
}

.header-overlay {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  z-index: 1200;
}

.header-drawer--open {
  right: 0;
}

.header-overlay--visible {
  opacity: 0.8;
  pointer-events: auto;
}

.header-drawer__brand-actions .btn {
  border-radius: 50px;
}

.header-drawer__brand-actions .btn:hover {
  color: #fff !important;
}

.header-drawer__social-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
  }

  .header-drawer__social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--wdtSecondaryColor);
    color: var(--wdtAccentTxtColor) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    text-decoration: none;
  }

  .header-drawer__social-icon:hover {
    opacity: 0.9;
  }

@media (max-width: 1199px) {
  .header-top {
    display: none;
  }

  .nav--desktop {
    display: none;
  }

  .header-main__inner {
    justify-content: space-between;
  }

  /* Mobile drawer: only menu; hide desktop wrap */
  .header-drawer__desktop-wrap {
    display: none !important;
  }

  .nav-drawer__list {
    display: flex;
  }

  .header-drawer__section {
    display: none;
  }

  .top-ticker {
    display: block;
  }
}

@media (min-width: 1200px) {

  /* Desktop drawer: hide mobile top & nav; show desktop wrap only */
  .header-drawer__top {
    display: none;
  }

  .nav--drawer .nav-drawer__list {
    display: none;
  }

  .header-drawer__desktop-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    gap: 0;
    max-width: 100%;
  }

  .header-drawer__desktop-wrap .header-drawer__close--circle {
    position: absolute;
    top: var(--spacing-xl);
    right: var(--spacing-xl);
    background-color: #4e6cfb;
  }

  .header-drawer__brand {
    margin-bottom: 25px;
    padding-right: 60px;
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid #ddd;
  }

  .header-drawer__logo-text {
    font-family: var(--wdtFontTypo_Alt);
    font-size: var(--wdtFontSize_H4);
    font-weight: 700;
    color: var(--wdtHeadAltColor);
    margin: 0 0 var(--spacing-md);
  }

  .header-drawer__brand-desc {
    font-size: var(--wdtFontSize_Base);
    color: #444;
    opacity: 0.9;
    margin: 0 0 var(--spacing-lg);
    line-height: 1.5;
  }

  .header-drawer__brand-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
  }

  .header-drawer__brand-actions .btn {
    margin: 0;
  }

  .header-drawer__desktop-wrap .header-drawer__section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--wdtBorderColor);
    gap: 0;
  }

  .header-drawer__desktop-wrap .header-drawer__section:last-child {
    border-bottom: none;
  }

  .header-drawer__desktop-wrap .header-drawer__section-content {
    flex: 1;
  }
}

/* ----- Hero Slider ----- */
.hero {
  margin-top: var(--header-height);
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero__slide {
  display: flex;
  align-items: center;
  min-height: 90vh;
  background: linear-gradient(135deg, var(--wdtTertiaryColor) 0%, #e8e8e8 100%);
  padding: var(--section-padding-y) 0;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: var(--spacing-3xl);
}

@media (max-width: 900px) {
  .hero__inner {
    flex-direction: column;
  }
}

.hero__content {
  flex: 1;
  max-width: 600px;
}

.hero__img {
  flex: 1;
  max-width: 500px;
}

.hero__img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.hero__eyebrow {
  font-family: var(--wdtFontTypo_Ext);
  font-size: var(--wdtFontSize_Ext);
  color: var(--wdtPrimaryColor);
  text-transform: capitalize;
  margin-bottom: var(--spacing-sm);
}

.hero__title {
  margin-bottom: var(--spacing-md);
}

.hero__desc {
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--wdtFontTypo_Base);
  font-size: var(--wdtFontSize_Base);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.btn--primary {
  background: var(--wdtPrimaryColor);
  color: var(--wdtAccentTxtColor) !important;
}

.btn--primary:hover {
  background: #3d5ce8;
  transform: translateY(-2px);
}
.btn--primary.md-small {
  padding: 0.7rem 1.8rem;
      font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
}
.btn--primary.md-small:hover {
 color: #fff;
}
.btn--sm {
  margin-top: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
}

.appointment-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-intro {
  margin-bottom: var(--spacing-md);
}

.form-input,
.form-select {
  padding: var(--spacing-sm);
  border: 1px solid var(--wdtBorderColor);
  border-radius: var(--radius-sm);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.footer__intro {
  opacity: 0.9;
  margin-bottom: var(--spacing-md);
}

/* ----- Section Title ----- */
.section__eyebrow {
  font-family: var(--wdtFontTypo_Ext);
  font-size: var(--wdtFontSize_Ext);
  color: var(--wdtPrimaryColor);
  margin-bottom: var(--spacing-sm);
}

.section__title {
  margin-bottom: var(--spacing-md);
}

.section__subtitle {
  font-size: var(--wdtFontSize_Base);
  opacity: 0.85;
}

/* ----- Car Series / Carousel ----- */
.car-series {
  background: var(--wdtBodyBGColor);
}

.car-series__list {
  display: flex;
  gap: var(--spacing-lg);
  overflow-x: auto;
  padding: var(--spacing-md) 0;
}

.car-series__item {
  flex: 0 0 auto;
  min-width: 140px;
  text-align: center;
  padding: var(--spacing-md);
  background: var(--wdtTertiaryColor);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.car-series__item:hover {
  background: var(--wdtPrimaryColor);
  color: var(--wdtAccentTxtColor);
}

/* ----- Featured Taxi Services (Hero below) ----- */
.featured-services {
  background: var(--wdtBodyBGColor);
}

.featured-services__title {
  position: relative;
  display: inline-block;
  padding-bottom: var(--spacing-xs);
  margin-bottom: var(--spacing-2xl);
}

.featured-services__title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--wdtPrimaryColor);
}

.featured-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-xl);
}

@media (max-width: 1024px) {
  .featured-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .featured-services__grid {
    grid-template-columns: 1fr;
  }
}

.featured-service-card {
  background: var(--wdtBodyBGColor);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-service-card__media {
  position: relative;
  overflow: hidden;
}

.featured-service-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.featured-service-card:hover .featured-service-card__img {
  transform: scale(1.08);
}

.featured-service-card__labels {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.featured-service-card__label {
  padding: 0.25rem 0.6rem;
  font-size: var(--wdtFontSize_Ext);
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.featured-service-card__name-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-md);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  color: #fff;
}

.featured-service-card__name {
  font-family: var(--wdtFontTypo_Alt);
  font-size: var(--wdtFontSize_H6);
  font-weight: 600;
}

.featured-service-card__name-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.featured-service-card__name-icon::before {
  content: '↗';
}

.featured-service-card__body {
  padding: var(--spacing-lg);
}

.featured-service-card__line {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--wdtFontSize_Base);
  opacity: 0.9;
}

.featured-service-card__line+.featured-service-card__line {
  margin-top: var(--spacing-xs);
}

.featured-service-card__bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--wdtPrimaryColor);
}

/* ----- Services Grid ----- */
.services {
  background: var(--wdtTertiaryColor);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.service-card {
  padding: var(--spacing-xl);
  background: var(--wdtBodyBGColor);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card h5 {
  margin-bottom: var(--spacing-sm);
}

.service-card p {
  font-size: var(--wdtFontSize_Base);
  opacity: 0.9;
}

/* ----- Stats / Numbers ----- */
.stats {
  background: var(--wdtSecondaryColor);
  color: var(--wdtAccentTxtColor);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-2xl);
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-drawer__inner {
    padding: 20px;
  }
}

.stat__number {
  font-family: var(--wdtFontTypo_Alt);
  font-size: var(--wdtFontSize_H2);
  color: var(--wdtPrimaryColor);
  margin-bottom: var(--spacing-xs);
}

.stat__label {
  font-size: var(--wdtFontSize_Base);
  opacity: 0.9;
}

/* ----- Team / Experts ----- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-xl);
}

.team-card {
  text-align: center;
}

.team-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
}

.team-card__name {
  margin-bottom: var(--spacing-xs);
}

.team-card__role {
  font-size: var(--wdtFontSize_Ext);
  color: var(--wdtPrimaryColor);
}

/* ----- Car Cards (Carousel/Listing) ----- */
.car-listing {
  background: var(--wdtTertiaryColor);
}

.car-listing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
}

.car-card {
  background: var(--wdtBodyBGColor);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.car-card:hover {
  box-shadow: var(--shadow-lg);
}

.car-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.car-card__body {
  padding: var(--spacing-xl);
}

.car-card__badges {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.badge {
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--wdtFontSize_Ext);
  background: var(--wdtTertiaryColor);
  border-radius: var(--radius-sm);
}

.car-card__title {
  margin-bottom: var(--spacing-sm);
}

.car-card__specs {
  display: flex;
  gap: var(--spacing-lg);
  margin: var(--spacing-md) 0;
}

.spec {
  font-size: var(--wdtFontSize_Ext);
}

.spec__value {
  font-weight: 600;
}

/* ----- Booking Steps ----- */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

@media (max-width: 900px) {
  .booking-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .booking-steps {
    grid-template-columns: 1fr;
  }
}

.step-card {
  text-align: center;
  padding: var(--spacing-xl);
}

.step-card__number {
  font-family: var(--wdtFontTypo_Alt);
  font-size: var(--wdtFontSize_H3);
  color: var(--wdtPrimaryColor);
  margin-bottom: var(--spacing-sm);
}

/* ----- FAQ Accordion ----- */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--wdtBorderColor);
}

.faq-item__question {
  width: 100%;
  padding: var(--spacing-lg);
  text-align: left;
  font-family: var(--wdtFontTypo_Alt);
  font-size: var(--wdtFontSize_H6);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item__answer {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  font-size: var(--wdtFontSize_Base);
  opacity: 0.9;
}

.section__cta {
  text-align: center;
  margin-top: var(--spacing-2xl);
}

.booking__actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-top: var(--spacing-2xl);
  flex-wrap: wrap;
}

.booking__divider {
  align-self: center;
}

.car-card__desc {
  font-size: var(--wdtFontSize_Base);
  margin: var(--spacing-md) 0;
}

.car-card__features {
  margin: var(--spacing-md) 0;
  padding-left: var(--spacing-lg);
}

.car-card__features li {
  list-style: disc;
}

/* ----- Testimonials ----- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  padding: var(--spacing-xl);
  background: var(--wdtBodyBGColor);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__quote {
  font-style: italic;
  margin-bottom: var(--spacing-md);
}

.testimonial-card__name {
  font-weight: 600;
}

.testimonial-card__role {
  font-size: var(--wdtFontSize_Ext);
  color: var(--wdtPrimaryColor);
}

/* ----- Blog Cards ----- */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

@media (max-width: 1024px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--wdtBodyBGColor);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.blog-card__body {
  padding: var(--spacing-lg);
}

.blog-card__meta {
  font-size: var(--wdtFontSize_Ext);
  color: var(--wdtPrimaryColor);
  margin-bottom: var(--spacing-xs);
}

.blog-card__title {
  font-size: var(--wdtFontSize_H6);
  margin-bottom: var(--spacing-sm);
}

/* ----- Footer ----- */
.footer {
  background: var(--wdtHeadAltColor);
  color: var(--wdtAccentTxtColor);
  padding: var(--section-padding-y) 0 var(--spacing-xl);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
  color: var(--wdtAccentTxtColor);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .journey-counter-box {
    padding: 30px 20px;
  }

  .ticker-item {
    line-height: 1.1;
    font-size: 12px;
  }

  .section__tagline .section__tagline-icon,
  .hero-slider__tagline .hero-slider__tagline-icon {
    display: none;
  }

  .section__tagline,
  .hero-slider__tagline {
    margin: 0 0 0.4rem;
  }
}

.footer__title {
  font-size: var(--wdtFontSize_H6);
  margin-bottom: var(--spacing-md);
  color: var(--wdtAccentTxtColor);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer__bottom {
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: var(--wdtFontSize_Ext);
}

/*body,*/
/*html {*/
/*  overflow-x: hidden;*/
/*}*/

/*.nav__list {*/
/*    display: flex;*/
/*    list-style: none;*/
/*    align-items: center;*/
/*}*/

.nav__list > li {
    position: relative;
    padding: 10px 0;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    z-index: 100;
}

.has-submenu:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
    border-radius: 0;
}

.sub-menu li a:hover {
    background-color: #f1f1f1;
    color: #007bff; 
}

.arrow {
    font-size: 10px;
    margin-left: 4px;
}