/* Design DNA: Marmaris Moto | horizontal banner hero | asphalt-black header | strip-top cookie */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Righteous&display=swap');

:root {
  --mm-asphalt: #121212;
  --mm-orange: #FF6B1A;
  --mm-chrome: #C8CDD2;
  --mm-white: #ffffff;
  --mm-yellow: #F5D547;
  --mm-font-display: 'Righteous', cursive;
  --mm-font-body: 'Figtree', sans-serif;
  --mm-max-width: 1200px;
  --mm-radius: 8px;
  --mm-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  --mm-transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--mm-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mm-asphalt);
  background: var(--mm-white);
}

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

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

a:hover {
  color: var(--mm-yellow);
}

ul {
  list-style: none;
}

/* Cookie strip top */
.mm-cookie {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--mm-asphalt);
  color: var(--mm-chrome);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  transform: translateY(-100%);
  transition: transform var(--mm-transition);
  border-bottom: 3px solid var(--mm-orange);
}

.mm-cookie.mm-cookie--visible {
  transform: translateY(0);
}

.mm-cookie p {
  margin: 0;
  text-align: center;
}

.mm-cookie a {
  color: var(--mm-yellow);
  text-decoration: underline;
}

.mm-cookie__btn {
  background: var(--mm-orange);
  color: var(--mm-white);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--mm-radius);
  font-family: var(--mm-font-body);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--mm-transition);
  white-space: nowrap;
}

.mm-cookie__btn:hover {
  background: var(--mm-yellow);
  color: var(--mm-asphalt);
}

body.mm-cookie-active .mm-header {
  top: 52px;
}

/* Header */
.mm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--mm-asphalt);
  border-bottom: 3px solid var(--mm-orange);
  transition: top var(--mm-transition);
}

.mm-header__inner {
  max-width: var(--mm-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.mm-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mm-logo__brand {
  font-family: var(--mm-font-display);
  font-size: 1.5rem;
  color: var(--mm-white);
  letter-spacing: 0.02em;
}

.mm-logo__tagline {
  font-size: 0.75rem;
  color: var(--mm-chrome);
  font-weight: 500;
}

.mm-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.mm-nav__link {
  color: var(--mm-chrome);
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: var(--mm-radius);
  transition: all var(--mm-transition);
}

.mm-nav__link:hover,
.mm-nav__link--active {
  color: var(--mm-white);
  background: rgba(255, 107, 26, 0.2);
}

.mm-nav__link--active {
  color: var(--mm-orange);
}

.mm-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mm-burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--mm-orange);
  border-radius: 2px;
  transition: all var(--mm-transition);
}

.mm-burger.mm-burger--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mm-burger.mm-burger--open span:nth-child(2) {
  opacity: 0;
}

.mm-burger.mm-burger--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero banner */
.mm-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mm-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.92) 0%, rgba(18, 18, 18, 0.55) 50%, rgba(18, 18, 18, 0.35) 100%);
}

.mm-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--mm-max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  width: 100%;
}

.mm-hero__title {
  font-family: var(--mm-font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--mm-white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.mm-hero__title span {
  color: var(--mm-orange);
}

.mm-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--mm-chrome);
  max-width: 540px;
  margin-bottom: 2rem;
}

.mm-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.mm-btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: var(--mm-radius);
  font-family: var(--mm-font-body);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--mm-transition);
  text-align: center;
}

.mm-btn--primary {
  background: var(--mm-orange);
  color: var(--mm-white);
  border-color: var(--mm-orange);
}

.mm-btn--primary:hover {
  background: var(--mm-yellow);
  border-color: var(--mm-yellow);
  color: var(--mm-asphalt);
}

.mm-btn--outline {
  background: transparent;
  color: var(--mm-white);
  border-color: var(--mm-chrome);
}

.mm-btn--outline:hover {
  border-color: var(--mm-orange);
  color: var(--mm-orange);
}

/* Sections */
.mm-section {
  padding: 4rem 1.5rem;
}

.mm-section--dark {
  background: var(--mm-asphalt);
  color: var(--mm-chrome);
}

.mm-section--gray {
  background: #f4f5f6;
}

.mm-container {
  max-width: var(--mm-max-width);
  margin: 0 auto;
}

.mm-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.mm-section__title {
  font-family: var(--mm-font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--mm-asphalt);
  margin-bottom: 0.75rem;
}

.mm-section--dark .mm-section__title {
  color: var(--mm-white);
}

.mm-section__title span {
  color: var(--mm-orange);
}

.mm-section__desc {
  color: var(--mm-chrome);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.mm-section--dark .mm-section__desc {
  color: var(--mm-chrome);
}

/* Features grid */
.mm-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mm-feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--mm-white);
  border-radius: var(--mm-radius);
  box-shadow: var(--mm-shadow);
  border-top: 4px solid var(--mm-orange);
}

.mm-feature__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mm-feature__title {
  font-family: var(--mm-font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--mm-asphalt);
}

.mm-feature__text {
  color: #555;
  font-size: 0.95rem;
}

/* Cards grid */
.mm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mm-card {
  background: var(--mm-white);
  border-radius: var(--mm-radius);
  overflow: hidden;
  box-shadow: var(--mm-shadow);
  transition: transform var(--mm-transition);
}

.mm-card:hover {
  transform: translateY(-4px);
}

.mm-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.mm-card__body {
  padding: 1.5rem;
}

.mm-card__title {
  font-family: var(--mm-font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--mm-asphalt);
}

.mm-card__text {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.mm-card__tag {
  display: inline-block;
  background: var(--mm-yellow);
  color: var(--mm-asphalt);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Two column layout */
.mm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mm-split__img {
  border-radius: var(--mm-radius);
  box-shadow: var(--mm-shadow);
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.mm-split__content h2 {
  font-family: var(--mm-font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--mm-asphalt);
}

.mm-split__content p {
  margin-bottom: 1rem;
  color: #444;
}

.mm-split__list {
  margin: 1.5rem 0;
}

.mm-split__list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #444;
}

.mm-split__list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--mm-orange);
  font-weight: bold;
}

/* Page hero (inner pages) */
.mm-page-hero {
  background: var(--mm-asphalt);
  padding: 3rem 1.5rem;
  text-align: center;
  border-bottom: 4px solid var(--mm-orange);
}

.mm-page-hero__title {
  font-family: var(--mm-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--mm-white);
  margin-bottom: 0.5rem;
}

.mm-page-hero__breadcrumb {
  color: var(--mm-chrome);
  font-size: 0.9rem;
}

.mm-page-hero__breadcrumb a {
  color: var(--mm-orange);
}

/* Fleet cards */
.mm-fleet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.mm-fleet-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--mm-white);
  border-radius: var(--mm-radius);
  overflow: hidden;
  box-shadow: var(--mm-shadow);
}

.mm-fleet-card__img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.mm-fleet-card__body {
  padding: 1.75rem;
}

.mm-fleet-card__name {
  font-family: var(--mm-font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.mm-fleet-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.mm-fleet-card__spec {
  background: #f0f0f0;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.mm-fleet-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mm-orange);
}

/* Routes */
.mm-routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mm-route {
  background: var(--mm-white);
  border-radius: var(--mm-radius);
  overflow: hidden;
  box-shadow: var(--mm-shadow);
}

.mm-route__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.mm-route__body {
  padding: 1.5rem;
}

.mm-route__title {
  font-family: var(--mm-font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.mm-route__meta {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 0.85rem;
  color: var(--mm-orange);
  font-weight: 600;
}

/* Contact */
.mm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mm-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mm-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.mm-contact-item__icon {
  width: 48px;
  height: 48px;
  background: var(--mm-orange);
  color: var(--mm-white);
  border-radius: var(--mm-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.mm-contact-item__label {
  font-weight: 600;
  color: var(--mm-asphalt);
  margin-bottom: 0.25rem;
}

.mm-contact-item__value {
  color: #555;
}

.mm-contact-item__value a {
  color: var(--mm-orange);
}

.mm-form {
  background: var(--mm-white);
  padding: 2rem;
  border-radius: var(--mm-radius);
  box-shadow: var(--mm-shadow);
}

.mm-form__group {
  margin-bottom: 1.25rem;
}

.mm-form__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--mm-asphalt);
}

.mm-form__input,
.mm-form__textarea,
.mm-form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--mm-chrome);
  border-radius: var(--mm-radius);
  font-family: var(--mm-font-body);
  font-size: 1rem;
  transition: border-color var(--mm-transition);
}

.mm-form__input:focus,
.mm-form__textarea:focus,
.mm-form__select:focus {
  outline: none;
  border-color: var(--mm-orange);
}

.mm-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.mm-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #555;
}

.mm-form__checkbox input {
  margin-top: 0.25rem;
}

/* Privacy */
.mm-privacy {
  max-width: 800px;
  margin: 0 auto;
}

.mm-privacy h2 {
  font-family: var(--mm-font-display);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--mm-asphalt);
}

.mm-privacy h2:first-child {
  margin-top: 0;
}

.mm-privacy p,
.mm-privacy li {
  color: #444;
  margin-bottom: 0.75rem;
}

.mm-privacy ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* CTA band */
.mm-cta {
  background: linear-gradient(135deg, var(--mm-orange) 0%, #e55a0f 100%);
  padding: 3rem 1.5rem;
  text-align: center;
}

.mm-cta__title {
  font-family: var(--mm-font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--mm-white);
  margin-bottom: 0.75rem;
}

.mm-cta__text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.mm-cta .mm-btn--outline {
  border-color: var(--mm-white);
  color: var(--mm-white);
}

.mm-cta .mm-btn--outline:hover {
  background: var(--mm-white);
  color: var(--mm-orange);
}

/* Footer */
.mm-footer {
  background: var(--mm-asphalt);
  color: var(--mm-chrome);
  padding: 3rem 1.5rem 1.5rem;
}

.mm-footer__grid {
  max-width: var(--mm-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.mm-footer__brand {
  font-family: var(--mm-font-display);
  font-size: 1.35rem;
  color: var(--mm-white);
  margin-bottom: 0.75rem;
}

.mm-footer__col p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.mm-footer__heading {
  font-family: var(--mm-font-display);
  font-size: 1rem;
  color: var(--mm-orange);
  margin-bottom: 1rem;
}

.mm-footer__links li {
  margin-bottom: 0.5rem;
}

.mm-footer__links a {
  color: var(--mm-chrome);
  font-size: 0.9rem;
}

.mm-footer__links a:hover {
  color: var(--mm-orange);
}

.mm-footer__bottom {
  max-width: var(--mm-max-width);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 205, 210, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
  .mm-features,
  .mm-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mm-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mm-fleet-card {
    grid-template-columns: 1fr;
  }

  .mm-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mm-burger {
    display: flex;
  }

  .mm-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--mm-asphalt);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--mm-transition);
    border-bottom: 3px solid var(--mm-orange);
  }

  body.mm-cookie-active .mm-nav {
    top: 124px;
  }

  .mm-nav.mm-nav--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mm-nav__link {
    width: 100%;
    padding: 0.875rem 1rem;
    text-align: center;
  }

  .mm-features,
  .mm-grid,
  .mm-routes,
  .mm-contact-grid,
  .mm-fleet {
    grid-template-columns: 1fr;
  }

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

  .mm-hero {
    min-height: 360px;
  }

  .mm-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
