: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: rgba(10, 25, 47, 0.8);
  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: 22px;
  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: 24px;
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 14px;
  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;
}

.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, var(--accent) 0%, var(--brand-orange-dark) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  box-shadow: 0 4px 15px rgba(243, 154, 31, 0.3);
  transition: var(--transition);
  white-space: nowrap;
}

.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(243, 154, 31, 0.4);
  filter: brightness(1.1);
}

.plan-btn:active {
  transform: translateY(0);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  overflow: hidden;
  opacity: 0;
  transform: scale(1.04);
  animation: heroSlider 18s infinite;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-1 { animation-delay: 0s; }
.slide-2 { animation-delay: 6s; }
.slide-3 { animation-delay: 12s; }

.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%);
}

@keyframes heroSlider {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  6% {
    opacity: 1;
  }
  28% {
    opacity: 1;
    transform: scale(1);
  }
  33.33% {
    opacity: 0;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
  }
}

.about-section {
  background:
    radial-gradient(circle at top left, rgba(25, 168, 244, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 70px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 84px 56px 96px;
}

.about-copy {
  max-width: 840px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--brand-blue-dark);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin: 0 0 16px;
  color: var(--brand-blue-dark);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.08;
}

.about-copy p {
  margin: 0 0 18px;
  color: #243243;
  font-size: 17px;
  line-height: 1.8;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  padding: 16px 36px;
  border: 2px solid var(--brand-blue);
  border-radius: 4px;
  background: linear-gradient(180deg, #1ab0ff 0%, #0b79c9 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(11, 121, 201, 0.22);
}

.mountain-showcase {
  position: relative;
  min-height: 520px;
}

.mountain-frame {
  position: absolute;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(42, 29, 12, 0.18);
  overflow: hidden;
}

.mountain-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mountain-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 18, 28, 0.28), rgba(12, 18, 28, 0.02));
}

.mountain-main { inset: 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 28px;
  color: var(--brand-blue-dark);
  font-family: "Outfit", sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.06;
}

.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);
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 16px;
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .brand-name {
    font-size: 18px;
  }
}

@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;
  }

  .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: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.recommend-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(25, 168, 244, 0.14);
  box-shadow: 0 22px 50px rgba(87, 58, 18, 0.08);
  backdrop-filter: blur(8px);
}

.recommend-card-dark {
  background: linear-gradient(180deg, #2d2419 0%, #45311d 100%);
  color: #fff7eb;
}

.recommend-image {
  height: 260px;
  overflow: hidden;
}

.recommend-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommend-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}

.recommend-label {
  margin: 0 0 10px;
  color: var(--brand-orange-dark);
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recommend-card-dark .recommend-label,
.recommend-card-dark h3,
.recommend-card-dark .recommend-days,
.recommend-card-dark .recommend-price {
  color: #fff2dc;
}

.recommend-card-dark .recommend-icon {
  border-color: rgba(255, 216, 131, 0.8);
  color: #ffd772;
  background: rgba(255, 255, 255, 0.08);
}

.recommend-content h3 {
  margin: 0 0 18px;
  color: #343434;
  font-size: 17px;
  line-height: 1.28;
}

.recommend-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding: 14px 0 16px;
  border-top: 1px solid rgba(25, 168, 244, 0.1);
}

.recommend-card-dark .recommend-meta {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.recommend-days {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-blue-dark);
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.recommend-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  border: 2px solid rgba(25, 168, 244, 0.5);
  color: var(--brand-blue-dark);
  background: rgba(25, 168, 244, 0.08);
}

.recommend-price {
  color: var(--brand-orange-dark);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.recommend-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1ab0ff 0%, #0b79c9 100%);
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(11, 121, 201, 0.22);
}

.recommend-card-dark .recommend-btn {
  background: linear-gradient(180deg, #1ab0ff 0%, #0b79c9 100%);
}

@media (max-width: 1180px) {
  .recommended-head {
    align-items: flex-start;
  }

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

@media (max-width: 760px) {
  .recommended-inner {
    padding: 0 20px;
  }

  .recommended-section {
    padding: 64px 0 76px;
  }

  .recommended-text {
    font-size: 14px;
  }

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

  .recommend-card {
    flex-direction: column;
  }

  .recommend-image {
    height: 240px;
  }
}

.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 {
  background:
    radial-gradient(circle at top left, rgba(25, 168, 244, 0.18), transparent 28%),
    linear-gradient(135deg, #081a31 0%, #0d2c4d 42%, #11507c 100%);
  color: #f4f7fb;
  padding: 84px 0 72px;
}

#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 6vw 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;
  }
}

.footer-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 42px;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1fr;
  gap: 42px;
}

.footer-brand h2 {
  margin: 0 0 18px;
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  line-height: 1.04;
}

.footer-brand p,
.footer-office p {
  margin: 0;
  color: rgba(244, 247, 251, 0.84);
  font-size: 15px;
  line-height: 1.85;
}

.footer-newsletter {
  margin-top: 28px;
}

.footer-newsletter label {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.footer-newsletter-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-newsletter input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.footer-newsletter button {
  height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffbd59 0%, #f39a1f 100%);
  color: #5d3000;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.footer-links h3,
.footer-office h3 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: rgba(244, 247, 251, 0.86);
  font-size: 15px;
}

.footer-office {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-office h3 {
  margin-bottom: 10px;
}

@media (max-width: 1180px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 68px 0 60px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 20px;
    gap: 26px 22px;
  }

  .footer-brand h2 {
    font-size: 26px;
  }

  .footer-links h3,
  .footer-office h3 {
    font-size: 20px;
  }

  .footer-brand p,
  .footer-office p,
  .footer-links a {
    font-size: 15px;
  }

  .footer-newsletter-row {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 520px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand,
  .footer-office {
    grid-column: span 2;
  }
}

@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: rgba(18, 27, 43, 0.42);
  }

  .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;
  }

  .footer-inner {
    gap: 24px 18px;
  }

  .footer-brand h2 {
    font-size: 24px;
  }

  .footer-links h3,
  .footer-office h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .footer-newsletter label {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    min-height: 62px;
    height: 62px;
  }

  .footer-newsletter {
    margin-top: 36px;
  }

  .footer-newsletter-row {
    gap: 14px;
  }

  .footer-newsletter input {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 15px;
    border-radius: 10px;
    line-height: 62px;
  }

  .footer-newsletter button {
    font-size: 16px;
    border-radius: 10px;
  }

  .footer-brand,
  .footer-links,
  .footer-office {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

/* 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-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;
  }
}

/* Footer Social Media Links */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 22px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
  background: var(--accent);
  color: #0a192f;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(243, 154, 31, 0.3);
}

/* ==========================================================================
   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);
  border-radius: 100px;
  background: transparent;
  color: var(--brand-blue-dark);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(25, 168, 244, 0.06);
}

.view-more-btn span {
  font-size: 18px;
  transition: var(--transition);
}

.view-more-btn:hover {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(25, 168, 244, 0.25);
}

.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;
  }
}
