:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #10233d;
  --muted: #58708d;
  --line: rgba(16, 35, 61, 0.1);
  --navy: #0f2d52;
  --sea: #1f6fae;
  --teal: #4db6b2;
  --gold: #d5b36a;
  --shadow: 0 24px 70px rgba(15, 45, 82, 0.15);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

@keyframes softPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes shimmerSweep {
  0% {
    transform: translateX(-160%);
  }
  100% {
    transform: translateX(180%);
  }
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #e2e8f0;
  background:
    radial-gradient(circle at 12% 10%, rgba(29, 78, 216, 0.5), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(15, 118, 110, 0.42), transparent 30%),
    linear-gradient(180deg, #0b1225 0%, #121c34 100%);
  background-size: 120% 120%;
}

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

.hero,
.menu-section,
.company-section,
.routes-section,
.vision-section,
.gallery-section,
.cta-section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  padding: 24px 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(16px);
  border: 1px solid #334155;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(248, 250, 252, 0.98), rgba(203, 213, 225, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 10px 22px rgba(15, 45, 82, 0.08);
}

.brand-logo {
  width: 88px;
  height: auto;
  display: block;
  transform: translateY(-1px);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.brand-copy small {
  color: #94a3b8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.67rem;
}

.topbar-links {
  display: flex;
  gap: 22px;
  color: #94a3b8;
  font-size: 0.95rem;
}

.hero-shell {
  min-height: calc(100vh - 116px);
  display: grid;
  place-items: center;
  gap: 26px;
  padding: 34px 0 12px;
}

.hero-content {
  width: min(100%, 920px);
  padding: 68px 58px 52px;
  border-radius: 42px;
  color: white;
  background:
    linear-gradient(160deg, rgba(16, 42, 70, 0.96), rgba(41, 96, 146, 0.86)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.14), transparent 34%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  text-align: center;
  animation: heroFloatIn 900ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
  isolation: isolate;
}

.hero-content::after {
  content: "";
  position: absolute;
  inset: auto 50% -170px auto;
  width: 430px;
  height: 430px;
  translate: 50% 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -20%;
  width: 20%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: skewX(-18deg);
  animation: shimmerSweep 3.6s ease-in-out 1.1s 1 both;
  pointer-events: none;
  z-index: 0;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hero h1,
.section-heading h2,
.cta-copy h2 {
  margin: 14px 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
}

.hero h1 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
}

.hero-title-top,
.hero-title-bottom {
  display: block;
}

.hero-title-top {
  color: white;
}

.hero-title-bottom {
  color: #f3deb0;
}

.hero-lead {
  max-width: 560px;
  margin: 0 auto 20px;
  font-size: clamp(0.98rem, 1.65vw, 1.08rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.hero-search-copy {
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
}

.hero-search-copy p {
  margin: 0;
}

.wave-divider {
  width: min(100%, 440px);
  margin: 26px auto 30px;
  display: block;
  opacity: 0.92;
  animation: softPulse 4.8s ease-in-out infinite;
  pointer-events: none;
}

.wave-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(8, 29, 53, 0.14);
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, #f3deb0, #d5b36a);
}

.btn-ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-meta-item,
.stat-box span,
.route-card span,
.photo-card p,
.cta-copy p,
.company-copy p,
.vision-card p {
  color: #94a3b8;
}

.hero-meta-item {
  min-width: 220px;
  padding: 16px 20px;
  text-align: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 35px rgba(16, 35, 61, 0.08);
}

.hero-meta-item span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-meta-item strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  color: var(--navy);
}

.menu-section,
.company-section,
.routes-section,
.vision-section,
.gallery-section,
.cta-section {
  padding: 28px 0 88px;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.cta-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.menu-grid,
.route-grid,
.gallery-grid,
.vision-layout,
.company-layout {
  display: grid;
  gap: 20px;
}

.menu-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.menu-card,
.route-card,
.vision-card,
.photo-card,
.contact-card,
.stats-panel,
.company-copy {
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid #334155;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.3);
  backdrop-filter: blur(16px);
}

.menu-card {
  padding: 26px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.92)),
    linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(20, 184, 166, 0.14));
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.menu-card:hover,
.route-card:hover,
.vision-card:hover,
.photo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(16, 35, 61, 0.14);
  border-color: rgba(255, 255, 255, 0.96);
}

.menu-card strong,
.route-card h3,
.vision-card h3,
.photo-card h3 {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.menu-card span {
  color: #94a3b8;
  line-height: 1.7;
}

.company-layout {
  grid-template-columns: 1.6fr 0.9fr;
  align-items: start;
}

.company-copy {
  padding: 32px;
}

.company-copy p {
  margin: 0;
  line-height: 1.9;
  font-size: 0.98rem;
}

.company-copy p + p {
  margin-top: 18px;
}

.mobile-readmore {
  position: relative;
}

.mobile-readmore-toggle {
  display: none;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--sea);
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.vision-card .mobile-readmore-toggle,
.hero-content .mobile-readmore-toggle {
  color: #f3deb0;
}

.stats-panel {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.stat-box {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid #334155;
}

.stat-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.8rem;
  color: #e2e8f0;
}

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

.route-card,
.vision-card,
.photo-card {
  padding: 28px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.route-card p {
  margin: 10px 0 12px;
  color: #22d3ee;
  font-weight: 700;
}

.route-card span,
.vision-card p,
.photo-card p {
  line-height: 1.8;
}

.vision-section {
  position: relative;
  padding-top: 0;
}

.vision-section::before {
  content: "";
  position: absolute;
  inset: 20px 0 80px;
  background: linear-gradient(135deg, rgba(15, 45, 82, 0.95), rgba(22, 90, 134, 0.86));
  border-radius: var(--radius-xl);
  z-index: -1;
}

.vision-section .section-heading {
  max-width: 820px;
  margin-bottom: 22px;
  color: white;
  padding: 30px 24px 0;
}

.vision-section .section-kicker {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 10px;
}

.vision-section .section-heading h2 {
  color: white;
  max-width: 780px;
  margin: 0;
  line-height: 1.12;
}

.vision-card {
  color: white;
}

.vision-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  padding: 10px 32px 0;
}

.vision-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.vision-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.vision-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  line-height: 1.85;
}

.gallery-section .section-heading {
  max-width: none;
}

.gallery-heading {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 14px;
}

.gallery-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 160px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee, #14b8a6);
}

.gallery-heading h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #e2e8f0;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.gallery-note {
  margin: 0;
  color: #94a3b8;
  font-size: 0.94rem;
}

.gallery-controls {
  display: inline-flex;
  gap: 10px;
}

.gallery-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #334155;
  background: rgba(15, 23, 42, 0.76);
  color: #e2e8f0;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.gallery-arrow:hover {
  transform: translateY(-2px);
  border-color: #22d3ee;
  background: rgba(15, 23, 42, 0.95);
}

.gallery-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 0 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(24, 73, 116, 0.35) rgba(255, 255, 255, 0.6);
}

.gallery-grid::-webkit-scrollbar {
  height: 10px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.45);
  border-radius: 999px;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.7), rgba(20, 184, 166, 0.68));
  border-radius: 999px;
}

.photo-card {
  flex: 0 0 220px;
  padding: 10px;
  border-radius: 0;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid #334155;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.26);
  scroll-snap-align: start;
}

.photo-card h3 {
  margin: 12px 0 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.photo-card p {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  color: #94a3b8;
}

.photo-media {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
  display: block;
  background: linear-gradient(140deg, rgba(15, 45, 82, 0.84), rgba(77, 182, 178, 0.74));
}

.contact-section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 8px 0 88px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0f172a;
  background: linear-gradient(145deg, #67e8f9, #5eead4);
  box-shadow: 0 12px 24px rgba(34, 211, 238, 0.2);
}

.contact-icon svg {
  width: 26px;
  height: 26px;
}

.contact-copy {
  min-width: 0;
}

.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: #e2e8f0;
}

.contact-card p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.contact-card a {
  color: inherit;
  overflow-wrap: anywhere;
}

.cta-section {
  margin-bottom: 48px;
  padding: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid #334155;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.3);
}

.cta-copy {
  max-width: 720px;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto 42px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(16, 35, 61, 0.08);
}

.site-version,
.site-copyright {
  margin: 0;
  font-size: 0.78rem;
  color: #94a3b8;
}

.site-version {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  min-height: 54px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, #1faa59, #22c35e);
  box-shadow: 0 14px 32px rgba(34, 195, 94, 0.28);
}

.reveal-section {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .menu-grid,
  .route-grid,
  .vision-layout,
  .company-layout,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    gap: 16px;
  }

  .company-copy,
  .stats-panel {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .hero,
  .menu-section,
  .company-section,
  .routes-section,
  .vision-section,
  .gallery-section,
  .contact-section,
  .cta-section {
    width: min(calc(100% - 22px), var(--max-width));
  }

  .topbar {
    border-radius: 28px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .topbar-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .brand-mark {
    width: 64px;
    height: 64px;
  }

  .brand-logo {
    width: 74px;
  }

  .hero-content,
  .company-copy,
  .stats-panel,
  .route-card,
  .vision-card,
  .photo-card,
  .cta-section {
    padding: 24px;
  }

  .menu-grid,
  .route-grid,
  .vision-layout,
  .company-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-heading::after {
    width: 120px;
  }

  .gallery-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .photo-card {
    flex: 0 0 82%;
    padding: 12px;
  }

  .contact-card {
    padding: 22px;
    gap: 12px;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
  }

  .contact-icon svg {
    width: 22px;
    height: 22px;
  }

  .hero-content {
    padding: 48px 26px 38px;
    border-radius: 30px;
  }

  .vision-section .section-heading {
    padding: 24px 20px 0;
  }

  .vision-layout {
    padding: 6px 20px 0;
  }

  .mobile-readmore-content {
    position: relative;
    max-height: 7.2em;
    overflow: hidden;
    transition: max-height 280ms ease;
  }

  .mobile-readmore-content[data-collapsed="true"]::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48px;
    background: linear-gradient(180deg, rgba(11, 18, 37, 0), rgba(18, 28, 52, 0.98));
    pointer-events: none;
  }

  .hero-content .mobile-readmore-content[data-collapsed="true"]::after,
  .vision-card .mobile-readmore-content[data-collapsed="true"]::after {
    background: linear-gradient(180deg, rgba(15, 45, 82, 0), rgba(20, 79, 123, 0.98));
  }

  .company-copy .mobile-readmore-content {
    max-height: 8.8em;
  }

  .vision-card .mobile-readmore-content,
  .cta-copy .mobile-readmore-content,
  .hero-content .mobile-readmore-content {
    max-height: 6.8em;
  }

  .mobile-readmore-content[data-collapsed="false"] {
    max-height: 100vh;
  }

  .mobile-readmore-content[data-collapsed="false"]::after {
    display: none;
  }

  .mobile-readmore-toggle {
    display: inline-flex;
    align-items: center;
  }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    width: min(calc(100% - 22px), var(--max-width));
    margin-bottom: 90px;
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
    padding: 0 16px;
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal-section {
    opacity: 1;
    transform: none;
  }
}
