:root {
  --topbar-bg: #0a192f;
  --accent: #f39a1f;
  --accent-light: #ffb347;
  --text: #ffffff;
  --text-muted: #d1d5db;
  --shadow: rgba(0, 0, 0, 0.4);
  --brand-blue: #19a8f4;
  --brand-blue-dark: #0b3f71;
  --brand-blue-soft: #eaf7ff;
  --brand-orange: #f39a1f;
  --brand-orange-dark: #cf7600;
  --brand-navy: #0a192f;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #eef7fd;
  font-family: "Outfit", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 728px;
  overflow: hidden;
  color: var(--text);
  background: #0d2340;
}



.navbar {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: linear-gradient(135deg, rgba(5, 11, 20, 0.9) 0%, rgba(10, 18, 32, 0.9) 50%, rgba(3, 7, 13, 0.9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}

.brand-sub {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
  opacity: 0.95;
  color: #d9efff;
}

.mobile-actions {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .active {
  color: var(--accent) !important;
}

.nav-links .active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.language-btn {
  min-width: 40px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.language-btn:hover,
.language-btn.is-active {
  background: #ffffff;
  color: var(--brand-blue-dark);
}

.google-translate-host,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.goog-logo-link,
.goog-te-menu-frame,
#goog-gt-tt,
body > .skiptranslate,
iframe.skiptranslate,
.goog-tooltip,
.goog-tooltip:hover,
.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-xl07Ob-OEVmcd,
.VIpgJd-yAWNEb-L7lbkb,
iframe[src*="translate.google"],
iframe[src*="translate.googleapis"],
iframe[id*="goog"],
iframe[name*="goog"],
[id*="goog-gt"],
[class*="goog-te"],
[class*="VIpgJd"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html,
html.translated-ltr,
html.translated-rtl,
body {
  margin-top: 0 !important;
  top: 0 !important;
}

.goog-text-highlight {
  background: transparent !important;
  box-shadow: none !important;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  background: var(--glass-bg);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.nav-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-toggle-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.icon-btn {
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
}

.plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, #19a8f4 0%, #0d6efd 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(25, 168, 244, 0.25);
  transition: var(--transition);
  white-space: nowrap;
}

.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 168, 244, 0.45);
  border-color: rgba(25, 168, 244, 0.5);
  background: linear-gradient(135deg, #2dc4ff 0%, #1a83ff 100%);
  filter: brightness(1.05);
}

.plan-btn:active {
  transform: translateY(0);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.03) 38%, rgba(0, 0, 0, 0.26) 100%);
}

/* -----------------------------------------
   PREMIUM REDESIGNED ABOUT SECTION
----------------------------------------- */
.premium-about-section {
  padding: 120px 0;
  background: radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(243, 154, 31, 0.03) 0%, transparent 50%),
              #fafbfc;
  position: relative;
  overflow: hidden;
}

.premium-about-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Asymmetric Photo Collage (Left Column) - Now Simplified to Single Image */
.about-collage {
  position: relative;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  border: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-collage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.08) 0%, rgba(20, 184, 166, 0.18) 50%, rgba(15, 23, 42, 0.04) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.4s ease;
  z-index: 2;
}

.about-collage:hover::before {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
}

.about-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-collage:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.about-collage:hover img {
  transform: scale(1.05);
}

.about-collage .collage-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 18px;
  border-radius: 30px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

/* Brand Content (Right Column) */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.content-tag {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.content-heading {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: #000000;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.content-heading .accent-word {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

.content-text-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #000000;
  margin: 0 0 20px;
  font-weight: 400;
}

.content-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333333;
  margin: 0 0 32px;
}

/* CTA Button - Option A: Modern Offset Border Block */
.premium-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-blue-dark);
  color: #ffffff;
  padding: 16px 36px;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: 1px solid var(--brand-blue-dark);
  border-radius: 0px;
  cursor: pointer;
  z-index: 1;
}

.premium-about-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1.5px solid var(--brand-blue);
  transform: translate(6px, 6px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  pointer-events: none;
}

.premium-about-btn i {
  transition: transform 0.3s ease;
}

.premium-about-btn:hover {
  transform: translate(3px, 3px);
  color: #ffffff;
  background: var(--brand-blue-dark);
}

.premium-about-btn:hover::after {
  transform: translate(0, 0);
}

.premium-about-btn:hover i {
  transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .premium-about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-collage {
    height: 460px;
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .premium-about-section {
    padding: 80px 0;
  }
}

.trips-section {
  background:
    linear-gradient(180deg, #f9fdff 0%, #eef8ff 100%);
  padding: 52px 0 88px;
}

.trips-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 42px;
}

.trips-title {
  margin: 0 0 40px;
  color: var(--brand-blue-dark);
  font-family: "Outfit", sans-serif;
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.5px;
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.trip-card {
  position: relative;
  padding: 14px 14px 16px;
  border: 1px solid rgba(25, 168, 244, 0.14);
  border-radius: 12px;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 251, 244, 0.96) 100%);
  box-shadow:
    0 20px 45px rgba(91, 62, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.trip-image {
  position: relative;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44, 35, 22, 0.12);
}

.trip-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(17, 15, 11, 0.52), rgba(17, 15, 11, 0.04) 44%);
}

.trip-duration {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-blue-dark);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.trip-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(25, 168, 244, 0.5);
  border-radius: 10px;
  font-size: 16px;
  color: var(--brand-blue-dark);
  background: rgba(25, 168, 244, 0.08);
}

.trip-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8ee 0%, #ffe9c9 100%);
  color: var(--brand-orange-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-align: center;
  border: 1px solid rgba(243, 154, 31, 0.18);
}

.trip-price strong,
.trip-price span {
  font-family: "Outfit", sans-serif;
}

.trip-price strong {
  font-size: 16px;
  font-weight: 700;
}

.trip-price span {
  font-size: 22px;
  font-weight: 700;
}

.trip-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 12px 4px;
  min-height: 92px;
}

.trip-card h3 {
  margin: 0 0 2px;
  color: #343434;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.18;
}

.trip-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px solid rgba(25, 168, 244, 0.1);
}

.highlight-title {
  color: var(--brand-blue-dark);
}

/* Region Card Styles (Editorial Reference UI) */
.region-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.region-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.region-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.region-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.region-card:hover .region-image img {
  transform: scale(1.06);
}

.region-content {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.region-badge {
  display: none; /* Hidden to match reference */
}

.region-content h3 {
  margin: 0 0 12px;
  color: #111111;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.region-duration {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 32px;
}

.region-btn {
  display: inline-block;
  align-self: flex-start;
  padding: 12px 32px;
  background: #1f5086;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.region-card:hover .region-btn {
  background: var(--brand-blue-dark);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 20px;
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .brand-name {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 15px 20px;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-toggle-btn {
    display: inline-flex;
  }
  
  .nav-actions {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-left: 36px;
    padding-right: 36px;
  }

  .mountain-showcase {
    min-height: 460px;
    max-width: 700px;
  }

  .trip-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }

  .trip-image {
    height: 380px;
  }
}

@media (max-width: 760px) {
  .navbar {
    padding: 12px 20px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-sub {
    font-size: 12px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .mobile-actions {
    display: flex;
  }

  .mobile-actions .language-switcher {
    width: 100%;
    justify-content: center;
  }

  .mobile-actions .language-btn {
    flex: 1;
  }

  .nav-toggle-btn {
    display: inline-flex;
    align-self: flex-end;
  }

  .nav-toggle:checked + .nav-toggle-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .plan-btn {
    padding: 12px 16px;
    font-size: 16px;
  }

  .about-inner {
    padding: 64px 20px 76px;
  }

  .about-copy h2 {
    font-size: 32px;
  }

  .about-copy p {
    font-size: 16px;
    line-height: 1.75;
  }

  .mountain-showcase {
    min-height: 360px;
  }

  .mountain-main {
    inset: 0;
  }

  .trips-inner {
    padding: 0 20px;
  }

  .trip-image {
    height: 340px;
  }

  .trip-card h3 {
    font-size: 18px;
  }

  .trip-content {
    padding-left: 6px;
    padding-right: 6px;
  }

  .trip-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.recommended-section {
  background:
    radial-gradient(circle at top left, rgba(25, 168, 244, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f1faff 100%);
  padding: 82px 0 94px;
}

.recommended-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 42px;
}

.recommended-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.recommended-copy {
  max-width: 780px;
}

.recommended-title {
  margin: 0 0 12px;
  color: var(--brand-blue-dark);
  font-family: "Outfit", sans-serif;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.04;
}

.recommended-text {
  margin: 0;
  color: #384659;
  font-size: 15px;
  line-height: 1.75;
}

.recommend-grid {
  display: flex;
  gap: 20px;
  width: 100%;
  height: 480px;
}

.recommend-card {
  flex: 1;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: #0a192f;
  box-shadow: 0 10px 30px rgba(11, 63, 113, 0.05);
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.3, 1), box-shadow 0.4s ease;
}

.recommend-card:hover {
  flex: 2.2;
  box-shadow: 0 25px 50px rgba(11, 63, 113, 0.18);
}

.recommend-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 30%, transparent 60%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.recommend-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.recommend-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

.recommend-card:hover .recommend-image img {
  transform: scale(1.06);
}

.recommend-badge-floating {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--brand-blue-dark);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 2;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.recommend-badge-floating i {
  font-size: 13px;
  color: var(--brand-blue);
}

.recommend-card:hover .recommend-badge-floating {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.recommend-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s ease;
}

.recommend-label {
  display: inline-block;
  background: rgba(0, 0, 0, 0.45);
  color: #ffd883;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: max-content;
  opacity: 0;
  transform: translateY(15px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.3, 1), transform 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

.recommend-card:hover .recommend-label {
  opacity: 1;
  transform: translateY(0);
}

.recommend-content h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.85), 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: color 0.3s ease;
}

.recommend-card:hover .recommend-content h3 {
  color: var(--brand-blue);
}

.recommend-btn-sleek {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: 20px;
  width: max-content;
  opacity: 0;
  transform: translateY(15px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.3, 1), transform 0.5s cubic-bezier(0.25, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease;
}

.recommend-btn-sleek i {
  font-size: 14px;
  color: var(--brand-blue);
  transition: transform 0.3s ease;
}

.recommend-card:hover .recommend-btn-sleek {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.recommend-btn-sleek:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #ffffff;
}

.recommend-btn-sleek:hover i {
  color: #ffffff;
  transform: translateX(4px);
}

@media (max-width: 1180px) {
  .recommended-head {
    align-items: flex-start;
  }

  .recommend-grid {
    height: 440px;
    gap: 16px;
  }
}

@media (max-width: 760px) {
  .recommended-inner {
    padding: 0 20px;
  }

  .recommended-section {
    padding: 64px 0 76px;
  }

  .recommended-text {
    font-size: 14px;
  }

  .recommend-grid {
    flex-direction: column;
    height: auto;
    gap: 16px;
  }

  .recommend-card {
    flex: none;
    height: 320px;
    border-radius: 20px;
  }

  .recommend-image {
    height: 100%;
  }

  .recommend-label,
  .recommend-btn-sleek {
    opacity: 1;
    transform: translateY(0);
  }
}


.expeditions-section {
  background:
    linear-gradient(180deg, #f8fdff 0%, #eef8ff 100%);
  padding: 88px 0 100px;
}

.expeditions-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 42px;
}

.expeditions-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.expeditions-eyebrow {
  margin: 0 0 10px;
  color: var(--brand-orange-dark);
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.expeditions-title {
  margin: 0;
  color: var(--brand-blue-dark);
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.expeditions-intro {
  max-width: 560px;
  margin: 0;
  color: #485669;
  font-size: 15px;
  line-height: 1.8;
}

.expedition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.expedition-card {
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(25, 168, 244, 0.14);
  box-shadow: 0 22px 46px rgba(93, 61, 18, 0.08);
}

.expedition-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.expedition-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expedition-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 13, 8, 0.68), rgba(17, 13, 8, 0.08) 46%);
}

.expedition-body {
  padding: 22px 24px 24px;
}

.expedition-body h3 {
  margin: 0 0 18px;
  color: #242f3b;
  font-size: 19px;
  line-height: 1.3;
}

.expedition-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(25, 168, 244, 0.1);
}

.expedition-stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-blue-dark);
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.expedition-stat-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 2px solid rgba(25, 168, 244, 0.5);
  background: rgba(25, 168, 244, 0.08);
}

.expedition-price {
  color: var(--brand-orange-dark);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .expeditions-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .expedition-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .expeditions-section {
    padding: 70px 0 78px;
  }

  .expeditions-inner {
    padding: 0 20px;
  }

  .expedition-media {
    min-height: 320px;
  }

  .expedition-body {
    padding: 18px 18px 20px;
  }
}

.stories-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #eff8ff 100%);
  padding: 92px 0 110px;
}

.stories-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 42px;
}

.stories-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.stories-kicker {
  margin: 0 0 10px;
  color: var(--brand-orange-dark);
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stories-title {
  margin: 0;
  color: var(--brand-blue-dark);
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.stories-text {
  max-width: 560px;
  margin: 0;
  color: #49586a;
  font-size: 15px;
  line-height: 1.8;
}

.stories-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.95fr 0.95fr;
  grid-template-rows: repeat(2, 260px);
  gap: 18px;
}

.story-tile {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #d8d8d8;
  box-shadow: 0 20px 42px rgba(95, 63, 18, 0.08);
}

.story-feature {
  grid-row: span 2;
}

.story-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.01);
}

.story-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 14, 21, 0.56), rgba(9, 14, 21, 0.18));
}

.story-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
}

.story-label {
  margin: 0 0 12px;
  color: #ffe1b1;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-overlay h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.story-tile:not(.story-feature) .story-overlay h3 {
  font-size: clamp(20px, 2vw, 26px);
}

.story-btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffbd59 0%, #f39a1f 100%);
  color: #5d3000;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(240, 168, 50, 0.22);
}

@media (max-width: 1180px) {
  .stories-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .stories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .story-feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 420px;
  }

  .story-tile {
    min-height: 240px;
  }
}

@media (max-width: 760px) {
  .stories-section {
    padding: 72px 0 84px;
  }

  .stories-inner {
    padding: 0 20px;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .story-feature,
  .story-tile {
    min-height: 240px;
  }
}

.site-footer {
  position: relative;
  background: linear-gradient(135deg, #050b14 0%, #0a1220 50%, #03070d 100%);
  color: #f4f7fb;
  padding: 100px 0 40px;
  overflow: hidden;
  font-family: "Outfit", sans-serif;
}

/* Glowing Decorative Background Spheres */
.footer-glow-sphere-1,
.footer-glow-sphere-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.15;
  z-index: 1;
}

.footer-glow-sphere-1 {
  width: 400px;
  height: 400px;
  background: var(--brand-blue);
  top: -100px;
  left: -100px;
}

.footer-glow-sphere-2 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  bottom: -150px;
  right: -100px;
}

#about,
#luxury-trips,
#treks,
#expeditions,
#stories,
#contact {
  scroll-margin-top: 96px;
}

.contact-page {
  background: linear-gradient(180deg, #f9fdff 0%, #eef8ff 100%);
  color: #172334;
  padding: 54px 6vw 84px;
}

.contact-hero,
.contact-layout {
  max-width: 1180px;
  margin: 0 auto;
}

.contact-hero {
  padding: 34px 0 28px;
}

.contact-hero h1 {
  max-width: 780px;
  margin: 0 0 14px;
  color: var(--brand-blue-dark);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.contact-hero p {
  max-width: 720px;
  margin: 0;
  color: #3c4a5e;
  font-size: 18px;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.contact-panel,
.contact-card {
  background: #ffffff;
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(16, 53, 88, 0.12);
}

.contact-panel {
  padding: 30px;
}

.contact-card {
  padding: 28px;
}

.contact-card h2,
.form-status h2 {
  margin: 0 0 14px;
  color: var(--brand-blue-dark);
}

.contact-card p {
  margin: 0 0 20px;
  color: #4b5a6e;
  line-height: 1.6;
}

.contact-card a {
  color: var(--brand-blue);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.hp-field,
.hp-field-input {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #23344a;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd8e7;
  border-radius: 6px;
  background: #f8fbff;
  color: #172334;
  font: inherit;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form button {
  justify-self: start;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #1ab0ff 0%, #0b79c9 100%);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 15px 32px;
  box-shadow: 0 14px 28px rgba(11, 121, 201, 0.22);
}

.form-status {
  border-radius: 8px;
  margin-bottom: 18px;
  padding: 18px 20px;
}

.form-status.success {
  background: #eefbf4;
  border: 1px solid #b8e9cd;
  color: #14532d;
}

.form-status.error {
  background: #fff4f4;
  border: 1px solid #f3b9b9;
  color: #7f1d1d;
}

.form-status ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.legal-content {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(16, 53, 88, 0.12);
  padding: 34px;
}

.legal-content article {
  border-bottom: 1px solid #e3edf7;
  margin-bottom: 24px;
  padding-bottom: 22px;
}

.legal-content article:last-of-type {
  border-bottom: 0;
}

.legal-content h2 {
  color: var(--brand-blue-dark);
  margin: 0 0 10px;
}

.legal-content p {
  color: #3c4a5e;
  line-height: 1.7;
  margin: 0 0 10px;
}

.admin-panel {
  max-width: 1320px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(16, 53, 88, 0.12);
  padding: 24px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid #e3edf7;
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: #f1f7ff;
  color: var(--brand-blue-dark);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-table a {
  color: var(--brand-blue);
  font-weight: 700;
}

.content-page {
  background: linear-gradient(180deg, #f9fdff 0%, #eef8ff 100%);
  color: #172334;
  padding: 54px 24px 84px;
}

@media (min-width: 1024px) {
  .content-page {
    padding: 54px 42px 84px;
  }
}

.content-hero,
.content-grid,
.content-card-grid,
.faq-list,
.trip-directory {
  max-width: 1180px;
  margin: 0 auto;
}

.content-hero {
  padding: 34px 0 30px;
}

.content-hero h1 {
  max-width: 840px;
  margin: 0 0 14px;
  color: var(--brand-blue-dark);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.content-hero p {
  max-width: 760px;
  margin: 0;
  color: #3c4a5e;
  font-size: 18px;
  line-height: 1.7;
}

.content-grid,
.content-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.content-block,
.content-card,
.faq-list article,
.trip-directory article {
  background: #ffffff;
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(16, 53, 88, 0.1);
  padding: 26px;
}

.content-block h2,
.content-card h2,
.faq-list h2,
.trip-directory h2 {
  margin: 0 0 10px;
  color: var(--brand-blue-dark);
}

.content-block p,
.content-card p,
.faq-list p {
  margin: 0;
  color: #3c4a5e;
  line-height: 1.7;
}

.content-card a,
.trip-directory a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand-blue);
  font-weight: 800;
}

.faq-list,
.trip-directory {
  display: grid;
  gap: 16px;
}

.trip-directory {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trip-directory article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.trip-directory h2 {
  font-size: 20px;
}

@media (max-width: 800px) {
  .contact-layout,
  .form-grid,
  .content-grid,
  .content-card-grid,
  .trip-directory {
    grid-template-columns: 1fr;
  }

  .trip-directory article {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Main Container */
.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 1. Newsletter Section (Glassmorphism Banner) */
.footer-newsletter-banner {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 70px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.newsletter-content h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.newsletter-content p {
  margin: 0;
  color: rgba(244, 247, 251, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

.newsletter-form {
  flex: 0 1 500px;
}

.newsletter-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 6px;
  transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(243, 154, 31, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-input-group .input-icon {
  position: absolute;
  left: 20px;
  color: rgba(244, 247, 251, 0.5);
  font-size: 18px;
  pointer-events: none;
}

.newsletter-input-group input {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 12px 16px 12px 48px;
  color: #ffffff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

.newsletter-input-group input::placeholder {
  color: rgba(244, 247, 251, 0.45);
}

.newsletter-input-group button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #07162c;
  border: 0;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.newsletter-input-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 154, 31, 0.35);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}

.newsletter-input-group button:active {
  transform: translateY(0);
}

/* 2. Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 25px;
  position: relative;
  letter-spacing: -0.01em;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 35px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Brand Column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-logo .logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo .logo-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.footer-logo .logo-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-desc {
  color: rgba(244, 247, 251, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 25px;
}

/* Social Buttons */
.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(244, 247, 251, 0.8);
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
  transform: translateY(-4px);
  color: #ffffff;
}

.social-btn.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.45);
}

.social-btn.ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e6683c;
  box-shadow: 0 5px 15px rgba(220, 39, 67, 0.45);
}

.social-btn.wa:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.45);
}

/* Links lists */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-list a {
  color: rgba(244, 247, 251, 0.75);
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links-list a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.footer-links-list a:hover {
  color: #ffffff;
}

.footer-links-list a:hover::after {
  width: 100%;
}

/* Contact Column details */
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(244, 247, 251, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

.contact-details li .contact-icon {
  margin-top: 4px;
  color: var(--brand-blue);
  font-size: 16px;
}

.contact-details li a {
  color: rgba(244, 247, 251, 0.75);
  transition: color 0.3s ease;
}

.contact-details li a:hover {
  color: #ffffff;
}

.whatsapp-badge {
  color: #25D366 !important;
  margin-left: 6px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease !important;
}

.whatsapp-badge:hover {
  transform: scale(1.15) rotate(5deg);
}

/* 3. Footer Bottom Row */
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom .copyright {
  color: rgba(244, 247, 251, 0.55);
  font-size: 14px;
}

.brand-text-copyright {
  color: rgba(244, 247, 251, 0.75);
  font-weight: 600;
}

.footer-legal-link {
  color: rgba(244, 247, 251, 0.55);
  margin-left: 8px;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 15px;
}

.payment-title {
  font-size: 13px;
  color: rgba(244, 247, 251, 0.55);
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  color: rgba(244, 247, 251, 0.4);
  transition: color 0.3s ease;
}

.payment-icons i {
  transition: all 0.3s ease;
  cursor: default;
}

.payment-icons i:hover {
  color: rgba(244, 247, 251, 0.95);
  transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #07162c;
  box-shadow: 0 8px 24px rgba(243, 154, 31, 0.3);
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(243, 154, 31, 0.5);
}

.back-to-top:active {
  transform: translateY(-2px);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .site-footer {
    padding: 80px 0 40px;
  }
  
  .footer-newsletter-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 30px;
    margin-bottom: 50px;
  }
  
  .newsletter-form {
    flex: 1;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .footer-col-brand,
  .footer-col-contact {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding: 60px 0 30px;
  }
  
  .footer-newsletter-banner {
    padding: 24px 20px;
  }
  
  .newsletter-content h3 {
    font-size: 22px;
  }
  
  .newsletter-input-group {
    flex-direction: column;
    background: transparent;
    border: 0;
    padding: 0;
    gap: 12px;
  }
  
  .newsletter-input-group .input-icon {
    top: 17px;
  }
  
  .newsletter-input-group input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  .newsletter-input-group button {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
  }
  
  .footer-col-brand,
  .footer-col-contact {
    grid-column: span 2;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 15px;
  }
  
  .payment-methods {
    flex-direction: column;
    gap: 8px;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .hero {
    min-height: 500px;
    padding-bottom: 0;
  }

  .slide-1 img {
    object-position: center 60% !important;
  }

  .topbar {
    height: 46px;
    font-size: 12px;
    padding-top: 0;
    padding-bottom: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .topbar-right {
    gap: 8px;
    font-size: 12px;
    flex-wrap: nowrap;
  }

  .topbar-left {
    gap: 6px;
    min-width: 0;
    flex-wrap: nowrap;
  }

  .topbar-left span,
  .topbar-right a {
    white-space: nowrap;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-sub {
    font-size: 12px;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 14px;
  }

  .nav-toggle-btn {
    position: absolute;
    top: 18px;
    right: 16px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(4px);
  }

  .nav-links a {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links {
    position: absolute;
    top: 56px;
    left: 16px;
    right: 16px;
    margin-top: 126px;
    margin-top: 0;
  }

  .nav-actions {
    position: absolute;
    top: 136px;
    left: 16px;
    right: 16px;
    width: auto;
    justify-content: flex-end;
    margin-top: 0;
  }

  .plan-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 16px;
    background: linear-gradient(135deg, #19a8f4 0%, #0d6efd 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav-actions {
    display: none;
  }

  .about-inner,
  .trips-inner,
  .recommended-inner,
  .expeditions-inner,
  .stories-inner,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-inner,
  .recommended-section,
  .expeditions-section,
  .stories-section,
  .site-footer {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .about-copy {
    max-width: none;
  }

  .section-kicker,
  .expeditions-eyebrow,
  .stories-kicker {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .about-copy h2,
  .trips-title,
  .recommended-title,
  .expeditions-title,
  .stories-title {
    font-size: 26px;
    line-height: 1.12;
  }

  .about-copy p,
  .recommended-text,
  .expeditions-intro,
  .stories-text,
  .footer-brand p,
  .footer-office p,
  .footer-links a {
    font-size: 14px;
    line-height: 1.7;
  }

  .mountain-showcase {
    min-height: 240px;
  }

  .mountain-frame {
    border-radius: 14px;
  }

  .trip-grid,
  .recommend-grid,
  .expedition-grid,
  .stories-grid {
    gap: 18px;
  }

  .trip-card,
  .recommend-card,
  .expedition-card {
    border-radius: 10px;
  }

  .trip-image,
  .recommend-image,
  .expedition-media {
    border-radius: 8px;
  }

  .trip-image {
    height: 360px;
  }

  .recommend-image {
    height: 360px;
  }

  .expedition-media {
    min-height: 360px;
  }

  .trip-content,
  .recommend-content,
  .expedition-body {
    padding-left: 12px;
    padding-right: 12px;
  }

  .trip-card h3,
  .recommend-content h3,
  .expedition-body h3 {
    font-size: 17px;
    line-height: 1.28;
  }

  .trip-duration,
  .recommend-days,
  .expedition-stat {
    font-size: 15px;
    gap: 8px;
  }

  .trip-icon,
  .recommend-icon,
  .expedition-stat-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .trip-price {
    padding: 10px 14px;
  }

  .trip-price strong {
    font-size: 14px;
  }

  .trip-price span,
  .recommend-price,
  .expedition-price {
    font-size: 17px;
  }

  .recommend-btn,
  .about-btn,
  .story-btn {
    min-width: 0;
    width: 100%;
    justify-content: center;
    font-size: 15px;
  }

  .stories-grid {
    grid-template-rows: none;
  }

  .story-tile,
  .story-feature {
    min-height: 220px;
  }

  .story-overlay {
    padding: 22px 18px;
  }

  .story-overlay h3 {
    font-size: 24px;
  }

  .story-tile:not(.story-feature) .story-overlay h3 {
    font-size: 20px;
  }


}

/* Mega Menu Custom Styles */
.nav-item.mega-dropdown {
  position: static; /* Allows absolute panel to be relative to the navbar */
}

.megamenu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(10, 25, 47, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.nav-item.mega-dropdown:hover .megamenu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.megamenu-grid-two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 800px;
}

.megamenu-grid-four-cols {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1400px;
}

.megamenu-column h4 {
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.megamenu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.megamenu-column ul li a {
  color: var(--text-muted) !important;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  transition: color 0.2s ease;
}

.megamenu-column ul li a:hover {
  color: var(--text) !important;
  padding-left: 4px;
}

.megamenu-column ul li a::after {
  display: none !important; /* Disable hover underline inside mega menu for cleaner look */
}

.nav-arrow {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-item.mega-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.mega-toggle-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  display: none; /* Only show on mobile */
  align-items: center;
  justify-content: center;
  outline: none;
}

.mega-toggle-btn:hover {
  color: var(--text);
}

/* Category Page Custom Styles */
.trips-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.category-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(25, 168, 244, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.category-card-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card-image img {
  transform: scale(1.05);
}

.category-card-content {
  padding: 24px;
}

.category-card-tag {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.category-card-title {
  font-size: 20px;
  color: var(--brand-blue-dark);
  margin: 0 0 12px 0;
  font-weight: 700;
}

.category-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 16px;
  margin-top: 16px;
}

.category-card-duration {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.category-card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-blue-dark);
}

/* Mobile Menu Collapsible Styles */
@media (max-width: 760px) {
  .nav-item.mega-dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .nav-item.mega-dropdown > a {
    flex: 1;
  }

  .mega-toggle-btn {
    display: flex;
  }

  .megamenu-panel {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    padding: 15px 10px;
    border: none;
    box-shadow: none;
    transform: none;
    width: 100%;
  }

  .nav-item.mega-dropdown.open .megamenu-panel {
    display: block;
  }

  .nav-item.mega-dropdown.open .nav-arrow {
    transform: rotate(180deg);
  }

  .megamenu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .megamenu-column h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .megamenu-column ul {
    gap: 8px;
  }

  .megamenu-column ul li a {
    font-size: 13px;
    padding: 4px 0;
  }
}



/* ==========================================================================
   Gallery Section Styles
   ========================================================================== */
.gallery-section {
  background: linear-gradient(180deg, #eff8ff 0%, #ffffff 100%);
  padding: 92px 0 110px;
}

.gallery-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 42px;
}

.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
}

.gallery-head-left {
  max-width: 600px;
}

.gallery-title {
  margin: 0;
  color: var(--brand-blue-dark);
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

.gallery-text {
  max-width: 500px;
  margin: 0;
  color: #4b5a6e;
  font-size: 16px;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 63, 113, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-zoom {
  color: #ffffff;
  font-size: 32px;
  transform: scale(0.7);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-zoom {
  transform: scale(1);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .gallery-section {
    padding: 64px 0 74px;
  }
  .gallery-inner {
    padding: 0 20px;
  }
  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
  }
  .gallery-title {
    font-size: 28px;
  }
  .gallery-text {
    font-size: 15px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   Lightbox Styles
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 2000;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  outline: none;
  z-index: 2010;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 28px;
}

.lightbox-prev {
  left: 24px;
  width: 50px;
  height: 50px;
  font-size: 32px;
}

.lightbox-next {
  right: 24px;
  width: 50px;
  height: 50px;
  font-size: 32px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  color: #0a192f;
  border-color: var(--accent);
  transform: scale(1.08);
}

@media (max-width: 760px) {
  .lightbox-prev {
    left: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .lightbox-next {
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}

.section-footer-btn {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  border: 2px solid var(--brand-blue-dark);
  border-radius: 100px;
  background: transparent;
  color: var(--brand-blue-dark);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.view-more-btn span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.view-more-btn:hover {
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(10, 25, 47, 0.15);
}

.view-more-btn:hover span {
  transform: translateX(4px);
}

.view-more-btn:active {
  transform: translateY(0);
}

@media (max-width: 760px) {
  .view-more-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Language Switcher Styles
   ========================================================================== */
.lang-switcher-container {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.lang-switcher-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-color, #333);
  padding: 8px 12px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.navbar .lang-switcher-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar .lang-switcher-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.lang-switcher-container:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 10px 16px;
  color: #333 !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
  text-align: left;
}

.lang-option:hover {
  background: #f5f5f5;
}

.lang-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.lang-switcher-container:hover .lang-arrow {
  transform: rotate(180deg);
}

@media (max-width: 860px) {
  .lang-switcher-container {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
  }
  .lang-switcher-btn {
    width: 100%;
    justify-content: center;
  }
  .lang-dropdown {
    width: 100%;
    position: static;
    margin-top: 5px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .lang-option {
    color: #fff !important;
    text-align: center;
  }
}

/* -----------------------------------------
   NEW CONTACT PAGE DESIGN
----------------------------------------- */
.contact-page-new {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 90px 24px 40px;
  background-image: linear-gradient(rgba(10, 25, 47, 0.75), rgba(10, 25, 47, 0.75)), url('about.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-card-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  width: 100%;
  max-width: 1080px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  min-height: 600px;
}

/* Left Column: Dark Panel */
.contact-info-side {
  background: #0e1824; /* Deep premium navy/slate */
  color: #ffffff;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.contact-info-side .info-kicker {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #c29b67; /* Premium gold/bronze accent */
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-info-side .info-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.15;
}

.info-details-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.info-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-detail-item .info-icon {
  font-size: 1.15rem;
  color: #c29b67;
  margin-top: 4px;
}

.info-text-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-subhead {
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #c29b67;
  letter-spacing: 0.08em;
}

.info-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e2e8f0;
  margin: 0;
}

.info-desc a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-desc a:hover {
  color: #c29b67;
}

.info-social-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.info-social-links a {
  color: #ffffff;
  font-size: 1.15rem;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.info-social-links a:hover {
  opacity: 1;
  color: #c29b67;
  transform: translateY(-2px);
}

/* Right Column: Form Panel */
.contact-form-side {
  padding: 60px 52px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-side h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 35px;
}

/* Underline Inputs */
.new-contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-item label {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #111111;
  letter-spacing: 0.05em;
}

.form-group-item input,
.form-group-item textarea {
  border: none;
  border-bottom: 1.5px solid #e2e8f0;
  padding: 8px 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #111111;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group-item input::placeholder,
.form-group-item textarea::placeholder {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.form-group-item input:focus,
.form-group-item textarea:focus {
  border-color: #0e1824;
}

/* Submit Button */
.send-inquiry-btn {
  background: #c29b67;
  border: 2px solid #c29b67;
  color: #ffffff;
  padding: 16px 36px;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 15px;
}

.send-inquiry-btn:hover {
  background: #0e1824;
  border-color: #0e1824;
  box-shadow: 0 10px 20px rgba(14, 24, 36, 0.15);
}

/* Success State */
.contact-success-state {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success-icon {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 24px;
}

.contact-success-state h2 {
  margin-bottom: 12px;
}

.contact-success-state p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 30px;
}

.back-home-btn {
  display: inline-block;
  background: #111111;
  color: #ffffff;
  padding: 14px 28px;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}

.back-home-btn:hover {
  opacity: 0.9;
}

/* Error State */
.contact-error-pills {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.error-pill {
  background: #fef2f2;
  border: 1px solid #fee2e2;
  color: #b91c1c;
  padding: 10px 14px;
  font-size: 0.85rem;
  border-radius: 8px;
  font-weight: 500;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .contact-page-new {
    padding: 100px 16px 60px;
  }
  .contact-card-container {
    grid-template-columns: 1fr;
  }
  .contact-info-side {
    padding: 40px 32px;
  }
  .contact-form-side {
    padding: 40px 32px;
  }
}
