/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-dark:    #0d2b45;
  --blue-mid:     #1a4a72;
  --blue-light:   #2d7dd2;
  --gold:         #e8a020;
  --gold-light:   #f5c842;
  --white:        #ffffff;
  --off-white:    #f7f9fc;
  --gray-light:   #e8ecf0;
  --gray-mid:     #8a95a0;
  --gray-dark:    #3d4a56;
  --text:         #1e2d3d;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.10);
  --shadow-md:    0 6px 24px rgba(0,0,0,.14);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.18);
  --radius:       12px;
  --radius-sm:    6px;
  --transition:   .3s ease;
  --max-width:    1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--gray-dark); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.section-title { margin-bottom: .75rem; }
.section-subtitle { color: var(--gray-mid); font-size: 1.05rem; max-width: 560px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin-inline: auto; padding-inline: 1.5rem; }
section { padding-block: 5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--blue-dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,160,32,.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--blue-mid);
  color: var(--blue-mid);
}
.btn-outline-dark:hover {
  background: var(--blue-mid);
  color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 43, 69, .97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
  font-weight: 800;
  font-size: 1.35rem;
}

.nav-logo .logo-placeholder {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 60px;
  width: auto;
  flex-shrink: 0;
  filter:
    drop-shadow(1px 0 0 white)
    drop-shadow(-1px 0 0 white)
    drop-shadow(0 1px 0 white)
    drop-shadow(0 -1px 0 white);
  transition: transform var(--transition);
}

.nav-logo img:hover {
  transform: scale(1.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links .btn { margin-left: .5rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
}

.nav-burger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-block: 6rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d2b45 0%, #1a4a72 45%, #2d7dd2 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
}
.shape-1 { width: 600px; height: 600px; background: var(--gold); top: -200px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: var(--blue-light); bottom: -100px; left: 10%; }
.shape-3 { width: 150px; height: 150px; background: var(--gold-light); top: 30%; left: 5%; }

.hero .container { position: relative; z-index: 1; }

.hero-content {
  max-width: 680px;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold-light); }

.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat .value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat .label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: .2rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
}

.scroll-dot {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 14px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0%   { top: 6px; opacity: 1; }
  100% { top: 24px; opacity: 0; }
}

/* ===== DESTINATIONS ===== */
.destinations { background: var(--off-white); }

.destinations-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dest-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.dest-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.dest-card-img .img-bg {
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
}

.dest-card:hover .img-bg { transform: scale(1.07); }

.dest-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 50px;
}

.dest-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.dest-card-body h3 { margin-bottom: .35rem; }
.dest-card-body p { font-size: .9rem; margin-bottom: 1rem; }

.dest-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
}

.dest-duration { color: var(--gray-mid); }
.dest-price { font-weight: 700; color: var(--blue-mid); font-size: 1rem; }
.dest-price span { font-size: .8rem; font-weight: 400; color: var(--gray-mid); }

/* Color themes for destination cards */
.dest-bg-1 { background: linear-gradient(135deg, #2193b0, #6dd5ed); }
.dest-bg-2 { background: linear-gradient(135deg, #f7971e, #ffd200); }
.dest-bg-3 { background: linear-gradient(135deg, #56ab2f, #a8e063); }
.dest-bg-4 { background: linear-gradient(135deg, #8e2de2, #4a00e0); }
.dest-bg-5 { background: linear-gradient(135deg, #f953c6, #b91d73); }
.dest-bg-6 { background: linear-gradient(135deg, #1a2980, #26d0ce); }

.dest-bg-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: .35;
}

/* ===== WHY US ===== */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-visual {
  position: relative;
  height: 500px;
}

.why-main-img {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 85%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0d2b45, #2d7dd2);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.why-accent-img {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 55%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e8a020, #f5c842);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.why-badge {
  position: absolute;
  top: 50%; left: 68%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 2;
  min-width: 110px;
}

.why-badge .badge-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.why-badge .badge-text {
  font-size: .72rem;
  color: var(--gray-mid);
  margin-top: .2rem;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

.why-feature:hover .why-icon { background: var(--gold); }

.why-feature h4 { margin-bottom: .25rem; }
.why-feature p { font-size: .9rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--off-white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.testi-card:hover { box-shadow: var(--shadow-md); }

.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: .75rem;
}

.testi-text {
  font-style: italic;
  margin-bottom: 1.25rem;
  font-size: .95rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
}

.testi-name { font-weight: 600; font-size: .9rem; }
.testi-trip { font-size: .8rem; color: var(--gray-mid); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  padding-block: 4rem;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.cta-actions   { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.7);
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; }

.footer-social {
  display: flex;
  gap: .75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
  color: var(--white);
}

.social-link:hover { background: var(--gold); color: var(--blue-dark); }

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: .95rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a { font-size: .88rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }

.footer-contact li {
  display: flex;
  gap: .6rem;
  font-size: .88rem;
  align-items: flex-start;
}

.footer-contact .icon { font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-bottom a { color: var(--gold); }

/* ===== TEAM PAGE ===== */
.team-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  display: flex;
  align-items: center;
  padding-block: 8rem 5rem;
  color: var(--white);
  text-align: center;
}

.team-hero h1 { color: var(--white); margin-bottom: .75rem; }
.team-hero p  { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 560px; margin-inline: auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-card-photo {
  height: 260px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-photo .avatar-initial {
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,.2);
  border: 3px solid rgba(255,255,255,.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
}

.team-card-body { padding: 1.5rem; }
.team-card-body h3 { margin-bottom: .25rem; }
.team-role {
  color: var(--gold);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}
.team-card-body p { font-size: .9rem; margin-bottom: 1rem; }

.team-socials {
  display: flex;
  justify-content: center;
  gap: .5rem;
}

.team-socials a {
  width: 32px;
  height: 32px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: background var(--transition);
}

.team-socials a:hover { background: var(--gold); }

.values-section { background: var(--off-white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 { margin-bottom: .5rem; }
.value-card p  { font-size: .9rem; }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  min-height: 45vh;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  display: flex;
  align-items: center;
  padding-block: 8rem 5rem;
  color: var(--white);
  text-align: center;
}

.contact-hero h1 { color: var(--white); margin-bottom: .75rem; }
.contact-hero p  { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 560px; margin-inline: auto; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: .5rem; }
.contact-info > p { margin-bottom: 2rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 { margin-bottom: .15rem; }
.contact-item p  { font-size: .9rem; }

.contact-hours {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}

.contact-hours h4 { margin-bottom: .75rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .9rem; padding-block: .3rem; }
.hours-row:not(:last-child) { border-bottom: 1px solid var(--gray-light); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 { margin-bottom: 1.75rem; }

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--text);
}

input, select, textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--blue-light);
}

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

.form-submit { width: 100%; justify-content: center; }

.map-section { padding-block: 0 5rem; }
.map-placeholder {
  height: 380px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1a4a72 0%, #2d7dd2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.map-placeholder .map-icon { font-size: 4rem; }
.map-placeholder p { font-size: 1.1rem; color: rgba(255,255,255,.8); }
.map-pin-anim {
  animation: bounce .8s ease infinite alternate;
}
@keyframes bounce { to { transform: translateY(-8px); } }

/* ===== BLOG PAGE ===== */
.blog-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  display: flex;
  align-items: center;
  padding-block: 8rem 5rem;
  color: var(--white);
  text-align: center;
}

.blog-hero h1 { color: var(--white); margin-bottom: .75rem; }
.blog-hero p  { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 560px; margin-inline: auto; }

.blog-featured { background: var(--off-white); }

.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

.blog-featured-img {
  min-height: 380px;
  background: linear-gradient(135deg, #0d2b45, #2d7dd2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
}

.blog-featured-img .blog-cat-tag {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: 50px;
}

.blog-featured-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-meta { display: flex; gap: 1rem; font-size: .82rem; color: var(--gray-mid); margin-bottom: 1rem; flex-wrap: wrap; }
.blog-featured-body h2 { margin-bottom: .75rem; }
.blog-featured-body p { font-size: .95rem; margin-bottom: 1.75rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.blog-card-img .img-bg {
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
}

.blog-card:hover .blog-card-img .img-bg { transform: scale(1.08); }

.blog-card-img .blog-cat-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .7rem;
  border-radius: 50px;
  z-index: 1;
}

.blog-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.blog-card-body .blog-meta { margin-bottom: .6rem; }
.blog-card-body h3 { margin-bottom: .5rem; }
.blog-card-body p  { font-size: .88rem; margin-bottom: 1rem; }

.read-more {
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue-mid);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}

.read-more:hover { gap: .6rem; }

.newsletter {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  padding-block: 5rem;
  text-align: center;
  color: var(--white);
}

.newsletter h2 { color: var(--white); margin-bottom: .75rem; }
.newsletter p  { color: rgba(255,255,255,.75); margin-bottom: 2rem; }

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin-inline: auto;
  gap: .75rem;
}

.newsletter-form input {
  flex: 1;
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { border-color: var(--gold); }

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #c8d8e4 0%, #a8bfce 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: transform .6s ease;
}
.img-placeholder .ph-icon  { font-size: 2rem; opacity: .4; line-height: 1; }
.img-placeholder .ph-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #7a8f9e;
  text-align: center;
  padding: 0 1rem;
}

/* ===== HERO FULLSCREEN REDESIGN ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Full-screen background image */
.hero-bg-full {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-placeholder {
  background: linear-gradient(145deg, #2a5a80 0%, #0d2b45 60%, #1a4a72 100%);
}
.hero-bg-placeholder .ph-icon  { font-size: 4rem; opacity: .08; }
.hero-bg-placeholder .ph-label { color: rgba(255,255,255,.12); font-size: .8rem; }

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(13,43,69,.92) 0%, rgba(13,43,69,.75) 55%, rgba(13,43,69,.4) 100%),
    linear-gradient(to top, rgba(13,43,69,.6) 0%, transparent 40%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 7rem;
  padding-bottom: 2rem;
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  padding-block: 3rem;
}

/* Override old hero-bg to not show */
.hero-bg { display: none; }

/* Stat bar at bottom of hero */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.hero-stat-card {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: .5rem 1rem;
}
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .2rem;
}
.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Hero filter pills */
.hero-filters {
  display: flex;
  gap: .75rem;
  margin: 1.5rem 0 2rem;
  flex-wrap: wrap;
}
.hero-filter {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.3rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.hero-filter:hover,
.hero-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--blue-dark);
  font-weight: 700;
}

/* ===== DESTINATION CATEGORIES ===== */
.dest-category { margin-bottom: 3.5rem; }
.dest-category:last-child { margin-bottom: 0; }

.dest-category-header {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.75rem;
}
.dest-category-icon  { font-size: 1.35rem; }
.dest-category-label { font-size: 1.05rem; font-weight: 700; color: var(--text); white-space: nowrap; }
.dest-category-line  { flex: 1; height: 1px; background: var(--gray-light); }

/* ===== OVERLAY DESTINATION CARDS ===== */
.dest-card-overlay {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dest-card-overlay:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.dco-img {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.dco-img .img-placeholder { position: absolute; inset: 0; }
.dest-card-overlay:hover .img-placeholder { transform: scale(1.07); }

/* Color themes for each destination */
.dco-ph-1 { background: linear-gradient(145deg, #5a8fa8 0%, #2d6680 100%); }
.dco-ph-2 { background: linear-gradient(145deg, #4a9060 0%, #2d6a40 100%); }
.dco-ph-3 { background: linear-gradient(145deg, #7a6090 0%, #4a3a60 100%); }
.dco-ph-4 { background: linear-gradient(145deg, #3a80c0 0%, #1a5090 100%); }
.dco-ph-5 { background: linear-gradient(145deg, #c07040 0%, #904020 100%); }
.dco-ph-6 { background: linear-gradient(145deg, #d09030 0%, #a06010 100%); }
.dco-ph .ph-icon  { font-size: 3.5rem; opacity: .2; }
.dco-ph .ph-label { color: rgba(255,255,255,.25); font-size: .72rem; }

/* Tag stays positioned above the gradient overlay */
.dest-card-overlay .dest-tag {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 3;
}

/* Content overlays bottom of image */
.dco-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.6) 50%, transparent 100%);
  color: var(--white);
  z-index: 2;
  transform: translateY(0);
  transition: transform var(--transition);
}
.dco-meta {
  font-size: .78rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: .4rem;
}
.dco-body h3 { color: var(--white); font-size: 1.2rem; margin-bottom: .4rem; }
.dco-body p  { font-size: .85rem; color: rgba(255,255,255,.75); line-height: 1.5; }

/* ===== FEATURED TRIP ===== */
.featured-trip {
  background: var(--blue-dark);
  padding-block: 5rem;
}
.featured-trip .section-label    { color: var(--gold-light); }
.featured-trip .section-title    { color: var(--white); margin-bottom: .75rem; }
.featured-trip .section-subtitle { color: rgba(255,255,255,.6); max-width: 500px; }

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.featured-img {
  position: relative;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
}
.featured-ph {
  background: linear-gradient(145deg, #1f4a6e 0%, #163a58 100%);
}
.featured-ph .ph-icon  { font-size: 3.5rem; opacity: .14; }
.featured-ph .ph-label { color: rgba(255,255,255,.16); }

.featured-img-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--gold);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: .82rem;
  padding: .55rem 1.25rem;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(232,160,32,.5);
}

.featured-content { color: var(--white); }

.featured-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}
.featured-feature { display: flex; gap: 1rem; align-items: flex-start; }
.featured-feature-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.featured-feature-text h5 { color: var(--white); font-size: .92rem; font-weight: 600; margin-bottom: .2rem; }
.featured-feature-text p  { font-size: .84rem; color: rgba(255,255,255,.5); line-height: 1.45; }

.featured-price {
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.price-from { font-size: .88rem; color: rgba(255,255,255,.5); }
.price-num  { font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.price-per  { font-size: .82rem; color: rgba(255,255,255,.45); }

/* ===== WHY-US PLACEHOLDERS ===== */
.why-main-img { overflow: hidden; }
.why-ph-dark {
  background: linear-gradient(145deg, #1a3a5a 0%, #0d2b45 100%);
  position: absolute; inset: 0;
}
.why-ph-dark .ph-icon  { opacity: .14; font-size: 3rem; }
.why-ph-dark .ph-label { color: rgba(255,255,255,.16); }
.why-ph-gold {
  background: linear-gradient(145deg, #e8a020 0%, #c8881a 100%);
  position: absolute; inset: 0;
}
.why-ph-gold .ph-icon  { opacity: .18; font-size: 2.2rem; }
.why-ph-gold .ph-label { color: rgba(255,255,255,.25); font-size: .68rem; }

/* ===== TESTIMONIAL QUOTE MARK ===== */
.testi-quote {
  font-size: 4.5rem;
  font-family: Georgia, serif;
  color: var(--gold);
  line-height: .75;
  margin-bottom: .2rem;
  opacity: .5;
  display: block;
}

/* ===== PAGE TRANSITIONS ===== */
.page-enter { animation: fadeSlideIn .4s ease forwards; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--blue-dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
  z-index: 999;
  transform: translateY(100px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.3rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding-block: 3.5rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--blue-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-burger { display: flex; z-index: 100; }

  .hero-stats-row { gap: 0; padding: 1rem 1.25rem; }
  .stat-num { font-size: 1.3rem; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dco-img { height: 260px; }
  .featured-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .featured-img { height: 300px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { height: 350px; margin-bottom: 1.5rem; }
  .testi-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }

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

  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 250px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 540px) {
  .dest-grid   { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
  .blog-grid   { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-filters { gap: .5rem; }
  .hero-filter  { font-size: .82rem; padding: .45rem 1rem; }
  .hero-stats-row { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-stat-divider { display: none; }
  .dco-img { height: 220px; }
  .featured-img { height: 240px; }
  .dest-category-label { font-size: .95rem; }
}

/* ===== SCROLL / SWIPE HINT ===== */
.swipe-icon {
  font-size: 1.6rem;
  animation: swipeUp .9s ease infinite alternate;
}

@keyframes swipeUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

.desktop-only { display: block; }
.mobile-only  { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only  { display: block !important; }

  .scroll-hint {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   HOMEPAGE v3 – BOLD & MODERN
   ============================================================ */

/* --- Shared placeholder styles --- */
.ph-full {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .6rem;
}
.ph-full span { font-size: 3rem; opacity: .15; line-height: 1; }
.ph-full small {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; opacity: .2; text-align: center;
  padding: 0 2rem; color: inherit;
}

.ph-mountains { background: linear-gradient(160deg, #2a5a7a 0%, #0d2b45 50%, #1a3a60 100%); color: #fff; }
.ph-glacier   { background: linear-gradient(160deg, #3a6a8a 0%, #163a58 100%); color: #fff; }

.ph-card {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem; transition: transform .6s ease;
}
.ph-card span  { font-size: 2.8rem; opacity: .22; line-height: 1; color: #fff; }
.ph-card small { font-size: .68rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; opacity: .3; color: #fff; }

.ph-blue-green { background: linear-gradient(145deg, #3a7a68, #1d4d40); }
.ph-green      { background: linear-gradient(145deg, #4a8a50, #25502a); }
.ph-purple     { background: linear-gradient(145deg, #6a5a8a, #3a2a5a); }
.ph-blue       { background: linear-gradient(145deg, #2a6aaa, #0d3a6a); }
.ph-orange     { background: linear-gradient(145deg, #b06030, #7a3010); }
.ph-gold       { background: linear-gradient(145deg, #c09020, #8a5a00); }

/* --- Buttons --- */
.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: 50px;
  background: var(--gold); color: var(--blue-dark);
  font-weight: 700; font-size: 1rem;
  border: 2px solid transparent;
  transition: var(--transition); cursor: pointer;
  text-decoration: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,.4); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: 50px;
  background: transparent; color: #fff;
  font-weight: 600; font-size: 1rem;
  border: 2px solid rgba(255,255,255,.45);
  transition: var(--transition); cursor: pointer;
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: 50px;
  background: transparent; color: var(--blue-dark);
  font-weight: 600; font-size: 1rem;
  border: 2px solid var(--blue-mid);
  transition: var(--transition); cursor: pointer;
  text-decoration: none;
}
.btn-ghost-dark:hover { background: var(--blue-dark); color: #fff; }

/* --- HERO 2 --- */
.hero2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero2-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(8,24,40,.95) 0%,
    rgba(13,43,69,.88) 50%,
    rgba(13,43,69,.75) 100%
  );
}

.hero2-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 9rem;
  padding-bottom: 3rem;
  max-width: 800px;
}

.hero2-eyebrow {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero2-title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero2-title span { color: var(--gold-light); }

.hero2-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero2-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Stat bar pinned at bottom of hero */
.hero2-bar {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero2-bar-inner {
  display: flex;
  align-items: center;
  padding: 1.4rem 0;
}
.hero2-stat {
  flex: 1;
  text-align: center;
  padding: .5rem;
}
.hero2-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: .25rem;
}
.hero2-stat span { font-size: .78rem; color: rgba(255,255,255,.5); font-weight: 500; }
.hero2-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* --- TOUREN SECTION --- */
.touren { background: var(--off-white); padding-block: 5rem; }

.touren-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.touren-head h2 { margin: .4rem 0 .5rem; }
.touren-head p  { color: var(--gray-mid); font-size: 1.05rem; }

.label-chip {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232,160,32,.1);
  padding: .3rem .85rem;
  border-radius: 50px;
  border: 1px solid rgba(232,160,32,.3);
}
.label-chip--light { color: var(--gold-light); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }

/* Tour category header */
.tour-group { margin-bottom: 4rem; }
.tour-group:last-child { margin-bottom: 0; }

.tour-group-label {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 2rem;
}
.tgl-icon { font-size: 1.4rem; }
.tgl-text { font-size: 1rem; font-weight: 700; color: var(--text); white-space: nowrap; }
.tgl-line { flex: 1; height: 2px; background: linear-gradient(to right, var(--gray-light), transparent); }

/* Tour grid & cards */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tour-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .3s ease, box-shadow .3s ease;
}
.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,.13);
}

.tc-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.tc-img .ph-card { position: absolute; inset: 0; }
.tour-card:hover .ph-card { transform: scale(1.06); }

.tc-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
  z-index: 2;
}
.tc-price {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: rgba(13,43,69,.85);
  color: var(--gold-light);
  font-size: .88rem;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: 8px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.tc-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  flex: 1;
}
.tc-dur { font-size: .78rem; color: var(--gray-mid); font-weight: 600; }
.tc-body h3 { font-size: 1.15rem; margin: .15rem 0 .4rem; }
.tc-body p  { font-size: .88rem; color: var(--gray-dark); line-height: 1.55; flex: 1; }
.tc-link {
  display: inline-block;
  margin-top: .85rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue-mid);
  transition: gap .2s ease, color .2s ease;
}
.tour-card:hover .tc-link { color: var(--gold); }

/* --- HIGHLIGHT / FEATURED SPLIT --- */
.highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.highlight-img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.highlight-img .ph-full { position: absolute; inset: 0; }
.highlight-img-tag {
  position: absolute;
  bottom: 1.75rem; left: 1.75rem;
  background: var(--gold);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: .82rem;
  padding: .55rem 1.25rem;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(232,160,32,.45);
}

.highlight-content {
  background: var(--blue-dark);
  color: #fff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.highlight-content h2 { color: #fff; margin: .75rem 0 1rem; line-height: 1.2; }
.highlight-intro { color: rgba(255,255,255,.65); font-size: .95rem; line-height: 1.65; margin-bottom: .5rem; }

.highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 1.75rem 0;
}
.highlight-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.highlight-list li strong { color: #fff; display: block; margin-bottom: .1rem; }
.hl-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

.highlight-price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.highlight-price span  { font-size: .9rem; color: rgba(255,255,255,.5); }
.highlight-price strong { font-size: 2.4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.highlight-price small  { font-size: .82rem; color: rgba(255,255,255,.4); }

/* --- WHY US v2 --- */
.why2 { background: #fff; padding-block: 5rem; }
.why2-head { margin-bottom: 3.5rem; }
.why2-head h2 { margin: .5rem 0 .6rem; }
.why2-head p  { color: var(--gray-mid); font-size: 1.05rem; }

.why2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why2-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.why2-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.why2-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.why2-card h4 { margin-bottom: .5rem; font-size: 1rem; }
.why2-card p  { font-size: .88rem; color: var(--gray-dark); line-height: 1.6; }

/* --- REVIEWS --- */
.reviews { background: var(--off-white); padding-block: 5rem; }
.reviews .text-center h2 { margin: .5rem 0 2.5rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow .3s ease;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-quote {
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--gold);
  line-height: .7;
  opacity: .5;
}
.review-card > p { font-size: .93rem; color: var(--gray-dark); line-height: 1.65; flex: 1; }
.review-stars { color: var(--gold); font-size: 1rem; }
.review-author {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding-top: .75rem;
  border-top: 1px solid var(--gray-light);
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  color: #fff; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .9rem; }
.review-author small  { font-size: .78rem; color: var(--gray-mid); }

/* --- CTA v2 --- */
.cta2 {
  background: linear-gradient(120deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  padding-block: 4rem;
}
.cta2-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta2-inner h2 { color: #fff; margin-bottom: .4rem; }
.cta2-inner p  { color: rgba(255,255,255,.65); }
.cta2-actions  { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .why2-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-content { padding: 3rem 2.5rem; }
}

@media (max-width: 900px) {
  .highlight { grid-template-columns: 1fr; }
  .highlight-img { min-height: 320px; }
  .highlight-content { padding: 3rem 2rem; }
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero2-title { letter-spacing: -.01em; }
  .hero2-cta { flex-direction: column; align-items: flex-start; }
  .hero2-bar-inner { flex-wrap: wrap; }
  .hero2-stat { min-width: 45%; }
  .hero2-divider { display: none; }
  .tour-grid { grid-template-columns: 1fr; }
  .why2-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .touren-head { flex-direction: column; align-items: flex-start; }
  .cta2-inner { flex-direction: column; align-items: flex-start; }
}
