@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  --mtt-orange: #f26b0f;
  --mtt-orange-hover: #d55907;
  --mtt-orange-light: #fff2e8;
  --mtt-green: #25d366;
  --mtt-green-hover: #20ba59;
  --mtt-dark: #0d1721;
  --mtt-dark-light: #162432;
  --mtt-muted: #66717c;
  --mtt-bg: #f8fafc;
  --mtt-white: #ffffff;
  --mtt-border: #edf0f2;
  --font-logo: "Outfit", Arial, sans-serif;
  --font-heading: "Poppins", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- CSS RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--mtt-bg);
  color: var(--mtt-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--mtt-orange);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--mtt-orange-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

/* --- GLOBAL LAYOUT COMPONENTS --- */
.mtt-container {
  width: min(1200px, 100%);
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

/* --- HEADER & NAVIGATION --- */
.mtt-topbar {
  background-color: var(--mtt-dark);
  color: #a3b1c0;
  font-size: 13px;
  border-bottom: 1px solid #1a2a3a;
  padding: 8px 20px;
}

.mtt-topbar__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mtt-topbar__info {
  display: flex;
  gap: 20px;
}

.mtt-topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #a3b1c0;
  text-decoration: none;
}

.mtt-topbar__item:hover {
  color: #fff;
}

.mtt-topbar__item svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.mtt-topbar__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mtt-topbar__social span {
  font-size: 12px;
}

.mtt-topbar__social-links {
  display: flex;
  gap: 8px;
}

.mtt-topbar__social-link {
  color: #a3b1c0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mtt-topbar__social-link:hover {
  color: var(--mtt-orange);
  transform: translateY(-1px);
}

.mtt-topbar__social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Navbar */
.mtt-header {
  background-color: var(--mtt-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.mtt-header.is-sticky {
  box-shadow: var(--shadow-md);
}

.mtt-header.is-sticky .mtt-navbar {
  padding: 8px 20px;
}

.mtt-navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding var(--transition);
}

.mtt-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-logo);
  color: var(--mtt-dark);
}

.mtt-logo__icon-wrap {
  width: 44px;
  height: 44px;
  background-color: var(--mtt-orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mtt-logo__icon {
  width: 28px;
  height: 28px;
  fill: var(--mtt-orange);
}

.mtt-logo__text {
  display: flex;
  flex-direction: column;
}

.mtt-logo__name {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.mtt-logo__sub {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mtt-orange);
}

.mtt-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.mtt-nav__link {
  color: var(--mtt-dark);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-heading);
  position: relative;
  padding: 5px 0;
}

.mtt-nav__link:hover,
.mtt-nav__link.is-active {
  color: var(--mtt-orange);
}

.mtt-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--mtt-orange);
  transition: var(--transition);
}

.mtt-nav__link:hover::after,
.mtt-nav__link.is-active::after {
  width: 100%;
}

.mtt-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mtt-header__call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mtt-dark);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 13px;
}

.mtt-header__call-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--mtt-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mtt-orange);
}

.mtt-header__call-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.mtt-header__call-text {
  display: flex;
  flex-direction: column;
}

.mtt-header__call-text span {
  font-size: 10px;
  color: var(--mtt-muted);
  font-weight: 500;
}

.mtt-header__btn-whatsapp {
  background-color: var(--mtt-green);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.mtt-header__btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mtt-header__btn-whatsapp:hover {
  background-color: var(--mtt-green-hover);
  color: #fff;
  transform: translateY(-1px);
}

/* Mobile Hamburger Menu */
.mtt-hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 110;
}

.mtt-hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--mtt-dark);
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mtt-hamburger span:nth-child(1) { top: 0; }
.mtt-hamburger span:nth-child(2) { top: 10px; }
.mtt-hamburger span:nth-child(3) { top: 20px; }

.mtt-hamburger.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mtt-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.mtt-hamburger.is-active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Drawer Overlay & Menu */
.mtt-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 80%);
  height: 100vh;
  background-color: var(--mtt-white);
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  z-index: 105;
  padding: 80px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mtt-drawer.is-active {
  right: 0;
}

.mtt-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.4);
  z-index: 104;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mtt-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mtt-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mtt-drawer__link {
  color: var(--mtt-dark);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--mtt-border);
}

.mtt-drawer__link:hover,
.mtt-drawer__link.is-active {
  color: var(--mtt-orange);
  padding-left: 5px;
}

.mtt-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
}

.mtt-drawer__call {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mtt-dark);
  font-weight: 700;
  font-size: 15px;
}

.mtt-drawer__call-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--mtt-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mtt-orange);
}

.mtt-drawer__call-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mtt-drawer__whatsapp {
  background-color: var(--mtt-green);
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mtt-drawer__whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* --- FOOTER CTA SECTION --- */
.mtt-footer-cta {
  background: linear-gradient(135deg, rgba(2, 25, 35, 0.9) 0%, rgba(16, 28, 41, 0.85) 100%),
              url("../assets/images/hero_banner.jpg") center center / cover no-repeat;
  padding: 45px 20px;
  color: #fff;
  position: relative;
  z-index: 10;
}

.mtt-footer-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.mtt-footer-cta__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 5px;
}

.mtt-footer-cta__text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(13px, 1.4vw, 15px);
}

.mtt-footer-cta__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* --- MAIN FOOTER --- */
.mtt-footer {
  background-color: var(--mtt-dark);
  color: #a3b1c0;
  font-size: 13px;
  padding: 70px 20px 0;
  position: relative;
  z-index: 9;
}

.mtt-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.mtt-footer__col-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.mtt-footer__col-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--mtt-orange);
}

.mtt-footer__about p {
  margin-top: 15px;
  line-height: 1.6;
}

.mtt-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.mtt-footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #1a2a3a;
  color: #a3b1c0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mtt-footer__social-link:hover {
  background-color: var(--mtt-orange);
  color: #fff;
  transform: translateY(-2px);
}

.mtt-footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.mtt-footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mtt-footer__link-item a {
  color: #a3b1c0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mtt-footer__link-item a:hover {
  color: var(--mtt-orange);
  padding-left: 4px;
}

.mtt-footer__link-item a::before {
  content: '›';
  font-size: 16px;
  line-height: 1;
}

.mtt-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mtt-footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mtt-footer__contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--mtt-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.mtt-footer__contact-item div {
  display: flex;
  flex-direction: column;
}

.mtt-footer__contact-item a {
  color: #a3b1c0;
}

.mtt-footer__contact-item a:hover {
  color: var(--mtt-orange);
}

.mtt-footer__newsletter p {
  line-height: 1.5;
  margin-bottom: 15px;
}

.mtt-footer__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mtt-footer__input {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 5px;
  border: 1px solid #1a2a3a;
  background-color: #091118;
  color: #fff;
  font-size: 13px;
  outline: none;
}

.mtt-footer__input:focus {
  border-color: var(--mtt-orange);
}

.mtt-footer__btn-submit {
  background-color: var(--mtt-orange);
  color: #fff;
  border: none;
  border-radius: 5px;
  min-height: 44px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.mtt-footer__btn-submit:hover {
  background-color: var(--mtt-orange-hover);
}

.mtt-footer__bottom {
  border-top: 1px solid #1a2a3a;
  padding: 22px 20px;
  margin-top: 20px;
}

.mtt-footer__bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 12px;
}

.mtt-footer__policy {
  display: flex;
  gap: 15px;
}

.mtt-footer__policy a {
  color: #a3b1c0;
}

.mtt-footer__policy a:hover {
  color: var(--mtt-orange);
}

/* Floating WhatsApp Button */
.mtt-float-wa {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background-color: var(--mtt-green);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  transition: var(--transition);
}

.mtt-float-wa svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.mtt-float-wa:hover {
  background-color: var(--mtt-green-hover);
  transform: scale(1.08) rotate(8deg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* --- INTEGRATED STYLES FOR CORE SECTIONS --- */

/* HERO & BOOKING (Section 1) */
.mtt-hero,
.mtt-booking-wrap {
  font-family: var(--font-heading);
}

.mtt-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 60px max(24px, calc((100% - 1200px) / 2));
  background:
    linear-gradient(90deg, rgba(2, 25, 35, 0.85) 0%, rgba(2, 25, 35, 0.55) 45%, rgba(2, 25, 35, 0.1) 78%),
    url("../assets/images/hero_banner.jpg") center center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.mtt-hero__content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  padding-bottom: 25px;
}

.mtt-hero__badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 13px;
  border-radius: 20px;
  background: var(--mtt-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.mtt-hero h1 {
  margin: 0 0 13px;
  color: #fff;
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.8px;
  text-transform: capitalize;
}

.mtt-hero h1 span {
  display: block;
  color: var(--mtt-orange);
}

.mtt-hero__intro {
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 400;
  line-height: 1.55;
}

.mtt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.mtt-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 6px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
  transition: transform .2s ease, filter .2s ease;
}

.mtt-btn:hover {
  color: #fff !important;
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.mtt-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.mtt-btn--call {
  background: var(--mtt-orange);
}

.mtt-btn--whatsapp {
  background: var(--mtt-green);
}

.mtt-booking-wrap {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 40px));
  margin: -38px auto 0;
}

.mtt-booking {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr .9fr .95fr auto;
  align-items: center;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(14, 31, 48, .16);
}

.mtt-booking__field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 3px 22px;
  border-right: 1px solid #e7e9ec;
  cursor: text;
}

.mtt-booking__field span {
  color: var(--mtt-dark);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.mtt-booking input,
.mtt-booking select {
  width: 100%;
  min-height: 26px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #66717c;
  font-family: inherit;
  font-size: 12px;
  box-shadow: none;
}

.mtt-booking input:focus,
.mtt-booking select:focus {
  color: var(--mtt-dark);
}

.mtt-booking__submit {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border: 0;
  border-radius: 6px;
  background: var(--mtt-orange);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: filter .2s ease, transform .2s ease;
}

.mtt-booking__submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* SERVICES (Section 2) */
.mtt-services {
  padding: 82px 20px 58px;
  background: #fff;
  font-family: var(--font-heading);
}

.mtt-services__container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.mtt-section-heading {
  margin: 0 auto 34px;
  text-align: center;
}

.mtt-section-heading p {
  margin: 0 0 4px;
  color: var(--mtt-orange);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.mtt-section-heading h2 {
  margin: 0;
  color: var(--mtt-dark);
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.5px;
  text-transform: capitalize !important;
}

.mtt-section-heading span {
  position: relative;
  display: block;
  width: 40px;
  height: 2px;
  margin: 12px auto 0;
  background: #ffad76;
}

.mtt-section-heading span::before {
  position: absolute;
  top: -3px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mtt-orange);
  content: "";
}

.mtt-services__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.mtt-service-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 14px 20px;
  border: 1px solid #edf0f2;
  border-radius: 10px;
  background: #fff;
  color: var(--mtt-dark) !important;
  text-align: center;
  box-shadow: 0 6px 20px rgba(18, 39, 58, .08);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.mtt-service-card:hover {
  border-color: currentColor;
  box-shadow: 0 12px 28px rgba(18, 39, 58, .13);
  transform: translateY(-5px);
}

.mtt-service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  color: inherit;
}

.mtt-service-card__icon svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
}

.mtt-service-card h3 {
  margin: 0 0 9px;
  color: var(--mtt-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: capitalize !important;
}

.mtt-service-card p {
  margin: 0;
  color: var(--mtt-muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}

.mtt-service-card--orange .mtt-service-card__icon { color: #ff6500; }
.mtt-service-card--blue .mtt-service-card__icon { color: #3279e8; }
.mtt-service-card--purple .mtt-service-card__icon { color: #7457c9; }
.mtt-service-card--yellow .mtt-service-card__icon { color: #ffa600; }
.mtt-service-card--aqua .mtt-service-card__icon { color: #34c4bd; }
.mtt-service-card--pink .mtt-service-card__icon { color: #ed4166; }

.mtt-services__all {
  display: none;
}

/* TOUR PACKAGES (Section 3) */
.mtt-packages {
  padding: 50px 20px 60px;
  background: #f8fafc;
  font-family: var(--font-heading);
}

.mtt-packages__container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.mtt-packages__heading {
  margin: 0 auto 28px;
  text-align: center;
}

.mtt-packages__heading p {
  margin: 0 0 4px;
  color: var(--mtt-orange);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.mtt-packages__heading h2 {
  margin: 0;
  color: var(--mtt-dark);
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.5px;
  text-transform: capitalize !important;
}

.mtt-packages__heading span {
  position: relative;
  display: block;
  width: 40px;
  height: 2px;
  margin: 12px auto 0;
  background: #ffad76;
}

.mtt-packages__heading span::before {
  position: absolute;
  top: -3px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mtt-orange);
  content: "";
}

.mtt-packages__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mtt-package-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e7ebee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(18, 39, 58, .09);
  transition: box-shadow .25s ease, transform .25s ease;
}

.mtt-package-card:hover {
  box-shadow: 0 13px 28px rgba(18, 39, 58, .15);
  transform: translateY(-5px);
}

.mtt-package-card__image {
  position: relative;
  height: 220px;
  display: block;
  overflow: hidden;
  background: #0d1c2c;
}

.mtt-package-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}

.mtt-package-card:hover .mtt-package-card__image img {
  transform: scale(1.04);
}

.mtt-package-card__duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border-radius: 4px;
  background: var(--mtt-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.mtt-package-card__body {
  padding: 16px;
}

.mtt-package-card__type {
  margin: 0 0 5px;
  color: var(--mtt-orange);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .35px;
  text-transform: uppercase;
}

.mtt-package-card h3 {
  min-height: 43px;
  margin: 0 0 7px;
  color: var(--mtt-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: capitalize !important;
}

.mtt-package-card__route {
  min-height: 39px;
  margin: 0;
  color: var(--mtt-muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
}

.mtt-package-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 9px;
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid #edf0f2;
}

.mtt-package-card__bottom p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.mtt-package-card__bottom small,
.mtt-package-card__bottom span {
  color: var(--mtt-muted);
  font-size: 8px;
  line-height: 1.35;
}

.mtt-package-card__bottom strong {
  color: var(--mtt-dark);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.mtt-package-card__bottom a,
.mtt-packages__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--mtt-orange);
  color: #fff !important;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  transition: filter .2s ease, transform .2s ease;
}

.mtt-package-card__bottom a {
  min-height: 37px;
  padding: 9px 11px;
  font-size: 10px;
  white-space: nowrap;
}

.mtt-package-card__bottom a:hover,
.mtt-packages__all:hover {
  color: #fff !important;
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.mtt-packages__all {
  width: max-content;
  min-height: 45px;
  gap: 10px;
  margin: 26px auto 0;
  padding: 11px 21px;
  font-size: 13px;
  box-shadow: 0 7px 16px rgba(255, 101, 0, .22);
}

/* WHY CHOOSE US (Section 4) */
.mtt-why {
  padding: 50px 20px 48px;
  background: #fff;
  font-family: var(--font-heading);
}

.mtt-why__container {
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: 265px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  margin: 0 auto;
}

.mtt-why__heading p {
  margin: 0 0 7px;
  color: var(--mtt-orange);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.mtt-why__heading h2 {
  margin: 0;
  color: var(--mtt-dark);
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.5px;
  text-transform: capitalize !important;
}

.mtt-why__heading span {
  position: relative;
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 15px;
  background: #ffad76;
}

.mtt-why__heading span::before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mtt-orange);
  content: "";
}

.mtt-why__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.mtt-why-card {
  min-width: 0;
  min-height: 128px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 17px 11px;
  border: 1px solid #edf0f2;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 5px 17px rgba(18, 39, 58, .07);
  transition: box-shadow .22s ease, transform .22s ease;
}

.mtt-why-card:hover {
  box-shadow: 0 10px 24px rgba(18, 39, 58, .12);
  transform: translateY(-4px);
}

.mtt-why-card__icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}

.mtt-why-card__icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.mtt-why-card h3 {
  margin: 1px 0 7px;
  color: var(--mtt-dark);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: capitalize !important;
}

.mtt-why-card p {
  margin: 0;
  color: var(--mtt-muted);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.55;
}

.mtt-why-card--orange .mtt-why-card__icon { background: #ff9d50; }
.mtt-why-card--blue .mtt-why-card__icon { background: #5796eb; }
.mtt-why-card--green .mtt-why-card__icon { background: #74cd79; }
.mtt-why-card--purple .mtt-why-card__icon { background: #9a65db; }
.mtt-why-card--aqua .mtt-why-card__icon { background: #24c5bb; }

/* REVIEWS (Section 5) */
.mtt-reviews {
  padding: 50px 20px 60px;
  background: #f8fafc;
  font-family: var(--font-heading);
}

.mtt-reviews__container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.mtt-reviews__heading {
  margin: 0 auto 27px;
  text-align: center;
}

.mtt-reviews__heading p {
  margin: 0 0 4px;
  color: var(--mtt-orange);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.mtt-reviews__heading h2 {
  margin: 0;
  color: var(--mtt-dark);
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.5px;
  text-transform: capitalize !important;
}

.mtt-reviews__heading span {
  position: relative;
  display: block;
  width: 40px;
  height: 2px;
  margin: 12px auto 0;
  background: #ffad76;
}

.mtt-reviews__heading span::before {
  position: absolute;
  top: -3px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mtt-orange);
  content: "";
}

.mtt-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.mtt-review-card {
  min-width: 0;
  min-height: 178px;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 26px 24px;
  border: 1px solid #e9edef;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(18, 39, 58, .07);
  transition: box-shadow .22s ease, transform .22s ease;
}

.mtt-review-card:hover {
  box-shadow: 0 11px 26px rgba(18, 39, 58, .12);
  transform: translateY(-4px);
}

.mtt-review-card__avatar {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #f3f5f6;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.mtt-review-card__avatar--orange { background: linear-gradient(145deg, #ff9a4b, #d94c00); }
.mtt-review-card__avatar--purple { background: linear-gradient(145deg, #ac82dc, #6842a4); }
.mtt-review-card__avatar--blue { background: linear-gradient(145deg, #65a8ed, #245fa5); }
.mtt-review-card__avatar--green { background: linear-gradient(145deg, #7dce84, #328a48); }
.mtt-review-card__avatar--pink { background: linear-gradient(145deg, #ed86ad, #a63766); }
.mtt-review-card__avatar--aqua { background: linear-gradient(145deg, #55cbc5, #147d82); }

.mtt-review-card__stars {
  margin-bottom: 7px;
  color: #ffa600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
}

.mtt-review-card blockquote {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  color: var(--mtt-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
}

.mtt-review-card p {
  margin: 0;
  color: var(--mtt-dark);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.mtt-review-card p::before {
  content: "— ";
}

.mtt-review-card p span {
  color: var(--mtt-muted);
  font-weight: 500;
}

.mtt-review-card p span::before {
  content: ", ";
}

.mtt-reviews__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.mtt-reviews__dots span {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: #b3bac1;
}

.mtt-reviews__dots .is-active {
  background: var(--mtt-orange);
}

.mtt-reviews__note {
  margin: 20px 0 0;
  color: var(--mtt-muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.mtt-reviews__note a {
  color: var(--mtt-orange) !important;
  font-weight: 700;
  text-decoration: none !important;
}

/* --- OTHER PAGES STYLING (About, Packages, Taxi, Destinations, Contact) --- */
.mtt-page-header {
  background: linear-gradient(135deg, var(--mtt-dark) 0%, var(--mtt-dark-light) 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: var(--font-heading);
}

.mtt-page-header h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 10px;
}

.mtt-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.mtt-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.mtt-breadcrumb a:hover {
  color: var(--mtt-orange);
}

.mtt-breadcrumb span {
  color: var(--mtt-orange);
}

.mtt-page-content {
  padding: 60px 0;
}

/* About Page Specifics */
.mtt-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.mtt-about-text h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--mtt-dark);
}

.mtt-about-text p {
  color: var(--mtt-muted);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.mtt-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.mtt-stat-card {
  background-color: var(--mtt-white);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--mtt-border);
  text-align: center;
}

.mtt-stat-card strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--mtt-orange);
  font-family: var(--font-heading);
  margin-bottom: 5px;
}

.mtt-stat-card span {
  font-size: 11px;
  font-weight: 600;
  color: var(--mtt-dark);
  text-transform: uppercase;
}

.mtt-about-img img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* Contact Page Specifics */
.mtt-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.mtt-contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mtt-contact-card {
  background-color: var(--mtt-white);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--mtt-border);
  display: flex;
  gap: 15px;
  box-shadow: var(--shadow-sm);
}

.mtt-contact-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--mtt-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mtt-orange);
  flex-shrink: 0;
}

.mtt-contact-card__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.mtt-contact-card__body h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.mtt-contact-card__body p,
.mtt-contact-card__body a {
  color: var(--mtt-muted);
  font-size: 13px;
}

.mtt-contact-card__body a:hover {
  color: var(--mtt-orange);
}

.mtt-contact-form-wrap {
  background-color: var(--mtt-white);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid var(--mtt-border);
  box-shadow: var(--shadow-md);
}

.mtt-contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

.mtt-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mtt-contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mtt-contact-form .form-group--full {
  grid-column: 1 / -1;
}

.mtt-contact-form label {
  font-size: 12px;
  font-weight: 600;
}

.mtt-contact-form input,
.mtt-contact-form textarea,
.mtt-contact-form select {
  padding: 10px 14px;
  border-radius: 5px;
  border: 1px solid var(--mtt-border);
  background-color: var(--mtt-bg);
  outline: none;
  font-size: 13px;
}

.mtt-contact-form input:focus,
.mtt-contact-form textarea:focus,
.mtt-contact-form select:focus {
  border-color: var(--mtt-orange);
  background-color: #fff;
}

.mtt-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.mtt-contact-form__submit {
  grid-column: 1 / -1;
  background-color: var(--mtt-orange);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.mtt-contact-form__submit:hover {
  background-color: var(--mtt-orange-hover);
}

.mtt-contact-map {
  grid-column: 1 / -1;
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mtt-border);
}

/* Taxi & Fleet specific */
.mtt-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.mtt-fleet-card {
  background-color: var(--mtt-white);
  border-radius: 10px;
  border: 1px solid var(--mtt-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.mtt-fleet-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.mtt-fleet-card__img {
  height: 180px;
  background-color: #0d1c2c;
  overflow: hidden;
}

.mtt-fleet-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mtt-fleet-card__body {
  padding: 20px;
}

.mtt-fleet-card__body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 5px;
}

.mtt-fleet-card__type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mtt-orange);
  margin-bottom: 12px;
}

.mtt-fleet-card__features {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 12px;
  color: var(--mtt-muted);
}

.mtt-fleet-card__feature {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mtt-fleet-card__feature svg {
  width: 14px;
  height: 14px;
  fill: var(--mtt-orange);
}

.mtt-fleet-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--mtt-border);
  padding-top: 15px;
}

.mtt-fleet-card__rate {
  display: flex;
  flex-direction: column;
}

.mtt-fleet-card__rate span {
  font-size: 9px;
  color: var(--mtt-muted);
}

.mtt-fleet-card__rate strong {
  font-size: 18px;
  color: var(--mtt-dark);
}

.mtt-fleet-card__book {
  background-color: var(--mtt-orange);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 5px;
}

.mtt-fleet-card__book:hover {
  background-color: var(--mtt-orange-hover);
}


/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablet (max-width: 1080px) */
@media (max-width: 1080px) {
  .mtt-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .mtt-footer__about,
  .mtt-footer__newsletter {
    grid-column: 1 / -1;
  }

  .mtt-why__container {
    grid-template-columns: 1fr;
  }

  .mtt-why__heading {
    text-align: center;
  }

  .mtt-why__heading br {
    display: none;
  }

  .mtt-why__heading span {
    margin-right: auto;
    margin-left: auto;
  }

  .mtt-why__heading span::before {
    left: 16px;
  }

  .mtt-why__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .mtt-fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium Tablets & Mobile (max-width: 900px) */
@media (max-width: 900px) {
  .mtt-topbar {
    display: none;
  }

  .mtt-nav {
    display: none;
  }

  .mtt-header__actions {
    display: none;
  }

  .mtt-hamburger {
    display: block;
  }

  .mtt-hero {
    min-height: 430px;
    align-items: flex-start;
    padding-top: 55px;
    padding-bottom: 80px;
  }

  .mtt-hero__content {
    width: min(570px, 100%);
  }

  .mtt-booking {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .mtt-booking__field {
    padding: 12px 15px;
    border-right: 0;
    border-bottom: 1px solid #e7e9ec;
  }

  .mtt-booking__submit {
    grid-column: 1 / -1;
    margin-top: 14px;
  }

  .mtt-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .mtt-packages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mtt-reviews__grid {
    grid-template-columns: 1fr;
  }
  
  .mtt-about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .mtt-about-img {
    order: -1;
  }
  
  .mtt-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Screens (max-width: 600px) */
@media (max-width: 600px) {
  .mtt-hero {
    min-height: 390px;
    padding: 30px 20px 70px;
  }

  .mtt-hero__badge {
    display: none;
  }

  .mtt-hero h1 {
    margin-bottom: 10px;
    font-size: clamp(30px, 9.2vw, 40px);
    line-height: 1.1;
    letter-spacing: -.4px;
  }

  .mtt-hero__intro {
    font-size: 14px;
    line-height: 1.5;
  }

  .mtt-hero__intro br {
    display: none;
  }

  .mtt-hero__actions {
    gap: 10px;
    margin-top: 17px;
  }

  .mtt-btn {
    min-height: 43px;
    padding: 10px 15px;
    font-size: 13px;
  }

  .mtt-btn svg {
    width: 17px;
    height: 17px;
  }

  .mtt-booking-wrap {
    width: calc(100% - 24px);
    margin-top: -42px;
  }

  .mtt-booking {
    display: block;
    padding: 8px 12px 12px;
    border-radius: 8px;
  }

  .mtt-booking__field {
    padding: 10px 6px;
  }

  .mtt-booking__submit {
    width: 100%;
    min-height: 46px;
    margin-top: 12px;
    font-size: 13px;
  }

  .mtt-services {
    padding: 68px 12px 35px;
  }

  .mtt-section-heading {
    margin-bottom: 22px;
  }

  .mtt-section-heading p {
    font-size: 10px;
  }

  .mtt-section-heading h2 {
    font-size: 24px;
  }

  .mtt-section-heading span {
    margin-top: 9px;
  }

  .mtt-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mtt-service-card {
    min-height: 126px;
    padding: 14px 5px 11px;
    border-radius: 7px;
    box-shadow: 0 4px 13px rgba(18, 39, 58, .08);
  }

  .mtt-service-card__icon {
    width: 38px;
    height: 38px;
    margin-bottom: 6px;
  }

  .mtt-service-card__icon svg {
    width: 37px;
    height: 37px;
  }

  .mtt-service-card h3 {
    margin-bottom: 0;
    font-size: 11px;
    line-height: 1.3;
  }

  .mtt-service-card p {
    display: none;
  }

  .mtt-packages {
    padding: 28px 8px 40px;
  }

  .mtt-packages__heading {
    padding: 0 15px;
    margin-bottom: 20px;
  }

  .mtt-packages__heading p {
    font-size: 10px;
  }

  .mtt-packages__heading h2 {
    font-size: 23px;
  }

  .mtt-packages__heading span {
    margin-top: 9px;
  }

  .mtt-packages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mtt-package-card {
    border-radius: 8px;
  }

  .mtt-package-card__image {
    height: 145px;
  }

  .mtt-package-card__duration {
    right: 6px;
    bottom: 6px;
    padding: 5px 6px;
    font-size: 7px;
  }

  .mtt-package-card__body {
    padding: 10px 8px;
  }

  .mtt-package-card__type {
    margin-bottom: 4px;
    font-size: 7px;
  }

  .mtt-package-card h3 {
    min-height: auto;
    margin-bottom: 5px;
    font-size: 11px;
    line-height: 1.35;
  }

  .mtt-package-card__route {
    min-height: 34px;
    display: -webkit-box;
    overflow: hidden;
    font-size: 8px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .mtt-package-card__bottom {
    display: block;
    margin-top: 8px;
    padding-top: 8px;
  }

  .mtt-package-card__bottom strong {
    font-size: 15px;
  }

  .mtt-package-card__bottom small,
  .mtt-package-card__bottom span {
    font-size: 7px;
  }

  .mtt-package-card__bottom a {
    width: 100%;
    min-height: 31px;
    margin-top: 7px;
    padding: 7px 5px;
    font-size: 8px;
  }

  .mtt-packages__all {
    min-height: 40px;
    margin-top: 11px;
    padding: 10px 17px;
    font-size: 11px;
  }

  .mtt-why {
    padding: 35px 12px 38px;
  }

  .mtt-why__container {
    gap: 22px;
  }

  .mtt-why__heading p {
    font-size: 10px;
  }

  .mtt-why__heading h2 {
    font-size: 23px;
  }

  .mtt-why__heading span {
    margin-top: 10px;
  }

  .mtt-why__grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .mtt-why-card {
    min-height: auto;
    align-items: center;
    padding: 13px 14px;
  }

  .mtt-why-card__icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .mtt-why-card h3 {
    margin-bottom: 3px;
    font-size: 12px;
  }

  .mtt-why-card p {
    font-size: 10px;
  }

  .mtt-reviews {
    padding: 32px 8px 38px;
  }

  .mtt-reviews__heading {
    padding: 0 15px;
    margin-bottom: 20px;
  }

  .mtt-reviews__heading p {
    font-size: 10px;
  }

  .mtt-reviews__heading h2 {
    font-size: 23px;
  }

  .mtt-reviews__heading span {
    margin-top: 9px;
  }

  .mtt-reviews__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .mtt-review-card {
    min-height: 164px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 11px 6px;
    text-align: center;
  }

  .mtt-review-card__avatar {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-width: 3px;
    font-size: 11px;
  }

  .mtt-review-card__stars {
    margin-bottom: 4px;
    font-size: 8px;
    letter-spacing: 0;
  }

  .mtt-review-card blockquote {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 6px;
    font-size: 8px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }

  .mtt-review-card p {
    font-size: 8px;
  }

  .mtt-review-card p span {
    display: block;
    margin-top: 1px;
    font-size: 7px;
  }

  .mtt-review-card p span::before {
    content: "";
  }

  .mtt-reviews__dots {
    display: none;
  }

  .mtt-reviews__note {
    padding: 0 15px;
    margin-top: 12px;
    font-size: 10px;
  }

  .mtt-footer-cta__container {
    flex-direction: column;
    text-align: center;
  }
  
  .mtt-footer-cta__actions {
    justify-content: center;
    width: 100%;
  }
  
  .mtt-footer-cta__actions .mtt-btn {
    width: 100%;
  }

  .mtt-footer__grid {
    grid-template-columns: 1fr;
  }
  
  .mtt-fleet-grid {
    grid-template-columns: 1fr;
  }
}
