@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ===== CSS Variables ===== */
:root {
  --background: hsl(0, 0%, 98%);
  --foreground: hsl(200, 20%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(200, 20%, 15%);
  --primary: hsl(166, 100%, 29%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-light: hsl(166, 60%, 95%);
  --primary-dark: hsl(166, 100%, 22%);
  --secondary: hsl(200, 15%, 95%);
  --muted: hsl(200, 10%, 93%);
  --muted-foreground: hsl(200, 10%, 45%);
  --accent: hsl(36, 100%, 50%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(200, 15%, 88%);
  --input: hsl(200, 15%, 88%);
  --ring: hsl(166, 100%, 29%);
  --radius: 0.75rem;
  --hero-overlay-h: 166;
  --hero-overlay-s: 100%;
  --hero-overlay-l: 20%;
  --section-alt: hsl(166, 15%, 96%);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
}

iframe {
  border: 0;
}

/* ===== Container ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Utility Classes ===== */
.font-display { font-family: var(--font-display); }
.text-primary { color: var(--primary); }
.text-foreground { color: var(--foreground); }
.text-muted { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }
.text-white { color: #fff; }
.bg-card { background-color: var(--card); }
.bg-section-alt { background-color: var(--section-alt); }

.bg-primary-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.bg-hero-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 30%,
    transparent 55%
  );
}

.shadow-brand {
  box-shadow: 0 10px 40px -10px rgba(0, 153, 99, 0.3);
}

.shadow-card-hover {
  box-shadow: 0 20px 60px -15px rgba(0, 153, 99, 0.2);
}

.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) + 4px); }
.rounded-2xl { border-radius: calc(var(--radius) + 8px); }
.rounded-full { border-radius: 9999px; }

/* ===== Top Bar ===== */
.top-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--primary-foreground);
  font-size: 0.875rem;
}

.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: opacity 0.2s;
}

.top-bar-left a:hover { opacity: 0.8; }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icons a {
  transition: opacity 0.2s;
}

.social-icons a:hover { opacity: 0.7; }

.social-icons svg {
  width: 1rem;
  height: 1rem;
}

.top-bar-schedule {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 1rem;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.navbar-logo img {
  height: 3rem;
  width: auto;
  filter: brightness(0);
  opacity: 0.8;
}

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

.nav-links a {
  position: relative;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
  border-radius: var(--radius);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  padding: 0.5rem;
  border-radius: var(--radius);
  color: var(--foreground);
  transition: background 0.2s;
}

.mobile-toggle:hover {
  background: var(--muted);
}

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.mobile-menu a:hover { background: var(--muted); }

.mobile-menu a.active {
  background: var(--primary-light);
  color: var(--primary);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  margin-left: 0;
  margin-right: auto;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.375rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-foreground);
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.05;
  color: var(--primary-foreground);
}

.hero p {
  margin-bottom: 2rem;
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== Buttons ===== */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--accent);
  color: var(--accent-foreground);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 40px -10px rgba(0, 153, 99, 0.3);
  transition: transform 0.2s;
}

.btn-accent:hover {
  transform: scale(1.05);
}

.btn-accent svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.btn-accent:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--primary-foreground);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 40px -10px rgba(0, 153, 99, 0.3);
  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

/* ===== Section Headers ===== */
.section-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.section-title {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--foreground);
}

.section-desc {
  max-width: 48rem;
  margin: 0 auto;
  color: var(--muted-foreground);
}

/* ===== Cards ===== */
.card {
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: calc(var(--radius) + 4px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -15px rgba(0, 153, 99, 0.2);
}

.card-icon {
  display: inline-flex;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  background: var(--primary-light);
  border-radius: calc(var(--radius) + 4px);
  transition: background 0.3s;
}

.card:hover .card-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  transition: color 0.3s;
}

.card:hover .card-icon svg {
  color: var(--primary-foreground);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* ===== Grids ===== */
.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.grid-4 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

/* ===== Stats Section ===== */
.stats-section {
  border-bottom: 1px solid var(--border);
  background: var(--card);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

/* ===== About / Commitment Section ===== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.check-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.about-image {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: 0 10px 40px -10px rgba(0, 153, 99, 0.3);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Mission / Vision Cards ===== */
.mv-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.mv-card {
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: calc(var(--radius) + 4px);
}

.mv-card .card-icon {
  margin-bottom: 1rem;
}

.mv-card h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.mv-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-section h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-foreground);
}

.cta-section p {
  max-width: 32rem;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.8);
}

/* ===== Page Hero (Smaller) ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 8rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 10;
}

.page-hero .section-label {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-foreground);
}

.page-hero p {
  max-width: 36rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
}

/* ===== Routes Grid ===== */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.route-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: calc(var(--radius) + 4px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px -10px rgba(0, 153, 99, 0.3);
}

.route-card .flag {
  font-size: 1.5rem;
}

.route-card .country {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
}

/* ===== Advantages ===== */
.advantages-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.advantage-item {
  display: flex;
  gap: 1rem;
}

.advantage-icon {
  flex-shrink: 0;
  padding: 0.75rem;
  background: var(--primary-light);
  border-radius: calc(var(--radius) + 4px);
}

.advantage-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.advantage-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--foreground);
}

.advantage-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.advantages-cta {
  display: inline-block;
  padding: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--primary-foreground);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: 0 10px 40px -10px rgba(0, 153, 99, 0.3);
  text-align: center;
}

.advantages-cta svg.truck-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
}

.advantages-cta h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
}

.advantages-cta p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

/* ===== Contact Cards ===== */
.contact-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contact-card {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: calc(var(--radius) + 8px);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -15px rgba(0, 153, 99, 0.2);
}

.contact-card .card-icon {
  margin: 0 auto 1rem;
}

.contact-card h3 {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--foreground);
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Contact Form ===== */
.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.form-title {
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--foreground);
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--input);
  background: var(--card);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 2px var(--ring);
}

.form-group textarea {
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

/* Map */
.map-container {
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px -10px rgba(0, 153, 99, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 400px;
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--primary-foreground);
}

.footer-inner {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

.footer-logo img {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.2);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer h4 {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-nav a:hover { opacity: 1; }

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

.footer-contact a,
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-contact a:hover { opacity: 1; }

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  color: #fff;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 1000;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== SVG Icons Utility ===== */
.icon-sm {
  width: 0.875rem;
  height: 0.875rem;
}

.icon-md {
  width: 1rem;
  height: 1rem;
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.from-left {
  transform: translateX(-60px);
}

.reveal.from-right {
  transform: translateX(60px);
}

.reveal.fade-only {
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ===== Section padding ===== */
.section { padding: 5rem 0; }

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .routes-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .hero h1 { font-size: 4rem; }
  .section-title { font-size: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-number { font-size: 3rem; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .page-hero h1 { font-size: 3.5rem; }
  .routes-grid { grid-template-columns: repeat(4, 1fr); }

  .top-bar-left .phone-text,
  .top-bar-left .email-text {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: repeat(4, 1fr); }
  .page-hero h1 { font-size: 4rem; }
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  .top-bar-left .phone-text,
  .top-bar-left .email-text {
    display: none;
  }
}
