:root {
  --primary: #dd1d25;
  --secondary: #1046a3;
  --accent: #f4b400;
  --dark: #152033;
  --text: #243044;
  --muted: #667085;
  --light: #f7f9fc;
  --white: #ffffff;
  --border: rgba(21, 32, 51, 0.08);
  --shadow: 0 18px 45px rgba(13, 31, 62, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.02em;
  max-width: 390px;
}

.brand span {
  display: block;
  color: var(--secondary);
  font-size: 0.92rem;
}

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

.nav a {
  font-weight: 600;
  color: var(--dark);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--light);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.2rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.95)),
    url('../assets/61DB115C-2961-4149-87C4-607D8F0C6F95.jpeg') center/cover;
  padding: 5.5rem 0 4rem;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.12;
}

.hero::before {
  width: 340px;
  height: 340px;
  background: var(--accent);
  top: -90px;
  right: -80px;
}

.hero::after {
  width: 260px;
  height: 260px;
  background: var(--primary);
  bottom: -70px;
  left: -60px;
}

.hero-grid,
.about-grid,
.specials-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.14);
  color: #8d5c00;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero h1,
.section-heading h2,
.specials-copy h2,
.transport-card h2,
.cta-card h2 {
  margin: 1rem 0 1rem;
  line-height: 1.08;
  color: var(--dark);
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
}

.hero h1 span {
  color: var(--secondary);
}

.hero-text,
.section-heading p,
.specials-copy p,
.transport-card p,
.cta-card p,
.footer p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0;
}

.hero-badges span,
.highlight-box span {
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff4d54);
  color: #fff;
  box-shadow: 0 16px 32px rgba(221, 29, 37, 0.28);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), #2a67d8);
  color: #fff;
  box-shadow: 0 16px 32px rgba(16, 70, 163, 0.25);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
}

.hero-card,
.about-image,
.specials-image,
.video-wrap,
.cta-card,
.transport-card,
.service-card,
.highlight-box,
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card img,
.about-image img,
.specials-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  background: #fff;
  border: 1px solid rgba(221, 29, 37, 0.12);
}

.section {
  padding: 5rem 0;
}

.section-heading.centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.2rem;
}

.services {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.service-card {
  background: #fff;
  padding: 1.6rem;
  border: 1px solid var(--border);
}

.service-card.accent {
  background: linear-gradient(180deg, rgba(244, 180, 0, 0.15), rgba(255, 255, 255, 1));
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-card h3,
.footer h3,
.footer h4 {
  color: var(--dark);
  margin-top: 0;
}

.highlight-strip {
  padding-top: 0;
}

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

.highlight-box {
  padding: 1.4rem;
  background: linear-gradient(135deg, rgba(16, 70, 163, 0.08), rgba(221, 29, 37, 0.08));
  border: 1px solid var(--border);
}

.highlight-box strong {
  display: block;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.55rem;
}

.specials {
  background: #fff;
}

.special-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  display: grid;
  gap: 0.9rem;
}

.special-list li {
  background: var(--light);
  border-left: 5px solid var(--accent);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font-weight: 700;
}

.special-note strong {
  color: var(--primary);
}

.transport-offer {
  padding-top: 0;
}

.transport-card,
.cta-card {
  background: linear-gradient(135deg, var(--secondary), #0a2d69 70%, var(--primary));
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  color: #fff;
}

.transport-card h2,
.transport-card p,
.cta-card h2,
.cta-card p,
.cta-card .section-tag,
.transport-card .section-tag {
  color: #fff;
}

.gallery {
  background: linear-gradient(180deg, #ffffff, #f9fbff);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  grid-auto-rows: 220px;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.video-wrap {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: #000;
}

.video-wrap video {
  width: 100%;
  max-height: 650px;
  background: #000;
}

.footer {
  background: #0e1728;
  color: rgba(255, 255, 255, 0.92);
  padding: 3.5rem 0;
}

.footer-grid {
  align-items: start;
}

.footer a,
.footer p {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  margin: 0.45rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .specials-grid,
  .footer-grid,
  .services-grid,
  .highlight-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .transport-card,
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    padding: 1rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .brand {
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4.75rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .topbar-inner {
    min-height: 74px;
  }
}
