:root {
  --primary: #0d4f8b;
  --primary-dark: #08365e;
  --accent: #f39a1f;
  --accent-dark: #d87a00;
  --text: #17324a;
  --muted: #6c8196;
  --bg: #f6f3eb;
  --white: #ffffff;
  --surface: #fffdf8;
  --border: rgba(23, 50, 74, 0.08);
  --card-shadow: 0 18px 45px rgba(13, 79, 139, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(243, 154, 31, 0.1), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #f4efe5 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 4.5rem 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.25rem;
}

.section-heading .eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(243, 154, 31, 0.12);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-heading p,
.card p,
.seo-card p,
.info-card p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.9rem 1.45rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-weight: 700;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff9736 100%);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.28);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--card-shadow);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  max-width: 42vw;
}

.brand-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.brand-tagline {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.2rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.nav-links a[aria-current="page"] {
  color: var(--accent-dark);
}

.hero {
  padding: 1.25rem 0 4.5rem;
}

.hero-shell,
.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: 0 28px 60px rgba(13, 79, 139, 0.18);
  isolation: isolate;
}

.hero-shell {
  min-height: 620px;
  background: linear-gradient(112deg, rgba(8, 54, 94, 0.94) 0%, rgba(13, 79, 139, 0.82) 45%, rgba(243, 154, 31, 0.34) 100%);
}

.page-hero {
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
}

.hero-shell::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 154, 31, 0.45), transparent 70%);
  z-index: -1;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 5s ease;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(8, 54, 94, 0.86) 0%, rgba(13, 79, 139, 0.62) 45%, rgba(243, 154, 31, 0.22) 100%),
    linear-gradient(180deg, rgba(8, 54, 94, 0.12) 0%, rgba(8, 54, 94, 0.4) 100%);
}

.hero-dots {
  position: absolute;
  left: 1.75rem;
  bottom: 1.75rem;
  z-index: 1;
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-dot.active {
  background: var(--accent);
  transform: scale(1.18);
}

.hero-grid,
.page-hero-grid,
.cards-grid,
.destinations-grid,
.seo-grid,
.info-grid,
.page-grid {
  display: grid;
  gap: 1.2rem;
}

.hero-grid,
.page-hero-grid {
  padding: 1.75rem;
}

.hero-copy,
.page-hero-copy {
  color: var(--white);
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 2rem 0 2.5rem;
}

.page-hero-copy {
  padding: 0.5rem 0;
}

.hero-tag,
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-tagline {
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffd9a8;
}

.hero-copy h1,
.page-hero-copy h1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-copy p,
.page-hero-copy p {
  max-width: 620px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
}

.hero-highlights,
.inline-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-highlights {
  margin-bottom: 1.75rem;
}

.hero-highlights span,
.inline-links a {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
  max-width: 560px;
}

.stat,
.card,
.seo-card,
.info-card {
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--card-shadow);
}

.card,
.seo-card,
.info-card {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid var(--border);
}

.stat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stat strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(13, 79, 139, 0.12), rgba(243, 154, 31, 0.2));
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 800;
}

.card h3,
.seo-card h3,
.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.offer-wrap,
.cta-box {
  display: grid;
  gap: 1rem;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.offer-wrap {
  padding: 1.3rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(8, 54, 94, 0.96) 0%, rgba(13, 79, 139, 0.9) 65%, rgba(243, 154, 31, 0.88) 100%);
  box-shadow: 0 24px 50px rgba(13, 79, 139, 0.24);
}

.offer-image {
  border-radius: 26px;
  min-height: 280px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.1)),
    url("https://images.unsplash.com/photo-1512343879784-a960bf40e7f2?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.offer-copy {
  padding: 0.75rem;
}

.offer-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-copy h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.offer-copy p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 1.25rem;
}

.offer-price {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
  color: #fff1e6;
}

.offer-list,
.checklist {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.offer-list {
  margin-bottom: 1.5rem;
}

.offer-list li,
.checklist li,
.seo-card li {
  color: rgba(255, 255, 255, 0.9);
}

.checklist li,
.seo-card li {
  color: var(--muted);
}

.offer-list li::before,
.checklist li::before,
.seo-card li::before {
  content: "\2022";
  margin-right: 0.55rem;
}

.offer-list li::before {
  color: #ffd1a6;
}

.checklist li::before,
.seo-card li::before {
  color: var(--accent-dark);
}

.destination-card {
  overflow: hidden;
  padding: 0;
}

.destination-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.destination-copy {
  padding: 1.4rem;
}

.destination-copy p {
  margin: 0.65rem 0 1.1rem;
}

.final-cta {
  padding-bottom: 5rem;
}

.cta-box {
  padding: 2rem 1.4rem;
  border-radius: 30px;
  background:
    linear-gradient(115deg, rgba(243, 154, 31, 0.95), rgba(216, 122, 0, 0.9)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  box-shadow: 0 24px 50px rgba(216, 122, 0, 0.24);
}

.cta-box h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.1;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.footer {
  padding: 0 0 2rem;
  color: var(--muted);
}

.footer-shell {
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 1rem;
}

.footer-links {
  list-style: none;
  gap: 0.85rem 1.2rem;
}

.footer-meta {
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .section {
    padding: 5.5rem 0;
  }

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

  .destinations-grid,
  .seo-grid,
  .info-grid,
  .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-wrap {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    padding: 1.6rem;
  }

  .cta-box {
    grid-template-columns: minmax(0, 1.2fr) auto;
    padding: 2.2rem 2rem;
  }
}

@media (min-width: 992px) {
  .nav-links {
    display: inline-flex;
  }

  .hero-copy {
    padding: 4rem 0 3rem;
  }

  .hero-shell {
    min-height: 660px;
  }

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

@media (max-width: 520px) {
  .hero-shell,
  .page-hero {
    border-radius: 28px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .brand-copy {
    display: none;
  }
}
