/* ═══════════════════════════════════════════
   M2M - Complete Stylesheet
   Converted from Tailwind CSS to plain CSS
   ═══════════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: #FEEFDD;
  --foreground: #201E1F;
  --primary: #FF4000;
  --primary-dark: #cc3300;
  --secondary: #50B2C0;
  --secondary-dark: #3d8f9a;
  --accent: #FAAA8D;
  --emerald: #50B2C0;
  --emerald-dark: #3d8f9a;
  --teal: #50B2C0;
  --teal-dark: #3d8f9a;
  --gray-50: #FEEFDD;
  --gray-100: #f5e6d4;
  --gray-200: #e5d5c3;
  --gray-300: #c9b8a6;
  --gray-400: #9a8b7a;
  --gray-500: #6b5e50;
  --gray-600: #4b4038;
  --gray-700: #352e28;
  --gray-800: #2a2422;
  --gray-900: #201E1F;
  --green-500: #50B2C0;
  --yellow-400: #FAAA8D;
  --purple-500: #FAAA8D;
  --blue-500: #50B2C0;
  --orange-100: #FEEFDD;
  --orange-200: #FAAA8D;
  --orange-400: #ff6633;
  --orange-500: #FF4000;
  --orange-600: #cc3300;
  --emerald-100: #d9f0f3;
  --emerald-400: #6dc5d0;
  --emerald-500: #50B2C0;
  --emerald-600: #3d8f9a;
  --emerald-700: #2d6b73;
  --teal-500: #50B2C0;
  --teal-600: #3d8f9a;
  --amber-400: #FAAA8D;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ─── Layout ─── */
.page-wrapper {
  min-height: 100vh;
  background: var(--background);
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.main-content {
  padding-top: 4rem;
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.logo-icon-sm {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--orange-500);
}

.nav-link-secondary {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.nav-link-secondary:hover {
  color: var(--emerald-600);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  border: none;
  background: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.mobile-menu-btn:hover {
  background: var(--gray-100);
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--gray-200);
}

.mobile-menu.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

.mobile-menu-inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--gray-700);
  font-weight: 500;
}

.mobile-link:hover {
  color: var(--orange-500);
}

.mobile-link-secondary {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.mobile-link-secondary:hover {
  color: var(--emerald-600);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: #FF4000;
  color: white;
  padding: 0.625rem 1.5rem;
  box-shadow: 0 4px 14px rgba(255, 64, 0, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(255, 64, 0, 0.4);
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gray-300);
  color: var(--gray-700);
  padding: 0.625rem 1.5rem;
}

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

.btn-white {
  background: #FEEFDD;
  color: #FF4000;
  padding: 0.625rem 1.5rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-rounded {
  border-radius: 9999px;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
}

/* ─── Gradients ─── */
.gradient-orange {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
}

.gradient-blue {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.gradient-emerald {
  background: linear-gradient(135deg, var(--emerald-500), var(--teal-600));
}

.gradient-hero {
  background: linear-gradient(135deg, #FF4000 0%, #FAAA8D 40%, #50B2C0 100%);
}

.gradient-card {
  background: linear-gradient(145deg, #FEEFDD 0%, #d9f0f3 100%);
}

.gradient-orange-bg {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
}

.gradient-emerald-bg {
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-600));
}

.gradient-teal-bg {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
}

.gradient-amber-bg {
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
}

.gradient-orange-sm {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
}

.gradient-blue-sm {
  background: linear-gradient(135deg, #50B2C0, #3d8f9a);
}

.gradient-purple-sm {
  background: linear-gradient(135deg, #FAAA8D, #e8906f);
}

/* Gradient Text */
.gradient-text-orange {
  background: linear-gradient(to right, var(--orange-500), var(--secondary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-emerald {
  background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Icons ─── */
.icon-xs {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.icon-sm {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.icon-md {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.icon-lg {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}

.icon-hero {
  width: 10rem;
  height: 10rem;
}

.text-white {
  color: white;
}

.text-orange {
  color: var(--orange-400);
}

.text-green {
  color: var(--green-500);
}

.text-blue {
  color: var(--blue-500);
}

.text-gray-400 {
  color: var(--gray-400);
}

/* ─── Sections ─── */
.section {
  padding: 6rem 0;
}

.bg-gray {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto;
}

/* ─── Hero (M2M Homepage) ─── */
.hero-m2m {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}

.hero-blob-1 {
  top: 5rem;
  right: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(80, 178, 192, 0.2);
}

.hero-blob-2 {
  bottom: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(250, 170, 141, 0.2);
}

.hero-blob-3 {
  top: 10rem;
  left: 50%;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 64, 0, 0.1);
}

.hero-content {
  position: relative;
  padding: 5rem 0;
}

.hero-center {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title-m2m {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Hero (Business Page) ─── */
.hero-business {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.hero-blob-orange-1 {
  top: 5rem;
  right: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 64, 0, 0.15);
}

.hero-blob-blue-1 {
  bottom: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(80, 178, 192, 0.15);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.badge-orange {
  background: var(--orange-100);
  color: var(--orange-600);
}

.badge-emerald {
  background: var(--emerald-100);
  color: var(--emerald-700);
}

/* Trust Badges */
.hero-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-text {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.avatar-stack {
  display: flex;
}

.avatar-stack .avatar + .avatar {
  margin-left: -0.5rem;
}

.avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid white;
}

.avatar-orange {
  background: linear-gradient(135deg, #FF4000, #FAAA8D);
}

.avatar-emerald {
  background: linear-gradient(135deg, #50B2C0, #FAAA8D);
}

/* Hero Visual */
.hero-visual {
  display: none;
  justify-content: center;
  position: relative;
}

.hero-truck-box {
  width: 20rem;
  height: 20rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-box {
  position: absolute;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-users {
  bottom: -1.5rem;
  left: -1.5rem;
  width: 8rem;
  height: 8rem;
  background: var(--blue-500);
}

.hero-float-package {
  top: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background: var(--purple-500);
}

/* ─── Business Cards (M2M Homepage) ─── */
.card-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.biz-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
  display: block;
}

.biz-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.biz-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.biz-card:hover .biz-icon {
  transform: scale(1.1);
}

.biz-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.biz-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.biz-card:hover .biz-name {
  color: var(--emerald-600);
}

.biz-desc {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.biz-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--emerald-600);
  font-weight: 600;
  transition: gap 0.2s;
}

.biz-card:hover .biz-link {
  gap: 0.75rem;
}

/* Coming Soon Card */
.coming-soon-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 2px dashed var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.coming-soon-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.coming-soon-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.coming-soon-text {
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* ─── About M2M Section ─── */
.about-text {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ─── Features Grid ─── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* ─── Services Grid ─── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.3s;
  position: relative;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card-popular {
  border-width: 2px;
  border-style: solid;
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.service-price-unit {
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.7;
}

.service-price-quote {
  color: var(--gray-500);
  font-size: 0.9375rem;
  font-weight: 600;
  font-style: italic;
}

.service-desc {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-700);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 0.75rem;
}

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF4000, #50B2C0);
}

.author-name {
  font-weight: 600;
}

/* ─── CTA Section ─── */
.cta-box {
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  color: white;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Footer (Business Pages) ─── */
.footer {
  background: var(--gray-900);
  color: white;
}

.footer .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-desc {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-m2m-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--emerald-400);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-m2m-link:hover {
  color: var(--emerald-400);
  opacity: 0.8;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a, .footer-links span {
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange-400);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-m2m-inline {
  color: var(--emerald-400);
  transition: color 0.2s;
}

.footer-m2m-inline:hover {
  color: var(--emerald-400);
  opacity: 0.8;
}

/* ─── M2M Footer (Homepage) ─── */
.m2m-footer {
  background: var(--gray-900);
  color: white;
  padding: 3rem 0;
}

.m2m-footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.m2m-footer-brand {
  font-size: 1.125rem;
  font-weight: 700;
}

.m2m-footer-tagline {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.m2m-footer-copy {
  color: var(--gray-500);
  font-size: 0.75rem;
}

/* ─── Animations ─── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

/* ─── Responsive ─── */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }

  .container-narrow {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  /* Navbar */
  .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  /* Typography */
  .hero-title-m2m {
    font-size: 3.75rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .cta-title {
    font-size: 3rem;
  }

  .cta-box {
    padding: 4rem;
  }

  /* Grids */
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .container-narrow {
    padding: 0 2rem;
  }

  /* Typography */
  .hero-title-m2m {
    font-size: 4.5rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  /* Grids */
  .card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Hero grid */
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    display: flex;
  }

  .hero-center .hero-badges,
  .hero-business .hero-badges {
    justify-content: flex-start;
  }
}

/* ─── Booking Page ─── */
.booking-hero {
  padding: 8rem 1rem 4rem;
  color: white;
  position: relative;
}

.booking-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.booking-hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
}

.booking-hero-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255,255,255,0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.booking-form-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  margin-top: -3rem;
  position: relative;
  z-index: 1;
}

.form-section-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gray-100);
  color: var(--gray-800);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: white;
  color: var(--foreground);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #50B2C0;
  box-shadow: 0 0 0 3px rgba(80, 178, 192, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #fef2f2;
  color: #dc2626;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.booking-success {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.success-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #d9f0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #50B2C0;
}

.booking-success h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.booking-success p {
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.booking-success .btn {
  margin-top: 1.5rem;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .booking-hero-title {
    font-size: 2rem;
  }
  .booking-form-card {
    padding: 1.5rem;
  }
}

/* ─── Login Page ─── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #FEEFDD, #d9f0f3);
  padding: 1rem;
}

.login-card {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 24rem;
  text-align: center;
}

.login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.login-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.login-subtitle {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.login-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #fef2f2;
  color: #dc2626;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.login-form .form-group {
  text-align: left;
}

.login-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--gray-500);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.login-back:hover {
  color: var(--emerald);
}

/* ─── Contact Page ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-info-text {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-method-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-method-value {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.contact-m2m-badge {
  margin-top: 2rem;
}

.contact-form-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .booking-hero {
    padding: 7rem 1rem 3rem;
  }
}

/* ─── Hero Slideshow (service pages — right column) ─── */
.hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
  background: #e2e8f0;
  /* Show on all sizes now — on mobile it stacks below the hero text */
  display: block;
  margin-top: 1.5rem;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}
.hero-slide.is-active { opacity: 1; z-index: 2; }
.hero-slideshow-dots {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 3;
}
.hero-slideshow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.hero-slideshow-dot.is-active {
  background: #fff;
  transform: scale(1.35);
}
@media (min-width: 1024px) {
  .hero-slideshow {
    border-radius: 1.5rem;
    margin-top: 0;
  }
}
