:root {
  --navy: #0B1F3A;
  --gold: #D4AF37;
  --white: #FFFFFF;
  --ink: #101725;
  --muted: #667085;
  --soft: #F5F1E8;
  --line: rgba(212, 175, 55, 0.22);
  --shadow: 0 24px 70px rgba(11, 31, 58, 0.16);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(100% - 36px, var(--container));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 31, 58, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 26px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 auto;
  padding: 2px 0;
}

.logo-name {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.095em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.logo-name::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.86;
}

.logo-dot {
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.72);
}

.logo-tagline {
  margin-top: 6px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-style: italic;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  padding: 10px 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a::after {
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  color: var(--gold);
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold);
  border-radius: 999px;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy);
  background-position: center;
  background-size: cover;
}

.luxury-hero {
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  background-image: url("../assets/images/hero/hero-bg.jpg");
}

.packages-hero {
  background-image: linear-gradient(rgba(11, 31, 58, 0.78), rgba(11, 31, 58, 0.88)), url("../assets/images/destinations/uttarakhand.jpg");
}

.cabs-hero {
  background-image: linear-gradient(rgba(11, 31, 58, 0.76), rgba(11, 31, 58, 0.9)), url("../assets/images/cars/crysta.jpg");
}

.hotels-hero {
  background-image: linear-gradient(rgba(11, 31, 58, 0.74), rgba(11, 31, 58, 0.9)), url("../assets/images/hotels/premium-hotel.jpg");
}

.about-hero {
  background-image: linear-gradient(rgba(11, 31, 58, 0.76), rgba(11, 31, 58, 0.88)), url("../assets/images/hero/mountains.jpg");
}

.contact-hero {
  background-image: linear-gradient(rgba(11, 31, 58, 0.78), rgba(11, 31, 58, 0.88)), url("../assets/images/destinations/dalhousie.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 25% 20%, rgba(212, 175, 55, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(11, 31, 58, 0.93) 0%, rgba(11, 31, 58, 0.68) 48%, rgba(11, 31, 58, 0.46) 100%);
}

.hero-content {
  max-width: 760px;
  padding: 112px 0;
}

.page-hero {
  padding: 118px 0 96px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero p,
.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.hero-subtitle {
  color: var(--gold) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem !important;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 16px 34px rgba(212, 175, 55, 0.28);
}

.button.primary:hover,
.button.primary:focus {
  background: var(--white);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.65);
}

.button.secondary:hover,
.button.secondary:focus {
  color: var(--navy);
  background: var(--gold);
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
}

.feature-grid,
.image-card-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.feature-card,
.stat-card,
.contact-card,
.contact-panel,
.portrait-card {
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.feature-card::before {
  position: absolute;
  inset: 0;
  content: "";
  border-top: 4px solid var(--gold);
  opacity: 0.9;
}

.feature-card:hover,
.image-card:hover,
.portrait-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(11, 31, 58, 0.2);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(212, 175, 55, 0.18);
  font-weight: 900;
}

.feature-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--navy);
  font-weight: 900;
}

.feature-card a:hover,
.footer-grid a:hover,
.contact-card a:hover {
  color: var(--gold);
}

.dark-band {
  color: var(--white);
  background: var(--navy);
}

.dark-band p {
  color: rgba(255, 255, 255, 0.78);
}

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

.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: center;
}

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

.stat-card {
  padding: 26px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-size: 2.3rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.image-card img {
  height: 235px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.image-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 20px;
  padding: 11px 18px;
  border: 1px solid rgba(212, 175, 55, 0.72);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 14px 28px rgba(212, 175, 55, 0.24);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.card-action:hover,
.card-action:focus {
  color: var(--navy);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 31, 58, 0.16);
}

.portrait-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(212, 175, 55, 0.7), rgba(11, 31, 58, 0.18)) border-box;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.portrait-card::before {
  position: absolute;
  inset: 16px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.portrait-card img {
  height: 520px;
  object-fit: contain;
  object-position: center top;
  background: var(--soft);
}

.portrait-card div {
  position: relative;
  z-index: 2;
  padding: 24px;
  background: var(--white);
}

.portrait-card h3 {
  color: var(--navy);
}

.portrait-card p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.contact-card p {
  margin-bottom: 12px;
}

.inquiry-section {
  scroll-margin-top: 110px;
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.82), rgba(255, 255, 255, 1));
}

.inquiry-card {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(212, 175, 55, 0.58), rgba(11, 31, 58, 0.12)) border-box;
  box-shadow: var(--shadow);
}

.inquiry-form {
  margin-top: 8px;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 31, 58, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.16);
}

.form-full {
  grid-column: 1 / -1;
}

.form-submit {
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}

.contact-list,
.cta-contact-list {
  display: grid;
  gap: 14px;
}

.cta-contact-list {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(11, 31, 58, 0.1);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--navy);
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-row:hover,
.contact-row:focus {
  color: var(--gold);
  transform: translateX(3px);
}

.contact-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.18);
  object-fit: contain;
}

.contact-row span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-contact-list {
  gap: 12px;
}

.footer-contact-list .contact-row {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.footer-contact-list .contact-row:hover,
.footer-contact-list .contact-row:focus {
  color: var(--gold);
}

.footer-contact-list .contact-icon {
  background: rgba(212, 175, 55, 0.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: var(--white);
  background: #25D366;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.38);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 46px rgba(37, 211, 102, 0.48);
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 62px 0 42px;
}

.footer-brand h2,
.footer-grid h3 {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand h2 {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.footer-brand p:first-of-type {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

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

.footer-grid li + li {
  margin-top: 9px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1020px) {
  .navbar {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(11, 31, 58, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 13px 12px;
  }

  .luxury-hero {
    min-height: auto;
  }

  .hero-content,
  .page-hero {
    padding: 82px 0;
  }

  .feature-grid,
  .image-card-grid,
  .packages-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .logo-name {
    gap: 7px;
    font-size: 0.82rem;
    letter-spacing: 0.07em;
  }

  .logo-dot {
    width: 4px;
    height: 4px;
  }

  .logo-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  h1 {
    font-size: 2.55rem;
  }

  .section {
    padding: 64px 0;
  }

  .feature-grid,
  .image-card-grid,
  .packages-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .image-card img {
    height: 220px;
  }

  .portrait-card img {
    height: 420px;
  }

  .card-action {
    width: 100%;
  }

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

  .form-submit {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
