:root {
  --primary: #0d3b8e;
  --primary-light: #1f6fd4;
  --accent: #ff6a00;
  --accent-light: #ff8c2a;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --text: #0a0a0a;
  --text-muted: #6b7280;
  --white: #ffffff;
  --border: rgba(13, 59, 142, 0.12);
  --shadow: 0 12px 34px rgba(13, 59, 142, 0.1);
  --shadow-strong: 0 18px 48px rgba(13, 59, 142, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 106, 0, 0.07), transparent 26%),
    linear-gradient(180deg, #fcfdff 0%, #f3f7fd 100%);
  overflow-x: hidden;
}

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

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

iframe {
  border: 0;
}

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

.section {
  padding: 68px 0;
}

.section:nth-of-type(even):not(.hero):not(.page-hero):not(.section-ink) {
  background: var(--bg-soft);
}

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

.section-ink {
  background: linear-gradient(135deg, #0a2f6d, #11489f 60%, #1f6fd4);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.eyebrow-light {
  color: #ffe4c8;
}

.eyebrow-light::before {
  background: linear-gradient(90deg, #ffe4c8, transparent);
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.9rem, 5.6vw, 5.35rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.3;
}

p,
li,
span {
  line-height: 1.62;
}

.accent {
  color: #ff6a00;
  font-style: italic;
  display: inline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(255, 106, 0, 0.28);
}

.btn-primary:hover {
  background: var(--accent-light);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 14px 28px rgba(13, 59, 142, 0.12);
}

.text-link {
  font-weight: 700;
  color: var(--primary);
}

.section-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 0 2px;
  border-bottom: 2px solid rgba(13, 59, 142, 0.16);
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.section-action::after {
  content: "\2192";
  font-size: 1rem;
  line-height: 1;
}

.section-action:hover {
  color: var(--accent);
  border-color: rgba(255, 106, 0, 0.4);
  transform: translateX(2px);
}

.nav-wrap {
  position: fixed;
  inset: 12px 0 auto;
  z-index: 50;
}

.nav {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 10px 16px 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 41, 95, 0.42);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav nav {
  margin-left: auto;
}

.nav.scrolled {
  background: rgba(8, 41, 95, 0.92);
  box-shadow: 0 20px 48px rgba(7, 27, 59, 0.34);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(241, 246, 255, 0.98));
  box-shadow: inset 0 0 0 1px rgba(13, 59, 142, 0.12), 0 12px 30px rgba(7, 27, 59, 0.18);
  display: grid;
  place-items: center;
  padding: 7px;
  overflow: hidden;
  flex: 0 0 auto;
}

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

.footer-mark {
  width: 58px;
  height: 58px;
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  color: var(--white);
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-text span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-links,
.footer-links {
  list-style: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.24s ease;
}

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

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: url("../images/hero.jpg") center/cover no-repeat;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero {
  padding: 108px 0 32px;
}

.page-hero {
  padding: 108px 0 32px;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 0.9s ease, transform 5.4s ease;
}

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

.hero-carousel-controls {
  position: absolute;
  inset: 50% 18px auto 18px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-carousel-btn {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(9, 23, 49, 0.18);
  color: var(--white);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 10px 24px rgba(7, 27, 59, 0.12);
  font-size: 1.1rem;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.22s ease, background 0.22s ease;
}

.hero-carousel-btn:hover,
.hero-carousel-btn:focus-visible {
  background: rgba(9, 23, 49, 0.26);
  transform: translateY(-2px);
}

.hero h1,
.page-hero h1 {
  font-size: clamp(50px, 5.8vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: min(66vw, 1120px);
  font-weight: 600;
  text-wrap: balance;
}

.hero h1 + p,
.page-hero h1 + p {
  margin-top: 16px;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -140px -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 29, 0.26), transparent 70%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 22, 49, 0.42) 0%, rgba(7, 22, 49, 0.24) 24%, rgba(7, 22, 49, 0.1) 44%, rgba(7, 22, 49, 0) 66%),
    linear-gradient(180deg, rgba(7, 22, 49, 0.12) 0%, rgba(7, 22, 49, 0.02) 22%, rgba(7, 22, 49, 0.18) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  max-width: min(66vw, 1120px);
}

.hero-copy p,
.page-hero-inner p,
.section-ink p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: min(66vw, 1120px);
}

.hero-copy h1 .accent-line {
  display: block;
  line-height: 0.9;
  margin: 0.06em 0 0.02em;
}

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

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.hero-stat,
.trust-card,
.destination-card,
.package-card,
.info-card,
.prose-card,
.long-card,
.tour-card,
.testimonial-card,
.trip-card,
.contact-card,
.map-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover,
.destination-card:hover,
.package-card:hover,
.info-card:hover,
.prose-card:hover,
.long-card:hover,
.tour-card:hover,
.testimonial-card:hover,
.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.hero-stat,
.hero-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.hero-stat {
  padding: 14px;
}

.hero-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.02rem;
  color: var(--white);
}

.hero-stat span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.74);
}

.hero-card {
  padding: 18px;
  width: min(100%, 390px);
  justify-self: end;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(7, 27, 59, 0.24);
}

.hero-card-top {
  margin-bottom: 14px;
}

.hero-chip,
.package-chip,
.destination-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-chip,
.package-chip {
  background: rgba(255, 106, 0, 0.12);
  color: #c94d00;
  border: 1px solid rgba(255, 106, 0, 0.14);
}

.destination-tag {
  background: rgba(13, 59, 142, 0.08);
  color: var(--primary);
}

.hero-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.08rem;
}

.hero-itinerary {
  display: grid;
  gap: 10px;
}

.hero-stop {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.hero-stop-index {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #ffb35d);
  color: var(--white);
  font-weight: 800;
}

.hero-stop h3 {
  margin-bottom: 3px;
  color: var(--white);
}

.hero-stop p,
.hero-mini-bar span {
  color: rgba(255, 255, 255, 0.76);
}

.hero-mini-bar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
}

.trust-grid,
.info-grid,
.destination-grid,
.package-grid,
.testimonial-grid,
.trip-grid,
.long-card-grid {
  display: grid;
  gap: 16px;
}

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

.trust-card,
.destination-card,
.package-card,
.info-card,
.prose-card,
.long-card,
.tour-card,
.testimonial-card,
.trip-card,
.contact-card,
.map-card {
  background: rgba(255, 255, 255, 0.94);
  padding: 20px;
}

.trust-card span,
.package-top strong,
.tour-head h2,
.info-card h3,
.destination-card h3,
.long-card h2,
.testimonial-card .quote-mark,
.trip-card span {
  color: var(--primary);
}

.trust-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.1rem;
}

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

.section-heading h2 {
  margin-top: 10px;
}

.section-heading p,
.info-card p,
.destination-card p,
.package-card p,
.long-card p,
.tour-card p,
.trip-card p,
.contact-card p,
.prose-card p {
  color: var(--text-muted);
}

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

.destination-grid,
.package-grid,
.testimonial-grid,
.trip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.compact-list,
.feature-list,
.contact-list,
.day-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--text-muted);
}

.compact-list li::marker,
.feature-list li::marker,
.day-list li::marker {
  color: var(--accent);
}

.package-top,
.tour-head {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.package-top strong {
  font-size: 1.12rem;
}

.split-panel,
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
}

.split-panel h2,
.split-feature h2 {
  margin-top: 14px;
}

.cta-stack {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.social-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-inline a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 700;
}

.social-block a {
  background: #e9f0ff;
  color: var(--primary);
}

.prose-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.about-story-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(13, 59, 142, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98));
  box-shadow: var(--shadow);
}

.about-story-panel h2 {
  margin-top: 14px;
  max-width: 13ch;
}

.about-story-panel p + p {
  margin-top: 14px;
}

.about-story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.about-story-points div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(13, 59, 142, 0.05);
}

.about-story-points strong,
.about-story-points span {
  display: block;
}

.about-story-points strong {
  color: var(--primary);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.about-story-points span {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.about-note-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(13, 59, 142, 0.12);
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  box-shadow: var(--shadow);
}

.about-note-image {
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, #dce9ff, #eef4ff);
}

.about-note-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-note-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.about-note-body .package-chip {
  justify-self: start;
}

.about-note-body h3 {
  font-size: 1.34rem;
  color: var(--primary);
}

.about-note-body p {
  color: var(--text-muted);
  font-style: italic;
}

.about-note-signoff strong,
.about-note-signoff span {
  display: block;
}

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

.about-note-signoff span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.section-heading-stack {
  align-items: start;
}

.section-heading-stack p {
  max-width: 40ch;
}

.about-services,
.about-values {
  display: grid;
  gap: 22px;
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-values {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.about-values-copy {
  display: grid;
  gap: 12px;
}

.about-values-list {
  display: grid;
  gap: 14px;
}

.about-value-item {
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(13, 59, 142, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.about-value-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 8px;
}

.about-value-item p {
  color: var(--text-muted);
}

.long-card-grid,
.stacked-packages {
  grid-template-columns: 1fr;
}

.testimonial-card .quote-mark {
  display: inline-flex;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.trip-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-list {
  padding-left: 0;
  list-style: none;
}

.contact-list a {
  color: var(--primary);
  font-weight: 700;
}

.map-card {
  padding: 0;
  overflow: hidden;
  min-height: 460px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
}

.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.enquiry-form {
  display: grid;
  gap: 20px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

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

.form-field label {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(13, 59, 142, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(31, 111, 212, 0.48);
  box-shadow: 0 0 0 4px rgba(31, 111, 212, 0.1);
}

.enquiry-note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.enquiry-side {
  display: grid;
  gap: 18px;
}

.enquiry-side .contact-list strong {
  color: var(--primary);
}

.enquiry-side .social-inline a {
  background: rgba(13, 59, 142, 0.08);
  color: var(--primary);
}

.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 106, 0, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(31, 111, 212, 0.24), transparent 24%),
    linear-gradient(180deg, #0b2450 0%, #081c3e 100%);
  color: var(--white);
  padding: 42px 0 16px;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 34%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.02), transparent 40%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 26px;
  align-items: start;
}

.footer-grid > div:first-child {
  padding-right: 18px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.footer h4 {
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.96);
}

.footer p {
  max-width: 34ch;
}

.footer p,
.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-bottom {
  position: relative;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-credit a {
  color: #ffd3a6;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.22s ease;
}

.footer-credit a:hover {
  color: #fff0df;
}

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

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

@media (max-width: 1100px) {
  .hero-grid,
  .split-panel,
  .split-feature,
  .prose-grid,
  .contact-layout,
  .about-story,
  .about-values,
  .enquiry-layout {
    grid-template-columns: 1fr;
  }

  .review-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .review-card-featured {
    grid-column: span 2;
    grid-template-rows: 240px 1fr;
  }

  .hero-card {
    justify-self: start;
  }

  .trust-grid,
  .info-grid,
  .info-grid--featured,
  .destination-grid,
  .package-grid,
  .testimonial-grid,
  .trip-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-feature,
  .destination-feature.reverse,
  .tour-card {
    grid-template-columns: 1fr;
  }

  .destination-feature.reverse .feature-visual,
  .destination-feature.reverse .feature-copy {
    order: initial;
  }

  .photo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .about-service-grid,
  .about-story-points {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 760px) {
  .section {
    padding: 50px 0;
  }

  .nav-wrap {
    inset: 8px 0 auto;
  }

  .nav {
    padding: 10px 12px;
    border-radius: 28px;
  }

  .brand {
    min-width: 0;
    flex: 1;
    gap: 10px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
  }

  .brand-text strong {
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .brand-text span {
    display: none;
    font-size: 0.55rem;
    line-height: 1.25;
    letter-spacing: 0.08em;
  }

  .nav {
    align-items: center;
    flex-wrap: wrap;
    border-radius: 30px;
    padding: 10px 12px;
  }

  .nav nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: 10px;
    flex: 0 0 auto;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    transition: max-height 0.28s ease, opacity 0.22s ease, padding-top 0.22s ease;
  }

  .nav.nav-open .nav-links {
    max-height: 320px;
    opacity: 1;
    padding-top: 16px;
  }

  .nav.nav-open nav {
    display: block;
  }

  .nav-links a {
    display: inline-block;
  }

  .hero {
    padding: 94px 0 30px;
  }

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

  .hero-highlights,
  .review-showcase,
  .trust-grid,
  .info-grid,
  .info-grid--featured,
  .destination-grid,
  .package-grid,
  .testimonial-grid,
  .trip-grid,
  .about-service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .review-card-featured {
    grid-column: auto;
    grid-template-rows: 240px 1fr;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .about-story-panel {
    padding: 24px;
  }

  .about-note-image {
    min-height: 260px;
  }

  .about-story-points {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .tour-image {
    min-height: 220px;
  }

  .tour-card .tour-body {
    padding: 16px 16px 18px;
  }

  .tour-card .tour-head {
    gap: 8px;
    margin-bottom: 0;
  }

  .tour-card .tour-head h2 {
    font-size: 1.4rem;
    line-height: 1.04;
  }

.mobile-package-summary {
  display: block;
  margin-top: 12px;
  line-clamp: unset;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
  overflow: visible;
}

  .tour-card .day-list {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-grid > div:first-child {
    padding-right: 0;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox-dialog {
    padding: 14px;
    border-radius: 22px;
  }

  .gallery-lightbox-dialog img {
    max-height: calc(100vh - 56px);
  }
}
.destination-card,
.package-card,
.info-card.image-card,
.tour-card {
  overflow: hidden;
  padding: 0;
}

.destination-card,
.package-card,
.info-card.image-card,
.trip-card,
.prose-card,
.contact-card,
.review-card {
  height: 100%;
}

.card-image,
.tour-image,
.info-image {
  position: relative;
  min-height: 200px;
  background-size: cover;
  background-position: center;
}

.card-image::after,
.tour-image::after,
.info-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 19, 35, 0.05), rgba(10, 19, 35, 0.52));
}

.destination-card .card-body,
.package-card .card-body,
.tour-card .tour-body,
.info-card .info-body {
  padding: 18px 18px 20px;
}

.destination-card .card-body,
.package-card .card-body,
.info-card .info-body,
.review-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.destination-card h3,
.package-card h3,
.tour-card h2,
.info-card h3 {
  margin: 8px 0 8px;
}

.destination-card p,
.package-card p,
.info-card p,
.tour-card p {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mobile-package-summary {
  display: none;
  color: var(--text-muted);
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.package-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(13, 59, 142, 0.06);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.story-intro {
  max-width: 540px;
}

.story-points {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.story-points div {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(13, 59, 142, 0.05);
  color: var(--primary);
  font-weight: 700;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.photo-panel {
  min-height: 230px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 22, 40, 0.04), rgba(12, 22, 40, 0.5));
}

.photo-panel span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-weight: 700;
}

.destination-showcase {
  display: grid;
  gap: 18px;
}

.destination-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.destination-feature.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.destination-feature.reverse .feature-visual {
  order: 2;
}

.destination-feature.reverse .feature-copy {
  order: 1;
}

.feature-visual {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.feature-copy {
  padding: 28px;
  display: grid;
  align-content: center;
}

.feature-copy p {
  color: var(--text-muted);
  margin-top: 12px;
}

.feature-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.feature-facts span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(13, 59, 142, 0.06);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.stacked-packages {
  display: grid;
  gap: 14px;
}

.tour-card {
  display: grid;
  grid-template-columns: 340px 1fr;
}

@media (max-width: 760px) {
  .tour-card {
    grid-template-columns: 1fr;
  }

  .tour-image {
    min-height: 220px;
  }

  .tour-card .tour-body {
    padding: 16px 16px 18px;
  }

  .tour-card .tour-head {
    gap: 8px;
    margin-bottom: 0;
  }

  .tour-card .tour-head h2 {
    font-size: 1.4rem;
    line-height: 1.04;
  }

  .mobile-package-summary {
    display: none;
  }

  .tour-card .day-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
    padding-left: 0;
    list-style: none;
  }

  .tour-card .day-list li {
    font-size: 0;
    line-height: 0;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(13, 59, 142, 0.05);
  }

  .tour-card .day-list li strong {
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--primary);
    display: block;
  }
}

.hero-home {
  background:
    linear-gradient(135deg, rgba(13, 59, 142, 0.18), rgba(31, 111, 212, 0.08));
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 22, 49, 0.42) 0%, rgba(7, 22, 49, 0.24) 24%, rgba(7, 22, 49, 0.1) 44%, rgba(7, 22, 49, 0) 66%),
    linear-gradient(180deg, rgba(7, 22, 49, 0.12) 0%, rgba(7, 22, 49, 0.02) 22%, rgba(7, 22, 49, 0.18) 100%);
}

.hero-home .hero-copy {
  max-width: min(50vw, 760px);
}

.hero-home .hero-copy h1 {
  color: rgba(255, 255, 255, 0.98);
  text-shadow:
    0 2px 10px rgba(7, 27, 59, 0.18),
    0 14px 34px rgba(7, 27, 59, 0.28);
}

.hero-home .hero-copy p {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 6px 18px rgba(7, 27, 59, 0.22);
}

.hero-home .eyebrow {
  text-shadow: 0 4px 12px rgba(7, 27, 59, 0.14);
}

@media (max-width: 760px) {
  .page-hero::after {
    background:
      linear-gradient(180deg, rgba(7, 22, 49, 0.06) 0%, rgba(7, 22, 49, 0.02) 18%, rgba(7, 22, 49, 0.2) 60%, rgba(7, 22, 49, 0.44) 100%),
      linear-gradient(135deg, rgba(7, 22, 49, 0.16) 0%, rgba(7, 22, 49, 0.04) 55%, rgba(7, 22, 49, 0) 100%);
  }

  .hero-home {
    min-height: 100svh;
    background:
      linear-gradient(180deg, rgba(9, 37, 87, 0.08) 0%, rgba(9, 37, 87, 0.03) 18%, rgba(8, 31, 73, 0.16) 56%, rgba(7, 24, 58, 0.34) 100%),
      linear-gradient(135deg, rgba(13, 59, 142, 0.12), rgba(31, 111, 212, 0.05));
    align-items: end;
  }

  .hero-home::after {
    background:
      linear-gradient(180deg, rgba(7, 22, 49, 0.06) 0%, rgba(7, 22, 49, 0.02) 18%, rgba(7, 22, 49, 0.2) 60%, rgba(7, 22, 49, 0.44) 100%),
      linear-gradient(135deg, rgba(7, 22, 49, 0.16) 0%, rgba(7, 22, 49, 0.04) 55%, rgba(7, 22, 49, 0) 100%);
  }

  .hero-home .hero-grid {
    gap: 18px;
  }

  .hero-home .hero-copy {
    max-width: 100%;
    padding: 0 0 8px;
  }

  .hero-home .eyebrow {
    gap: 8px;
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    color: #ffd3a6;
    text-shadow: 0 8px 18px rgba(7, 27, 59, 0.28);
  }

  .hero-home .eyebrow::before {
    width: 28px;
    background: linear-gradient(90deg, #ffd3a6, transparent);
  }

  .hero-home h1 {
    font-size: clamp(3.1rem, 12.4vw, 4.7rem);
    line-height: 0.88;
    letter-spacing: -0.045em;
    max-width: 8ch;
    text-wrap: initial;
    text-shadow: 0 10px 28px rgba(7, 27, 59, 0.28);
  }

  .hero-home .hero-copy h1 .accent-line {
    margin: 0.09em 0 0.05em;
    line-height: 0.84;
  }

  .hero-home .hero-copy p {
    margin-top: 18px;
    max-width: 31ch;
    font-size: 0.92rem;
    line-height: 1.58;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 6px 16px rgba(7, 27, 59, 0.2);
  }

  .hero-home .hero-actions {
    gap: 10px;
    margin-top: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-home .hero-actions .btn {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    padding: 0 18px;
  }

  .hero-carousel-controls {
    inset: auto 12px 18px 12px;
    transform: none;
  }

  .hero-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.hero-about {
  background: url("../images/srinagar-horizontal.jpg") center/cover no-repeat;
}

.hero-destinations {
  background: url("../images/sonmarg-summer-landscape.jpeg") center/cover no-repeat;
}

.hero-packages {
  background: url("../images/dal-lake-horizontal.jfif") center/cover no-repeat;
}

.hero-reviews {
  background: url("../images/Gulmarg-summer-with-flowers-landscape.jpg") center/cover no-repeat;
}

.hero-contact {
  background: url("../images/Nigeen-Lake-horizontal.webp") center/cover no-repeat;
}

.hero-enquiry {
  background:
    linear-gradient(135deg, rgba(13, 59, 142, 0.72), rgba(31, 111, 212, 0.36)),
    url("../images/dal-lake-horizontal.jfif") center/cover no-repeat;
}

.hero-gallery {
  background: url("../images/snowey-mountains-with-pink-background.jfif") center/cover no-repeat;
}

.gallery-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.gallery-card {
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.gallery-trigger {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.gallery-media {
  position: relative;
  height: 260px;
  background-size: cover;
  background-position: center;
}

.gallery-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 19, 35, 0.08), rgba(10, 19, 35, 0.72));
}

.gallery-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 18px 18px;
  min-height: 0;
}

.gallery-body h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
}

.gallery-body p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.65;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
}

.gallery-card:hover .gallery-body p,
.gallery-card:focus-within .gallery-body p {
  max-height: 120px;
  margin-top: 10px;
  opacity: 1;
  transform: translateY(0);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 120;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 39, 0.84);
  backdrop-filter: blur(8px);
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: calc(100vh - 48px);
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.gallery-lightbox-dialog img {
  width: 100%;
  max-height: calc(100vh - 84px);
  object-fit: contain;
  border-radius: 20px;
}

.gallery-lightbox-nav,
.gallery-lightbox-close {
  position: absolute;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 28, 62, 0.88);
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible,
.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  background: rgba(13, 59, 142, 0.96);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-prev:focus-visible,
.gallery-lightbox-next:hover,
.gallery-lightbox-next:focus-visible {
  transform: translateY(-50%) scale(1.06);
}

.gallery-lightbox-prev {
  left: 14px;
}

.gallery-lightbox-next {
  right: 14px;
}

.gallery-lightbox-close {
  top: 10px;
  right: 10px;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  transform: scale(1.06);
}

body.lightbox-open {
  overflow: hidden;
}

.tour-head h2,
.long-card h2,
.trip-card h3,
.destination-card h3,
.package-card h3 {
  color: var(--primary);
}

.quote-mark,
.trip-card span {
  color: var(--primary);
}

.review-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.review-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.review-card-featured {
  grid-template-rows: 240px 1fr;
}

.review-photo {
  min-height: 240px;
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.review-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 22, 42, 0.02), rgba(9, 22, 42, 0.22));
}

.review-photo-small {
  min-height: 240px;
  height: 240px;
}

.review-body {
  padding: 18px;
}

.review-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.review-body p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.93rem;
}

.review-meta {
  margin-top: auto;
  padding-top: 14px;
  display: grid;
  gap: 4px;
}

.review-meta strong {
  color: var(--primary);
  font-size: 1rem;
}

.review-meta span {
  color: var(--text-muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 760px) {
  .section-heading,
  .section-heading.section-heading-stack {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .section-heading > * {
    width: 100%;
  }

  .story-points,
  .info-grid--featured,
  .photo-strip,
  .review-showcase,
  .about-service-grid,
  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .story-points {
    gap: 8px;
    margin-top: 10px;
  }

  .story-points div {
    padding: 10px 12px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .info-grid--featured {
    gap: 12px;
  }

  .info-card.image-card .info-image,
  .photo-panel {
    min-height: 180px;
  }

  .info-card .info-body {
    padding: 16px 16px 18px;
  }

  .info-card h3,
  .destination-card h3,
  .package-card h3,
  .trip-card h3 {
    font-size: 1.08rem;
  }

  .info-card p,
  .destination-card p,
  .package-card p,
  .trip-card p,
  .prose-card p,
  .contact-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .section-action,
  .text-link {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .page-hero h1,
  .hero h1 {
    max-width: 100%;
  }

  .footer {
    padding: 28px 0 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px 12px;
  }

  .footer-grid > div {
    display: grid;
    gap: 8px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-brand {
    margin-bottom: 6px;
    gap: 10px;
  }

  .footer-mark {
    width: 46px;
    height: 46px;
  }

  .footer .brand-text strong {
    font-size: 0.86rem;
  }

  .footer .brand-text span {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .footer p,
  .footer-links a,
  .footer-links span {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .footer h4 {
    margin-bottom: 4px;
    font-size: 0.76rem;
  }

  .footer-links {
    gap: 6px;
  }

  .footer-social {
    gap: 6px;
    margin-top: 8px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-social a svg {
    width: 15px;
    height: 15px;
  }

  .footer-bottom {
    margin-top: 16px;
    padding-top: 12px;
    gap: 6px;
  }

  .footer-bottom p {
    max-width: none;
    font-size: 0.78rem;
    line-height: 1.4;
  }
}

@media (max-width: 1100px) {
  .enquiry-side {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .map-card,
  .map-card iframe {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .enquiry-side {
    grid-template-columns: 1fr;
  }

  .map-card,
  .map-card iframe {
    min-height: 320px;
  }
}
