.mm-body {
  margin: 0;
  font-family: var(--mm-font-sans);
  background: var(--mm-bg);
  color: var(--mm-text-main);
}

.mm-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Buttons */
.mm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--mm-radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.mm-button--primary {
  background: var(--mm-accent);
  color: #1b0b05;
  box-shadow: var(--mm-shadow-soft);
}

.mm-button--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(255, 107, 44, 0.4);
}

.mm-button--ghost {
  background: transparent;
  color: inherit;
  border-color: rgba(255, 255, 255, 0.3);
}

.mm-button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mm-button--full {
  width: 100%;
}

.mm-link-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mm-accent);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.mm-link-button:hover {
  text-decoration: underline;
}

/* Nav */
.mm-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(5, 6, 17, 0.95), rgba(5, 6, 17, 0.8));
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.mm-nav {
  padding: 0.65rem 0;
}

.mm-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mm-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--mm-text-main);
}

.mm-nav__logo {
  border-radius: 12px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.5);
  height:50px;
}

.mm-nav__brand-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.mm-nav__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mm-nav__links a {
  text-decoration: none;
  font-size: 0.86rem;
  color: var(--mm-text-muted);
}

.mm-nav__links a:hover {
  color: #ffffff;
}

.mm-nav__cta {
  margin-left: 0.8rem;
}

.mm-nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.3rem;
  border-radius: 999px;
  cursor: pointer;
}

.mm-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

.mm-nav__toggle span + span {
  margin-top: 4px;
}

/* Hero */
.mm-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--mm-text-main);
}

.mm-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.1) brightness(0.8);
  transform: scale(1.05);
}

.mm-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 107, 44, 0.22), transparent 55%), linear-gradient(to bottom, rgba(5, 6, 17, 0.16), rgba(5, 6, 17, 0.61));
}

.mm-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 3rem;
  padding: 4rem 0 4.5rem;
}

.mm-hero__title {
  font-size: clamp(2.1rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  margin: 0.35rem 0 0.75rem;
}

.mm-hero__text {
  max-width: 32rem;
  font-size: 0.98rem;
  color: var(--mm-text-muted);
  margin-bottom: 1.25rem;
}

.mm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.mm-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.78rem;
  color: var(--mm-text-muted);
}

.mm-hero-card {
  background: var(--mm-surface);
  border-radius: var(--mm-radius-lg);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--mm-shadow-soft);
  border: 1px solid var(--mm-border-subtle);
  backdrop-filter: blur(18px);
}

.mm-hero-card__title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.mm-hero-card__note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--mm-text-muted);
}

/* Form fields */
.mm-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.86rem;
}

.mm-field--full {
  width: 100%;
}

.mm-field__label {
  color: var(--mm-text-muted);
}

.mm-field__control {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  background: rgba(7, 9, 24, 0.85);
  color: #ffffff;
  outline: none;
}

.mm-field__control:focus {
  border-color: var(--mm-accent);
  box-shadow: 0 0 0 1px rgba(255, 107, 44, 0.4);
}

.mm-field textarea.mm-field__control {
  border-radius: 18px;
  resize: vertical;
}

/* Cards */
.mm-card {
  border-radius: var(--mm-radius-lg);
  background: #ffffff;
  color: var(--mm-text-dark);
  box-shadow: var(--mm-shadow-subtle);
  overflow: hidden;
}

.mm-service-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.mm-service-card__body {
  padding: 1.1rem 1.2rem 1.2rem;
}

.mm-service-card__title {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.mm-service-card__text {
  font-size: 0.9rem;
  margin: 0 0 0.7rem;
  color: #4b4e63;
}

/* Services grid */
.mm-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

/* USP */
.mm-usp__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.25rem;
}

.mm-usp__item {
  padding: 1.3rem 1.4rem;
  border-radius: var(--mm-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(7, 10, 25, 0.9));
}

.mm-usp__item h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.mm-usp__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--mm-text-muted);
}

/* Brands */
.mm-brands__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mm-brands__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.mm-brands__logos img {
  opacity: 0.75;
  filter: grayscale(100%);
}

/* Booking form */
.mm-booking-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.mm-booking-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.mm-booking-form__actions {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-top: 0.75rem;
}

.mm-booking-form__note {
  margin: 0;
  font-size: 0.8rem;
}

.mm-form-status {
  margin-top: 0.75rem;
  font-size: 0.8rem;
}

/* FAQ */
.mm-faq__items {
  max-width: 50rem;
  margin: 2rem auto 0;
}

.mm-faq__item {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.85rem 1rem;
  background: #ffffff;
  margin-bottom: 0.75rem;
}

.mm-faq__question {
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.mm-faq__answer {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #4c4f61;
}

/* Image strip */
.mm-image-strip__scroller {
  overflow-x: auto;
  padding: 0 0 1.5rem;
}

.mm-image-strip__track {
  display: inline-flex;
  gap: 1rem;
  padding-inline: min(1.25rem, 4vw);
}

.mm-image-strip__item {
  min-width: min(18rem, 70vw);
  background: rgba(7, 9, 24, 0.9);
  border-radius: var(--mm-radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mm-image-strip__item img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.mm-image-strip__item figcaption {
  padding: 0.7rem 0.8rem;
  font-size: 0.8rem;
  color: var(--mm-text-muted);
}

/* Map */
.mm-map__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: stretch;
}

.mm-map__embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--mm-radius-lg);
  box-shadow: var(--mm-shadow-subtle);
}

/* Footer */
.mm-footer {
  background: #050611;
  color: var(--mm-text-muted);
  margin-top: auto;
}

.mm-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  padding: 2.5rem 0 1.5rem;
}

.mm-footer__title {
  margin: 0 0 0.4rem;
}

.mm-footer__subtitle {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mm-footer__text {
  margin: 0 0 0.45rem;
  font-size: 0.86rem;
}

.mm-footer__cta {
  margin-top: 0.7rem;
}

.mm-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.7rem 0;
  font-size: 0.78rem;
}

.mm-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mm-footer__bottom a {
  color: inherit;
  text-decoration: none;
}

.mm-footer__bottom a:hover {
  text-decoration: underline;
}

/* Modals */
.mm-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.mm-modal.is-open {
  display: block;
}

.mm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 18, 0.8);
  backdrop-filter: blur(10px);
}

.mm-modal__dialog {
  position: relative;
  max-width: 540px;
  margin: 10vh auto;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: var(--mm-shadow-soft);
  padding: 1.5rem 1.7rem 1.6rem;
}

.mm-modal__close {
  position: absolute;
  right: 0.9rem;
  top: 0.7rem;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.mm-modal__content h2 {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
}

.section-cta-center{
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;
  gap: 14px;                 /* space between buttons */
  margin-top: 22px;
  flex-wrap: wrap;           /* if small screens, buttons wrap nicely */
  text-align: center;
  width: 100%;
}
