:root {
  color-scheme: dark;
  /* Cayman palette */
  --bg: #021625;
  --bg-alt: #042434;
  --bg-elevated: #073549;
  --accent: #22c1c3; /* aqua */
  --accent-soft: rgba(34, 193, 195, 0.16);
  --accent-strong: #fdbb2d; /* warm sand / sun */
  --border-subtle: rgba(148, 163, 184, 0.4);
  --text-main: #f9fafb;
  --text-muted: #e2e8f0;
  --text-soft: #cbd5e1;
  --danger: #fb7185;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 40px rgba(0, 0, 0, 0.45);
  --shadow-subtle: 0 18px 40px rgba(15, 23, 42, 0.6);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #0b3a53 0, #021625 55%, #020617 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden; /* Prevent horizontal scroll on mobile */
  word-wrap: break-word; /* Prevent text overflow */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Prevent images from overflowing on mobile */
img,
picture,
video {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(19, 176, 255, 0.3);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 22, 37, 0.96), rgba(2, 22, 37, 0.9) 40%, transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 72px;
  width: auto;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.8), 0 12px 30px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.brand-text {
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.nav-link {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  color: var(--text-soft);
  border: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.15s ease;
  min-height: 36px; /* Touch-friendly */
  display: inline-flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.nav-link:hover {
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.45);
  background-color: rgba(15, 23, 42, 0.8);
  transform: translateY(-1px);
}

.nav-link-active {
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.65);
  background: radial-gradient(circle at top left, rgba(19, 176, 255, 0.32), rgba(15, 23, 42, 0.95));
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #020617;
  font-weight: 600;
  border-color: transparent;
  box-shadow: 0 18px 35px rgba(19, 176, 255, 0.45);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-strong), #4ade80);
  color: #020617;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
  }

  .brand {
    flex-shrink: 0;
  }

  .brand-text {
    font-size: 0.85rem;
  }

  .brand-logo {
    height: 60px;
  }

  .main-nav {
    width: 100%;
    margin-top: 0.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 0.3rem 0.7rem;
  }
}

/* Hero */

.hero {
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top, rgba(34, 193, 195, 0.28), transparent 60%);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.6fr);
}

.hero-copy h1 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(2.2rem, 3.1vw + 1.4rem, 3.2rem);
  line-height: 1.08;
}

.hero-emphasis {
  background: linear-gradient(135deg, #f97316, #facc15);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 0 1.7rem;
  color: var(--text-soft);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.hero-meta span {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  max-width: 360px;
  width: 100%;
  background: radial-gradient(circle at top left, rgba(34, 193, 195, 0.4), rgba(4, 36, 52, 0.98));
  border-radius: 24px;
  padding: 1.6rem 1.5rem 1.7rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 640px) {
  .hero-card {
    max-width: 100%;
    padding: 1.4rem 1.3rem 1.5rem;
  }

  .hero-card h2 {
    font-size: 1.1rem;
  }

  .hero-card p {
    font-size: 0.88rem;
  }
}

.hero-card h2 {
  margin: 0.7rem 0 0.5rem;
  font-size: 1.25rem;
}

.hero-card p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-main);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: #e5e7eb;
  min-height: 36px; /* Touch-friendly */
  padding: 0.25rem 0;
}

.hero-link:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .hero {
    padding: 2.5rem 0 2rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .hero-media {
    justify-content: flex-start;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 4vw + 1rem, 2.5rem);
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    gap: 0.7rem;
    margin-bottom: 1.2rem;
  }

  .btn {
    font-size: 0.88rem;
    padding: 0.65rem 1.1rem;
  }

  .hero-meta {
    font-size: 0.75rem;
    gap: 0.6rem;
  }

  .hero-meta span {
    padding: 0.25rem 0.6rem;
  }
}

/* Eyebrow */

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-strong);
  margin: 0;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.16s ease,
    border-color 0.18s ease;
  min-height: 44px; /* Minimum touch target size for mobile */
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #020617;
  box-shadow: 0 18px 35px rgba(19, 176, 255, 0.55);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-strong), #4ade80);
  transform: translateY(-1px);
  box-shadow: 0 22px 45px rgba(22, 163, 74, 0.55);
}

.btn-ghost {
  background-color: rgba(15, 23, 42, 0.8);
  border-color: rgba(148, 163, 184, 0.35);
  color: var(--text-main);
}

.btn-ghost:hover {
  background-color: rgba(15, 23, 42, 0.95);
  border-color: rgba(148, 163, 184, 0.7);
  transform: translateY(-1px);
}

.full-width {
  width: 100%;
}

/* Bus section */

.bus-section {
  position: relative;
  padding: 2.75rem 0 3.25rem;
  background: transparent;
}

.bus-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 2.25rem;
  align-items: center;
}

.bus-text .bus-intro {
  margin: 0 0 1.5rem;
  color: var(--text-main);
  max-width: 26rem;
  font-size: 1rem;
  line-height: 1.5;
}

.bus-text .hero-actions {
  margin-bottom: 1rem;
}

.bus-text .hero-meta {
  margin-top: 0;
}

.bus-viewport {
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.45rem;
  background: rgba(4, 36, 52, 0.6);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.bus-track {
  position: relative;
  width: 100%;
  height: clamp(170px, 22vw, 230px);
  overflow: hidden;
}

.bus-image {
  position: absolute;
  top: 50%;
  left: 0;
  width: 110%;
  opacity: 0.4;
  transform-origin: left center;
  transform: translate3d(-210%, -50%, 0); /* start: bus further left so entire bus travels right on scroll */
  will-change: transform;
  pointer-events: none;
}

@media (max-width: 900px) {
  .bus-section {
    padding: 2rem 0 2.5rem;
  }

  .bus-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .bus-text {
    order: 2;
  }

  .bus-viewport {
    order: 1;
    border-radius: 20px;
  }

  .bus-track {
    height: clamp(150px, 25vw, 200px);
  }
}

/* Sections */

.section {
  padding: 3.25rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(191, 219, 254, 0.12), rgba(4, 36, 52, 0.98));
}

.section-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-header h2 {
  margin: 0 0 0.6rem;
  font-size: 1.6rem;
}

.section-header p {
  margin: 0;
  color: var(--text-soft);
}

/* Feature cards */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.2rem 1.15rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(6, 78, 59, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-subtle);
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* CTA */

.cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  padding: 1.7rem 1.6rem;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(34, 193, 195, 0.4), rgba(251, 191, 36, 0.95));
  border: 1px solid rgba(248, 250, 252, 0.55);
  box-shadow: var(--shadow-soft);
}

.cta-card h2 {
  margin: 0 0 0.45rem;
}

.cta-card p {
  margin: 0;
  color: var(--text-main);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Page hero (inner pages) */

.page-hero {
  padding: 2.6rem 0 2.2rem;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.page-hero h1 {
  margin: 0.35rem 0 0.4rem;
  font-size: clamp(1.9rem, 2.3vw + 1.2rem, 2.5rem);
}

.page-hero-text {
  margin: 0;
  max-width: 40rem;
  color: var(--text-soft);
}

/* About page */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.about-image-shell {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  display: block;
}

.about-image-placeholder {
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background-image: linear-gradient(135deg, rgba(56, 189, 248, 0.35), rgba(5, 150, 105, 0.95)),
    url("tourism-site/images/about-placeholder.webp");
  background-size: cover;
  background-position: center;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.1rem;
  color: #e5e7eb;
  font-size: 0.85rem;
  box-shadow: var(--shadow-soft);
}

.about-copy h2 {
  margin: 0 0 0.7rem;
}

.about-copy p {
  margin: 0 0 0.8rem;
  color: var(--text-soft);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
  margin-top: 1.1rem;
}

.about-highlights h3 {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
}

.about-highlights ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* Services page */

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 2.4rem;
  align-items: center;
}

.services-intro-media {
  border-radius: 20px;
  overflow: hidden;
}

.services-intro-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  display: block;
}

.services-intro-copy h2 {
  margin: 0 0 0.7rem;
}

.services-intro-copy p {
  margin: 0 0 0.6rem;
  color: var(--text-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.35rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(4, 36, 52, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.service-image-shell {
  position: relative;
  overflow: hidden;
  max-height: 210px;
  border-radius: 20px 20px 0 0;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}

.service-card:hover .service-image {
  transform: scale(1.08);
}

.service-body {
  padding: 1.15rem 1.15rem 1.1rem;
}

.service-body h3 {
  margin: 0 0 0.3rem;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

@media (max-width: 640px) {
  .service-meta {
    flex-direction: column;
    gap: 0.4rem;
  }

  .service-price,
  .service-duration {
    width: fit-content;
  }

  .service-cta {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    min-height: 44px;
  }
}

.service-price {
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  background-color: rgba(19, 176, 255, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.55);
}

.service-duration {
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
}

.service-description {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.service-cta {
  font-size: 0.9rem;
  color: var(--accent-strong);
}

.service-cta:hover {
  color: #7dd3fc;
}

.services-note {
  margin-top: 1.9rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  text-align: center;
}

.services-note a {
  color: var(--accent-strong);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-details h2 {
  margin: 0 0 0.6rem;
}

.contact-highlight {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.contact-block {
  margin-bottom: 1rem;
}

.contact-block h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
}

.contact-block p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.contact-form-shell {
  padding: 1.5rem 1.4rem;
  border-radius: 22px;
  background-color: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-subtle);
}

.contact-form-shell h2 {
  margin: 0 0 0.3rem;
}

.contact-form-shell p {
  margin: 0 0 1.1rem;
  color: var(--text-soft);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-row label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-row input,
.form-row textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background-color: rgba(15, 23, 42, 0.96);
  padding: 0.55rem 0.7rem;
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  width: 100%;
  min-height: 44px; /* Touch-friendly input height */
  -webkit-appearance: none;
  appearance: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(19, 176, 255, 0.55);
  background-color: rgba(15, 23, 42, 1);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */

.site-footer {
  margin-top: 2rem;
  padding-top: 2.3rem;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 2rem;
  padding-bottom: 1.7rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.footer-logo {
  height: 32px;
  width: auto;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9), 0 10px 25px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.footer-brand-text {
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-description {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.2rem;
}

.footer-links h3 {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 0.25rem;
}

.footer-links a:hover {
  color: var(--accent-strong);
}

.footer-hours {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  padding: 0.8rem 0 1.1rem;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* Utilities / responsive tweaks */

@media (max-width: 900px) {
  .about-grid,
  .services-intro,
  .contact-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
  }

  .about-image {
    max-width: 100%;
  }

  .services-intro-image {
    max-width: 100%;
  }

  .contact-form-shell {
    padding: 1.3rem 1.2rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 2rem 0 1.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.6rem, 5vw + 0.8rem, 2.2rem);
    margin: 0.3rem 0 0.6rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.3rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero-meta span {
    width: 100%;
    text-align: left;
  }

  .section {
    padding: 2rem 0;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
  }

  .feature-card {
    padding: 1rem 0.95rem;
  }

  .feature-card h3 {
    font-size: 0.95rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  .cta-card {
    padding: 1.3rem 1.1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-card h2 {
    font-size: 1.3rem;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .bus-viewport {
    border-radius: 20px;
  }

  .page-hero {
    padding: 2rem 0 1.5rem;
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 5vw + 0.8rem, 2rem);
  }

  .page-hero-text {
    font-size: 0.9rem;
  }

  .about-highlights {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
  }

  .service-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
  }

  .service-card {
    max-width: 100%;
  }

  .service-body {
    padding: 1rem 1rem 0.95rem;
  }

  .service-body h3 {
    font-size: 1.1rem;
  }

  .service-description {
    font-size: 0.85rem;
  }

  .contact-details h2,
  .contact-form-shell h2 {
    font-size: 1.3rem;
  }

  .contact-block h3 {
    font-size: 0.9rem;
  }

  .contact-block p {
    font-size: 0.85rem;
  }

  .form-row input,
  .form-row textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.6rem 0.75rem;
    min-height: 48px; /* Larger touch target on mobile */
  }

  .form-row textarea {
    min-height: 120px;
  }

  button[type="submit"] {
    min-height: 48px;
    font-size: 0.9rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-links {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.9rem;
  }

  .header-inner {
    padding: 0.65rem 0.9rem;
  }

  .brand-text {
    font-size: 0.75rem;
  }

  @media (max-width: 360px) {
    .brand-text {
      display: none; /* Hide on very small screens */
    }
  }

  .main-nav {
    gap: 0.3rem;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.4rem, 6vw + 0.6rem, 1.9rem);
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .btn {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }

  .section-header h2 {
    font-size: 1.25rem;
  }

  .page-hero h1 {
    font-size: clamp(1.4rem, 6vw + 0.6rem, 1.8rem);
  }

  .cta-card h2 {
    font-size: 1.2rem;
  }

  .service-body h3 {
    font-size: 1rem;
  }

  .contact-details h2,
  .contact-form-shell h2 {
    font-size: 1.2rem;
  }
}

