:root {
  --ink: #17202a;
  --muted: #5d6875;
  --line: #e7ebef;
  --soft: #f6f8fa;
  --brand: #f7b500;
  --brand-dark: #ca7a00;
  --green: #128c4a;
  --blue: #0b4f8a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--white);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--ink);
  font-weight: 900;
}

.menu-toggle {
  display: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  color: var(--ink);
}

.nav-links a:hover {
  color: var(--brand-dark);
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
}

.button-primary {
  background: var(--brand);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-whatsapp {
  background: var(--green);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  color: var(--white);
  background: linear-gradient(90deg, rgba(12, 18, 25, 0.88), rgba(12, 18, 25, 0.38)), url("kukke-shree-travels-hero.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 86px 0 120px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(247, 181, 0, 0.95);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  margin-top: 18px;
  font-size: clamp(38px, 6vw, 68px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0;
}

.hero p {
  max-width: 620px;
  margin-top: 18px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -74px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--line);
}

.trust-item {
  background: var(--white);
  padding: 22px;
}

.trust-item strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 82px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 520px;
  color: var(--muted);
}

.section-dark .section-heading p,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.section-soft .card {
  background: var(--white);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.card p,
.muted {
  color: var(--muted);
}

.section-dark .card p {
  color: rgba(255, 255, 255, 0.76);
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--ink);
  font-weight: 900;
}

.list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 26px;
}

.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pill-list li,
.tag {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--white);
  font-weight: 700;
  color: var(--ink);
}

.route-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-weight: 800;
}

.route-link span {
  color: var(--brand-dark);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: start;
}

.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

label {
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d7dee5;
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 168px;
  resize: vertical;
}

.notice {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 74px 0;
}

.page-hero p {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 16px;
  color: var(--brand);
  font-weight: 800;
}

.footer {
  background: #101820;
  color: var(--white);
  padding: 46px 0 92px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
}

.footer a,
.footer p,
.footer li {
  color: rgba(255, 255, 255, 0.78);
}

.footer ul {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.footer li {
  margin-bottom: 8px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.sticky-cta a {
  box-shadow: var(--shadow);
}

.mobile-bottom-bar {
  display: none;
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 16px;
  }

  .nav-links a {
    padding: 11px 0;
  }

  .menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hero {
    min-height: 590px;
  }

  .trust-grid,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3,
  .grid-2,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  .topbar {
    display: none;
  }

  .hero {
    min-height: 630px;
    background-position: center right;
  }

  .hero-content {
    padding: 58px 0 118px;
  }

  .hero p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    margin-top: -44px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .card,
  .contact-panel {
    padding: 20px;
  }

  .sticky-cta {
    display: none;
  }

  .mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
  }

  .mobile-bottom-bar a {
    min-height: 58px;
    border-radius: 0;
  }

  .footer {
    padding-bottom: 86px;
  }
}
