/* ===== Tusiqi Trading - Tanzania Mobile First ===== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f5f2eb;
}

/* --- Colors (warm Tanzania palette) --- */
:root {
  --green: #25D366;
  --green-dark: #128C7E;
  --teal: #00695C;
  --blue: #1565C0;
  --orange: #E65100;
  --orange-light: #FFF3E0;
  --gold: #F9A825;
  --gold-light: #FFF8E1;
  --red: #C62828;
  --gray-50: #FAF8F5;
  --gray-100: #F0EDE8;
  --gray-200: #E0DCD5;
  --gray-300: #C9C4BB;
  --gray-500: #9E9A92;
  --gray-600: #6B6760;
  --gray-700: #45423D;
  --gray-900: #1A1816;
  --white: #FFFFFF;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
}

/* --- Floating translate button (pill shape) --- */
.translate-widget {
  position: relative;
  z-index: 100;
}
.translate-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 28px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,105,92,0.4);
  transition: 0.2s;
  white-space: nowrap;
  animation: pulse-translate 2s ease-in-out infinite;
}
.translate-btn:active {
  transform: scale(0.97);
  background: #004D40;
  animation: none;
}
@keyframes pulse-translate {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,105,92,0.4); transform: scale(1); }
  50% { box-shadow: 0 4px 24px rgba(0,105,92,0.7), 0 0 0 6px rgba(0,105,92,0.15); transform: scale(1.05); }
}
.translate-arrow {
  transition: transform 0.2s;
}
.translate-btn.open .translate-arrow {
  transform: rotate(180deg);
}
.translate-dropdown {
  display: none;
  position: absolute;
  bottom: 68px;
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  overflow: hidden;
  min-width: 180px;
  animation: slideUp 0.2s ease;
}
.translate-dropdown.open { display: block; }
.translate-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.9375rem;
  text-align: left;
  transition: 0.15s;
}
.translate-option:active { background: var(--gray-100); }
.translate-option.active { background: var(--gray-50); font-weight: 600; }
.translate-option .flag { font-size: 1.25rem; }
.translate-option .check {
  margin-left: auto;
  color: var(--teal);
  font-weight: 700;
}
.translate-label {
  min-width: 60px;
  text-align: left;
}

/* --- Floating corner (lang + whatsapp) --- */
.floating-corner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

/* --- Fix for WhatsApp bubble in floating corner --- */
.floating-corner .whatsapp-bubble {
  position: static;
}

/* --- Container --- */
.container { max-width: 1024px; margin: 0 auto; padding: 0 16px; }

/* --- Typography --- */
h1 { font-size: 1.75rem; font-weight: 700; line-height: 1.3; }
h2 { font-size: 1.375rem; font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 600; }
p { margin-bottom: 0.75rem; }
.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: 8px auto 0;
  border-radius: 2px;
}

/* --- Nav --- */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  gap: 8px;
}
.nav-logo {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--gray-900);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-logo .logo-text span { color: var(--orange); font-weight: 700; }

/* --- Nav Links --- */
.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  padding: 4px 0;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
.nav-menu.open { display: flex; }
.nav-menu > a,
.nav-dropdown-toggle {
  padding: 13px 16px;
  text-decoration: none;
  color: var(--gray-700);
  font-size: 0.9375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: background 0.15s;
}
.nav-menu > a:last-of-type { border-bottom: none; }
.nav-menu > a:active,
.nav-dropdown-toggle:active { background: var(--gray-100); }
.nav-menu > a.active,
.nav-dropdown-toggle.active {
  color: var(--teal);
  font-weight: 600;
  border-left: 3px solid var(--teal);
}

/* --- Dropdown --- */
.nav-dropdown { position: relative; }
.dd-arrow {
  margin-left: auto;
  transition: transform 0.2s;
}
.nav-dropdown.open .dd-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px 11px 32px;
  text-decoration: none;
  color: var(--gray-700);
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.15s;
}
.nav-dropdown-menu a:active { background: var(--gray-200); }
.nav-dropdown-menu a.active {
  color: var(--teal);
  font-weight: 600;
  background: rgba(0,105,92,0.06);
}

/* --- Nav CTA (Desktop) --- */
.nav-cta {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-cta:active { background: #20bd5a; }
.nav-cta-mobile {
  background: var(--green) !important;
  color: var(--white) !important;
  justify-content: center !important;
  margin: 8px 16px;
  border-radius: 8px !important;
  font-weight: 600 !important;
}

/* --- Nav Toggle --- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: 0.2s;
}

@media (min-width: 768px) {
  .nav-inner { height: 64px; }
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex;
    flex-direction: row;
    position: static;
    box-shadow: none;
    border-bottom: none;
    padding: 0;
    gap: 2px;
    align-items: center;
    max-height: none;
    overflow: visible;
  }
  .nav-menu > a,
  .nav-dropdown-toggle {
    border-bottom: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.875rem;
  }
  .nav-menu > a:hover,
  .nav-dropdown-toggle:hover { background: var(--gray-100); }
  .nav-menu > a.active,
  .nav-dropdown-toggle.active {
    background: rgba(0,105,92,0.08);
    border-left: none;
    box-shadow: inset 0 -2px 0 var(--teal);
  }

  /* Desktop dropdown */
  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 4px 0;
    border-top: none;
    margin-top: 4px;
    animation: slideUp 0.2s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-toggle { cursor: pointer; user-select: none; }
  .nav-dropdown-menu a {
    padding: 10px 14px;
    border-bottom: none;
    font-size: 0.8125rem;
  }
  .nav-dropdown-menu a:hover { background: var(--gray-100); }

  /* Desktop CTA */
  .nav-cta { display: inline-flex; }
  .nav-cta:hover { background: #20bd5a; }
  .nav-cta-mobile { display: none !important; }
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #004D40 0%, var(--teal) 50%, #00897B 100%);
  color: var(--white);
  padding: 40px 16px 36px;
  text-align: center;
}
.hero h1 { font-size: 1.625rem; margin-bottom: 8px; }
.hero p { font-size: 0.9375rem; opacity: 0.9; margin-bottom: 0; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

/* --- Hero with Background Photo --- */
.hero-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 16px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 0;
}
.hero-photo .hero-photo-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.hero-photo h1 {
  font-size: 1.75rem;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-photo p {
  font-size: 0.9375rem;
  opacity: 0.95;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-photo .hero-subtitle {
  font-size: 0.8rem;
  opacity: 0.85;
}
@media (max-width: 480px) {
  .hero-photo {
    padding: 48px 16px;
  }
  .hero-photo h1 {
    font-size: 1.375rem;
  }
  .hero-photo p {
    font-size: 0.875rem;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}
.btn-whatsapp:active { background: #20bd5a; }
.btn-accent {
  background: var(--orange);
  color: var(--white);
}
.btn-accent:active { background: #d04d1a; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-block { width: 100%; }
.btn-sm {
  padding: 6px 14px;
  font-size: 0.8125rem;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-sm);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 16px;
}
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* --- Grid --- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* --- Pricing Cards --- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 16px;
}
.pricing-header {
  padding: 20px;
  color: var(--white);
}
.pricing-header.air-express { background: linear-gradient(135deg, #667eea, #764ba2); }
.pricing-header.air-cargo { background: linear-gradient(135deg, #f093fb, #f5576c); }
.pricing-header.fcl { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.pricing-header.lcl { background: linear-gradient(135deg, #43e97b, #38f9d7); color: #1a1a1a; }
.pricing-header.heavy { background: linear-gradient(135deg, #fa709a, #fee140); color: #1a1a1a; }
.pricing-header h3 { font-size: 1.125rem; margin-bottom: 4px; }
.pricing-header .subtitle { font-size: 0.8125rem; opacity: 0.9; }
.pricing-body { padding: 16px 20px; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9375rem;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row .label { color: var(--gray-600); }
.pricing-row .value { font-weight: 600; }
.pricing-row .value.accent { color: var(--orange); }
.pricing-row .value.green { color: var(--green-dark); }

/* --- Table (for schedule) --- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 12px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 600px;
}
th {
  background: var(--teal);
  color: var(--white);
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--gray-200);
}
tr:nth-child(even) td { background: var(--gray-50); }

/* --- WhatsApp Floating Widget --- */
.whatsapp-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.whatsapp-bubble-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  position: relative;
  z-index: 2;
}
.whatsapp-bubble-btn:active { transform: scale(0.95); }
.whatsapp-bubble-btn svg { width: 28px; height: 28px; fill: white; }

/* --- WhatsApp Chat Popup --- */
.whatsapp-popup {
  display: none;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: absolute;
  bottom: 68px;
  right: 0;
  animation: slideUp 0.3s ease;
}
.whatsapp-popup.open { display: block; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.whatsapp-popup-header {
  background: var(--green-dark);
  color: var(--white);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.whatsapp-popup-header .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}
.whatsapp-popup-header .info { flex: 1; }
.whatsapp-popup-header .info .name { font-weight: 600; font-size: 0.9375rem; }
.whatsapp-popup-header .info .status { font-size: 0.75rem; opacity: 0.85; }
.whatsapp-popup-header .close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 4px;
}
.whatsapp-popup-body {
  padding: 16px;
}
.whatsapp-popup-body .chat-bubble {
  background: var(--gray-100);
  padding: 10px 14px;
  border-radius: 8px 8px 8px 0;
  font-size: 0.875rem;
  margin-bottom: 12px;
  display: inline-block;
}
.whatsapp-popup-body form { display: flex; flex-direction: column; gap: 10px; }
.whatsapp-popup-body input,
.whatsapp-popup-body textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: inherit;
  resize: none;
}
.whatsapp-popup-body input:focus,
.whatsapp-popup-body textarea:focus {
  outline: none;
  border-color: var(--green);
}
.whatsapp-popup-body .send-btn {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.whatsapp-popup-body .send-btn:active { background: #20bd5a; }
.whatsapp-popup-footer {
  padding: 10px 16px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-500);
  border-top: 1px solid var(--gray-200);
}

/* --- Sections --- */
.section { padding: 32px 0; }
.section-gray { background: var(--gray-100); }
.section-white { background: var(--white); }

/* --- Stats bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 24px 16px;
  background: var(--white);
  margin: -24px 16px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.stat-item { text-align: center; }
.stat-item .num { font-size: 1.5rem; font-weight: 700; color: var(--orange); }
.stat-item .label { font-size: 0.75rem; color: var(--gray-600); margin-top: 2px; }
@media (min-width: 640px) {
  .stats-bar { grid-template-columns: repeat(4, 1fr); }
}

/* --- Price Summary Strip --- */
.price-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.price-strip .item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  box-shadow: var(--shadow);
  font-size: 0.8125rem;
}
.price-strip .item .route { color: var(--gray-600); margin-bottom: 4px; }
.price-strip .item .price { font-weight: 700; font-size: 1.0625rem; color: var(--gray-900); }
.price-strip .item .note { color: var(--gray-500); font-size: 0.6875rem; margin-top: 2px; }
@media (min-width: 640px) {
  .price-strip { grid-template-columns: repeat(4, 1fr); }
}

/* --- Blog Cards --- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 16px;
}
.blog-card h3 { margin-bottom: 6px; }
.blog-card h3 a {
  color: var(--gray-900);
  text-decoration: none;
}
.blog-card h3 a:active { color: var(--orange); }
.blog-card .meta {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.blog-card .excerpt {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.blog-card .read-more {
  font-size: 0.8125rem;
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

/* --- Contact / About page --- */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--gray-900);
}
.contact-method .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-method .detail { flex: 1; }
.contact-method .detail .name { font-weight: 600; font-size: 0.9375rem; }
.contact-method .detail .value { font-size: 0.8125rem; color: var(--gray-600); }

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 12px 16px;
  font-size: 0.8125rem;
  color: var(--gray-500);
  max-width: 1024px;
  margin: 0 auto;
}
.breadcrumb a { color: var(--gray-600); text-decoration: none; }
.breadcrumb a:active { color: var(--orange); }
.breadcrumb span { margin: 0 6px; }

/* --- Footer --- */
footer {
  background: var(--gray-900);
  color: var(--gray-500);
  padding: 40px 16px 24px;
  font-size: 0.8125rem;
}
footer h4 { color: var(--white); margin-bottom: 12px; font-size: 0.9375rem; }
footer a { color: var(--gray-500); text-decoration: none; }
footer a:active { color: var(--white); }
footer .grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) {
  footer .grid { grid-template-columns: 2fr 1fr 1fr; }
}
footer .copyright {
  text-align: center;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid #333;
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* --- Update notice --- */
.update-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.8125rem;
  color: #856404;
  margin-bottom: 16px;
}

/* --- WhatsApp Group Banner --- */
.group-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  margin: 24px 0;
}
.group-banner h3 { font-size: 1.125rem; margin-bottom: 6px; }
.group-banner p { font-size: 0.875rem; opacity: 0.9; margin-bottom: 16px; }
.group-banner .btn {
  background: var(--white);
  color: var(--green-dark);
}
.group-banner .btn:active { background: var(--gray-100); }

/* --- Page Header (inner pages) --- */
.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 16px;
}
.page-header h1 { font-size: 1.375rem; }
.page-header p { font-size: 0.875rem; color: var(--gray-600); margin-bottom: 0; }

/* --- Heavy cargo page special --- */
.heavy-contact-card {
  background: linear-gradient(135deg, var(--orange-light), #fff);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  margin: 24px 0;
}
.heavy-contact-card h3 { color: var(--orange); margin-bottom: 8px; }
.heavy-contact-card p { font-size: 0.9375rem; margin-bottom: 20px; }

/* --- Hero Illustration --- */
.hero-illustration {
  max-width: 1080px;
  margin: -12px auto 0;
  padding: 0 16px;
}
.hero-illustration img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

/* --- Trust Strip --- */
.trust-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(135deg, #E0F2F1, #FFF3E0);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid rgba(0,105,92,0.1);
}
.trust-item {
  font-size: 0.875rem;
  color: var(--gray-700);
  padding-left: 20px;
  position: relative;
}
.trust-item::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
}
.section-image {
  max-width: 600px;
  margin: 0 auto 24px;
  padding: 0 16px;
}
.section-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* --- Warehouse Badge (replaces SVG illustration) --- */
.warehouse-badge {
  background: linear-gradient(135deg, #E0F2F1 0%, #FFF3E0 100%);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(0,105,92,0.1);
}
.wb-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 0.8125rem;
  color: var(--gray-600);
}
.wb-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  margin-right: 4px;
}
.wb-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}
.wb-sub {
  font-size: 0.75rem;
  color: var(--gray-600);
}

/* --- Sailing Cards (Expandable) --- */
.sailing-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sailing-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.sailing-card:active { box-shadow: var(--shadow-lg); }
.sailing-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.6fr 36px;
  align-items: center;
  padding: 14px 16px;
  gap: 8px;
  font-size: 0.875rem;
  min-height: 52px;
}
.sailing-col { display: flex; flex-direction: column; }
.sailing-col.ship { flex-direction: column; gap: 4px; }
.sailing-col.ship strong { font-size: 0.9375rem; color: var(--gray-900); }
.sailing-col.date { font-size: 0.8125rem; }
.sailing-col.date .label {
  font-size: 0.6875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.sailing-col.transit {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange);
  flex-direction: row;
  align-items: baseline;
  gap: 3px;
}
.sailing-col.transit span {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--gray-500);
}
.carrier-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  width: fit-content;
}
.sailing-expand {
  font-size: 1rem;
  color: var(--gray-500);
  transition: transform 0.3s;
  text-align: center;
}
.sailing-card.expanded .sailing-expand { transform: rotate(180deg); }

/* --- Sailing Detail (Hidden by default) --- */
.sailing-detail {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--gray-100);
  animation: slideUp 0.3s ease;
}
.sailing-card.expanded .sailing-detail { display: block; }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 12px 0;
}
@media (min-width: 480px) {
  .detail-grid { grid-template-columns: 1fr 1fr; }
}
.detail-item {
  background: var(--gray-50);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}
.detail-item .d-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.detail-item .d-value {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-800);
  line-height: 1.5;
}
.sailing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 12px;
  transition: background 0.2s;
}
.sailing-cta:active { background: #20bd5a; }

/* --- Mobile: Sailing card adaptation --- */
@media (max-width: 480px) {
  .sailing-header {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    padding: 12px;
  }
  .sailing-col.ship {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .sailing-col.date { font-size: 0.75rem; }
  .sailing-col.transit {
    font-size: 1.125rem;
    justify-content: flex-end;
  }
  .sailing-expand {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 4px;
  }
}

/* ===== GLOBAL MOBILE RESPONSIVE ===== */
/* This applies to ALL pages — homepage, about, pricing, schedule, etc. */

/* Keep space for floating WhatsApp + translate at bottom */
body {
  padding-bottom: 90px;
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  body { padding-bottom: calc(90px + env(safe-area-inset-bottom)); }
}

/* Floating widgets — ensure they stay within safe area */
.floating-corner {
  bottom: 20px !important;
  right: 20px !important;
}
@supports (bottom: env(safe-area-inset-bottom)) {
  .floating-corner {
    bottom: calc(20px + env(safe-area-inset-bottom)) !important;
  }
}

/* All buttons — touch friendly */
.btn, .btn-sm, .btn-whatsapp, .btn-accent, .btn-outline {
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

/* Cards — stack on mobile */
@media (max-width: 639px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr !important; }
  .section { padding: 24px 0; }
  .section-gray { padding: 24px 0; }
  .hero { padding: 28px 16px 24px; }
  .hero h1 { font-size: 1.25rem; }
  .hero p { font-size: 0.8125rem; }
  .hero-subtitle { font-size: 0.8125rem; }
  .section-title { font-size: 1.125rem; }
  .card { padding: 16px; }

  /* Photo hero — smaller on mobile */
  .hero-photo { padding: 40px 16px; min-height: auto; }
  .hero-photo h1 { font-size: 1.25rem; }
  .hero-photo p { font-size: 0.8125rem; }

  /* Stats bar */
  .stats-bar { margin: -20px 12px 0; padding: 16px; }
  .stat-item .num { font-size: 1.125rem; }

  /* Price strip */
  .price-strip .item { padding: 10px; }
  .price-strip .item .price { font-size: 0.9375rem; }

  /* Footer */
  footer { padding: 28px 16px 20px; }
  footer .grid { gap: 20px; }

  /* Guide cards */
  .guide-card { padding: 1rem; }
  .guide-card-icon { font-size: 2rem !important; }
  .guide-card h2 { font-size: 1.125rem !important; }
  .guides-grid { grid-template-columns: 1fr !important; }
  .guides-hero h1 { font-size: 1.5rem !important; }
  .guides-hero .subtitle { font-size: 0.9375rem !important; }

  /* Pricing cards */
  .pricing-card { margin-bottom: 12px; }
  .pricing-header { padding: 14px; }
  .pricing-body { padding: 12px 14px; }
  .pricing-row { font-size: 0.8125rem; padding: 8px 0; }

  /* Sailing cards */
  .sailing-header { padding: 10px 12px; font-size: 0.75rem; }
  .sailing-col.ship strong { font-size: 0.8125rem; }

  /* Container specs table - force horizontal scroll */
  .table-wrap { margin: 8px 0; }
  table { font-size: 0.75rem; }
  th, td { padding: 6px 8px; }

  /* Hero route on non-home pages */
  .hero-new { padding: 36px 20px 32px; }
  .hero-main { font-size: 1.25rem !important; }
  .hero-sub { font-size: 0.8125rem; }
}

/* Small phones (under 375px) */
@media (max-width: 374px) {
  .nav-inner { gap: 4px; }
  .nav-logo { font-size: 0.875rem; }
  .nav-menu > a, .nav-dropdown-toggle { padding: 10px 12px; font-size: 0.8125rem; }
}

/* Container */
.container-m { max-width: 600px; margin: 0 auto; padding: 0 20px; }

/* Hero */
.hero-m {
  background: linear-gradient(165deg, #0f1a2e, #1e3155);
  color: #fff;
  text-align: center;
  padding: 48px 20px 40px;
}
.hero-m-greeting {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C9A96E;
  margin-bottom: 12px;
}
.hero-m-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.hero-m-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  line-height: 1.5;
}
.hero-m-warm {
  font-size: 0.875rem;
  color: #C9A96E;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.hero-m-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.15s;
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
}
.hero-m-btn:active { background: #20bd5a; }
.hero-m-meta {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  margin-top: 20px;
  line-height: 1.4;
}

/* Routes bar */
.routes-m {
  background: #101d33;
  padding: 12px 20px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  font-weight: 500;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.routes-m-arrow { margin: 0 4px; color: #C9A96E; font-weight: 700; }
.routes-m-bullet { margin: 0 6px; color: rgba(255,255,255,0.2); }

/* Sections */
.sec-m { padding: 40px 0; }
.sec-m-title {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
  color: #1a1a1a;
}
.sec-m-sub {
  font-size: 0.8125rem;
  text-align: center;
  color: #999;
  margin-bottom: 24px;
}

/* Service cards (touch-friendly) */
.svc-m { display: flex; flex-direction: column; gap: 8px; }
.svc-m-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  transition: background 0.1s;
  min-height: 60px;
  -webkit-tap-highlight-color: transparent;
}
.svc-m-card:active { background: #f8f8f8; }
.svc-m-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(201,169,110,0.08);
}
.svc-m-body { flex: 1; }
.svc-m-name { font-size: 0.9375rem; font-weight: 600; margin-bottom: 2px; }
.svc-m-desc { font-size: 0.75rem; color: #999; line-height: 1.4; word-break: break-word; }
.svc-m-arrow { color: #ccc; font-size: 1rem; flex-shrink: 0; }

/* Mission block */
.mission-m {
  background: #1a2744;
  padding: 40px 20px;
  text-align: center;
}
.mission-m-proverb {
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: #C9A96E;
  margin-bottom: 10px;
}
.mission-m-en {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 24px;
}
.mission-m-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}
.ms-item { flex: 1; text-align: center; }
.ms-num {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  color: #C9A96E;
}
.ms-lbl {
  display: block;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* Rates */
.rates-m {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.rate-m-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
}
.rate-m-mode {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 6px;
}
.rate-m-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.rate-m-price span { font-size: 0.75rem; font-weight: 400; color: #999; }
.rate-m-time { font-size: 0.6875rem; color: #999; }

.btn-m {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  background: #E65100;
  color: #fff;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}
.btn-m:active { background: #d04d1a; }

/* CTA */
.cta-m {
  background: linear-gradient(165deg, #0f1a2e, #1e3155);
  color: #fff;
  text-align: center;
  padding: 48px 20px;
}
.cta-m-h { font-size: 1.375rem; font-weight: 600; color:#fff; margin-bottom: 6px; }
.cta-m-p { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 24px; }

/* Tablet+ styles */
@media (min-width: 600px) {
  .hero-m { padding: 64px 40px 56px; }
  .hero-m-title { font-size: 2rem; max-width: 500px; margin: 0 auto 10px; }
  .hero-m-sub { font-size: 0.9375rem; }
  .sec-m-title { font-size: 1.375rem; }
  .svc-m { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .rates-m { max-width: 500px; margin: 0 auto; }
  .mission-m-stats { max-width: 400px; margin: 0 auto; }
}

/* --- Typography --- */
.heading-xl {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gray-900);
  text-align: center;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.25;
}
.subtitle-lg {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.section-xl { padding: 64px 0; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 20px; }

/* --- Hero --- */

/* Hero port columns — fixed to left/right edges */
@media (max-width: 480px) {

/* --- Mission Section --- */

/* --- Trust Numbers --- */
.trust-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.tn-item { text-align: center; flex: 1; }
.tn-num {
  font-size: 3rem;
  font-weight: 500;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.tn-num span { font-weight: 300; color: #C9A96E; }
.tn-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.tn-divider {
  width: 1px;
  height: 60px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* --- Geometric Divider --- */

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.svc-card {
  background: var(--white);
  padding: 28px 24px;
  text-align: left;
  transition: background 0.15s;
}
.svc-card:active { background: var(--gray-50); }
.svc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(201,169,110,0.1);
}
.svc-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.svc-card p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}

/* --- Dark Trust Section --- */
.section-dark {
  background: #1a2744;
  padding: 64px 20px;
  text-align: center;
}
.trust-statement { max-width: 600px; margin: 0 auto; }
.ts-quote {
  font-size: 1.5rem;
  font-weight: 300;
  color: #C9A96E;
  margin-bottom: 16px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.ts-detail {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* --- Rates Mini --- */
.section-cta h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
.section-cta p {
  font-size: 0.9375rem;
  opacity: 0.7;
  margin-bottom: 28px;
}

/* --- Mobile adaptations --- */
@media (max-width: 640px) {
/* ===== Image Integration Styles ===== */

/* --- Hero Background Images --- */
.hero-m.has-hero-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 280px;
}
.hero-m.has-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(15,26,46,0.85), rgba(30,49,85,0.75));
  z-index: 0;
}
.hero-m.has-hero-bg > * {
  position: relative;
  z-index: 1;
}
.hero-m.hero-bg-main { background-image: url('/images/hero/hero-main.webp'); }
.hero-m.hero-bg-fcl { background-image: url('/images/hero/hero-fcl.webp'); }
.hero-m.hero-bg-schedule { background-image: url('/images/hero/hero-schedule.webp'); }
.hero-m.hero-bg-contact { background-image: url('/images/hero/hero-contact.webp'); }
.hero-m.hero-bg-guide { background-image: url('/images/hero/hero-guide.webp'); }
.hero-m.hero-bg-heavy { background-image: url('/images/hero/hero-heavy.webp'); }
.hero-m.hero-bg-air-cargo { background-image: url('/images/hero/hero-air-cargo.webp'); }
.hero-m.hero-bg-air-express { background-image: url('/images/hero/hero-air-express.webp'); }
.hero-m.hero-bg-lcl { background-image: url('/images/hero/hero-lcl.webp'); }

/* --- Service Card Images (index page) --- */
.svc-m-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 10px 10px 0 0;
  display: block;
}
.svc-m-card.has-img {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}
.svc-m-card.has-img .svc-m-content {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
}
.svc-m-card.has-img .svc-m-icon {
  width: 36px;
  height: 36px;
  padding: 6px;
}

/* --- About Page Images --- */
.about-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow);
}
.about-img-founder {
  max-width: 320px;
  aspect-ratio: 1/1;
}
.about-img-team {
  aspect-ratio: 16/9;
}
.about-img-market {
  aspect-ratio: 16/9;
}
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.about-img-full {
  width: 100%;
  aspect-ratio: 21/9;
}

/* --- Guide Step Images --- */
.guide-step-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* --- Trust Collage --- */
.trust-collage {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
}

/* --- Responsive Adjustments --- */
@media (min-width: 768px) {
  .svc-m-img {
    height: 200px;
  }
  .about-img-founder {
    max-width: 400px;
  }
  .about-img-grid {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .about-img-grid {
    grid-template-columns: 1fr;
  }
  .about-img-full {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 480px) {
  .svc-m-img {
    height: 130px;
  }
  .about-img-founder {
    max-width: 240px;
  }
}
/* ============================================================
   DESKTOP ENHANCEMENTS — anti-template, real layout
   ============================================================ */

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  .container-m {
    max-width: 960px;
    padding: 0 32px;
  }

  /* Hero: left-aligned, not centered (anti-template) */
  .hero-m {
    padding: 80px 40px 72px;
    text-align: left;
  }
  .hero-m-inner {
    max-width: 960px;
    margin: 0 auto;
  }
  .hero-m-greeting {
    font-size: 0.8125rem;
    margin-bottom: 16px;
  }
  .hero-m-title {
    font-size: 2.5rem;
    line-height: 1.15;
    max-width: 640px;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
  }
  .hero-m-sub {
    font-size: 1rem;
    max-width: 560px;
    margin: 0 0 16px;
  }
  .hero-m-warm {
    font-size: 1rem;
    max-width: 480px;
    margin: 0 0 28px;
  }
  .hero-m-btn {
    padding: 18px 36px;
    font-size: 1.0625rem;
  }
  .hero-m-meta {
    font-size: 0.75rem;
    margin-top: 28px;
  }

  /* Routes bar: wider */
  .routes-m {
    padding: 14px 32px;
    font-size: 0.8125rem;
  }

  /* Sections: more breathing room */
  .sec-m {
    padding: 64px 0;
  }
  .sec-m-title {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 6px;
  }
  .sec-m-sub {
    text-align: left;
    font-size: 0.875rem;
    margin-bottom: 32px;
  }

  /* Service cards: 3-column */
  .svc-m {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
  .svc-m-card {
    padding: 18px 20px;
    min-height: 72px;
  }
  .svc-m-icon {
    width: 48px;
    height: 48px;
  }
  .svc-m-name {
    font-size: 1rem;
  }
  .svc-m-desc {
    font-size: 0.8125rem;
  }

  /* Service card images: taller on desktop */
  .svc-m-img {
    height: 180px;
  }

  /* Mission block */
  .mission-m {
    padding: 64px 40px;
  }
  .mission-m-proverb {
    font-size: 1.5rem;
  }
  .ms-num {
    font-size: 1.75rem;
  }
  .ms-lbl {
    font-size: 0.6875rem;
  }

  /* Rates */
  .rates-m {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 800px;
    margin: 0 auto;
    gap: 12px;
  }
  .rate-m-card {
    padding: 20px 16px;
  }
  .rate-m-price {
    font-size: 1.75rem;
  }

  /* CTA */
  .cta-m {
    padding: 64px 40px;
    text-align: left;
  }
  .cta-m-h {
    font-size: 1.75rem;
  }
  .cta-m-p {
    font-size: 1rem;
    max-width: 480px;
  }

  /* About images */
  .about-img-founder {
    max-width: 380px;
  }
  .about-img-grid {
    gap: 20px;
  }
}

/* Large desktop: 1280px+ */
@media (min-width: 1280px) {
  .container-m {
    max-width: 1120px;
  }

  .hero-m {
    padding: 96px 48px 88px;
  }
  .hero-m-title {
    font-size: 3rem;
    max-width: 720px;
  }
  .hero-m-sub {
    font-size: 1.125rem;
    max-width: 600px;
  }
  .hero-m-warm {
    font-size: 1.0625rem;
    max-width: 520px;
  }

  .sec-m {
    padding: 80px 0;
  }
  .sec-m-title {
    font-size: 1.75rem;
  }

  .svc-m-card {
    padding: 20px 24px;
  }
  .svc-m-img {
    height: 200px;
  }

  .mission-m {
    padding: 80px 48px;
  }
  .mission-m-proverb {
    font-size: 1.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
