:root {
  --bg: #ffffff;
  --card: #f9fafb;
  --text: #1a1a1a;
  --muted: #6b7280;
  --acc: #d97706;
  /* Amber/Gold */
  --acc2: #a16207;
  /* Darker Gold */
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--acc), var(--acc2));
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-small {
  padding: 8px 14px;
  font-size: 14px;
}

/* New Header Styles */
.top-bar {
  background: var(--acc);
  /* Vibrant spiritual color */
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 20px;
}

.top-info a,
.top-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.2s;
}

.top-info a:hover {
  color: #fff;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-social a {
  color: #fff;
  font-size: 16px;
}

.main-header {
  background: transparent !important;
  padding: 30px 0 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  box-shadow: none !important;
  border: none !important;
}

.main-header--transparent {
  background: transparent !important;
}

.main-header .nav-menu a {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.main-header--transparent .nav-menu a:hover {
  color: #fff;
}

.main-header--transparent .btn-primary-header {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: #fff;
}

.main-header--transparent .btn-primary-header:hover {
  background: rgba(255, 255, 255, 0.25);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

.brand {
  display: flex;
  align-items: center;
  flex: 1;
}

.brand-logo {
  height: 125px;
  max-height: 125px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-menu>a {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 8px 0;
  position: relative;
}

.nav-menu>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--acc);
  transition: width 0.3s ease;
}

.nav-menu>a:hover {
  color: var(--acc);
}

.nav-menu>a:hover::after {
  width: 100%;
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-toggle i {
  font-size: 10px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--acc);
}

.nav-dropdown:hover .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  margin-top: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1001;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: #fff;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.2s;
}

.nav-dropdown-menu a i {
  font-size: 16px;
  color: var(--acc);
  width: 20px;
}

.nav-dropdown-menu a:hover {
  background: #f8f9fa;
  padding-left: 25px;
}

/* Mobile Navigation Section */
.mobile-nav-section {
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mobile-nav-section-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--acc);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 16px;
  margin-bottom: 8px;
}

.mobile-nav-section a {
  font-size: 16px;
  padding: 10px 16px 10px 20px;
}

.btn-primary-header {
  background: linear-gradient(135deg, var(--acc) 0%, var(--acc2) 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary-header:hover::before {
  left: 100%;
}

.btn-primary-header:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.5);
}

.btn-primary-header:active {
  transform: translateY(-1px) scale(0.98);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  margin-left: 20px;
}

/* Language Switcher - Direct visible buttons */
.lang-switch {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex: 1;
  padding-left: 15px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.lang-btn img {
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.lang-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  padding: 30px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
  line-height: 1;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
}

.mobile-nav-menu a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  padding: 14px 16px;
  border-radius: 12px;
  transition: all 0.2s;
}

.mobile-nav-menu a:hover {
  background: #f3f4f6;
  color: var(--acc);
}

.mobile-nav-lang {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mobile-nav-lang a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text);
  background: #f3f4f6;
  transition: all 0.2s;
}

.mobile-nav-lang a.active {
  background: var(--acc);
  color: #fff;
}

.mobile-nav-lang a img {
  border-radius: 2px;
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding: 16px 24px;
  background: #451a03;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s;
}

.mobile-nav-cta:hover {
  background: #5c2405;
  transform: translateY(-2px);
}

@media (max-width: 992px) {

  .top-info span:not(:last-child),
  .top-info a:not(:last-child) {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .lang-switch {
    display: none;
  }
}

main {
  padding: 0;
}

/* ── Hero Banner (full-bleed) ── */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 45vh;
  /* Shorter default for subpages */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 20px 80px;
  background-color: #3d1c00;
  background-image: linear-gradient(135deg, #1a0a00 0%, #3d1c00 30%, #6b3a00 60%, #d97706 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}


.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  /* Dark overlay for text readability */
  pointer-events: none;
  z-index: 1;
}

.hero-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.04);
  filter: brightness(0.72) saturate(0.9) contrast(1.05);
}

/* Wave removed per user request "no lo recortes" */

.hero-banner .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: none;
}

/* Glassmorphism Stats Bar */
.hero-stats-glass {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 40px;
  border-radius: 20px 20px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  z-index: 3;
  width: 90%;
  max-width: 900px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.hero-stats-glass .stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.hero-stats-glass .stat-item i {
  font-size: 28px;
  color: #fca5a5;
  /* Soft modern pink/red accent */
}

.hero-stats-glass .stat-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero-stats-glass .hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  font-weight: 300;
}

.hero-stats-glass .stat-val {
  font-size: 16px;
  font-weight: 700;
}

.hero-stats-glass .stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  font-weight: 600;
}

.hero-stats-glass .stat-val {
  font-size: 16px;
  font-weight: 700;
}

.hero-stats-glass .stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .hero-stats-glass {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-radius: 15px 15px 0 0;
  }

  .hero-stats-glass .stat-divider {
    width: 100%;
    height: 1px;
  }
}

.hero-banner h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
}

.hero-banner .hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
  margin: 0 auto 24px;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-banner .hero-breadcrumb {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero-banner .hero-breadcrumb i {
  margin: 0 6px;
  font-size: 10px;
}

.hero-banner .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-banner .btn {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.hero-banner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Per-page gradient variants */
.hero-banner--home {
  height: 100vh;
  min-height: 600px;
  background: #000;
}

.hero-banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-banner--home::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.6) 100%),
    linear-gradient(90deg, rgba(33, 12, 0, 0.3) 0%, rgba(33, 12, 0, 0) 45%, rgba(33, 12, 0, 0.3) 100%);
}

.hero-banner .hero-content {
  position: relative;
  z-index: 2;
}

.hero-banner--home .hero-decoration {
  display: none;
}

.video-control-container {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
}

.video-control-label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  transition: opacity 0.3s ease;
  background: rgba(0,0,0,0.4);
  padding: 6px 15px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.video-control-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 22px;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.video-control-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  animation: none;
}

.video-control-btn.active {
  background: var(--acc);
  border-color: var(--acc);
}

.hero-banner--about {
  background-image: linear-gradient(135deg, #0c1220 0%, #1e3a5f 35%, #2d6a8f 65%, #4db8c4 100%);
  background-size: cover;
  background-position: center center;
  align-items: flex-end;
  min-height: 700px;
  padding-top: 160px;
  padding-bottom: 40px;
}

.hero-banner--about .hero-subtitle,
.hero-banner--about .hero-breadcrumb {
  display: none;
}

@media (max-width: 768px) {
  .hero-banner--about {
    min-height: 250px;
    padding-top: 100px;
    padding-bottom: 20px;
    background-position: center bottom;
  }
}

.hero-banner--tours {
  background-image: linear-gradient(135deg, #1a0f00 0%, #4a2800 30%, #8b5e3c 60%, #c4956a 100%);
  background-size: cover;
  background-position: center center;
}

.hero-banner--retreats {
  background: linear-gradient(135deg, #0a1a0a 0%, #1a3d1a 30%, #2d6b2d 60%, #5fa55f 100%);
}

.hero-banner--services {
  background: linear-gradient(135deg, #1a0020 0%, #3d1066 30%, #6b3fa0 60%, #a57ed8 100%);
}

.hero-banner--contact {
  background-image: linear-gradient(135deg, #0f0a1a 0%, #2a1a40 30%, #5a3d7a 60%, #9b7fc4 100%);
  background-size: cover;
  background-position: center center;
}

/* Decorative floating particles */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.6;
  }
}

.hero-decoration {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: float 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.hero-decoration:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero-decoration:nth-child(2) {
  top: 40%;
  left: 85%;
  animation-delay: 1s;
  width: 4px;
  height: 4px;
}

.hero-decoration:nth-child(3) {
  top: 70%;
  left: 25%;
  animation-delay: 2s;
  width: 8px;
  height: 8px;
}

.hero-decoration:nth-child(4) {
  top: 30%;
  left: 70%;
  animation-delay: 0.5s;
}

.hero-decoration:nth-child(5) {
  top: 60%;
  left: 50%;
  animation-delay: 1.5s;
  width: 5px;
  height: 5px;
}

.lead {
  max-width: 60ch;
  color: var(--muted);
  font-size: 18px;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.page-content {
  padding: 40px 0 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

.content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

.form {
  max-width: 620px;
}

.field {
  margin-bottom: 14px;
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
}

.alert {
  border-radius: 14px;
  padding: 12px 14px;
  margin: 14px 0;
  border: 1px solid var(--border);
}

.alert-error {
  background: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}

.alert-success {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

/* ═══════════════════════════════════════════
   PREMIUM FOOTER STYLES  
   ═══════════════════════════════════════════ */
.main-footer {
  background: #111827;
  color: rgba(255, 255, 255, 0.85);
  padding: 0;
  font-family: 'Outfit', sans-serif;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--acc), var(--acc2), var(--acc), transparent);
}

.footer-content {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 50px;
}

/* Footer Column Headings */
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--acc);
  border-radius: 2px;
}

/* Brand Section */
.footer-logo-img {
  height: 70px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--acc);
  border-color: var(--acc);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.3);
}

/* Links Section */
.links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-col li {
  margin-bottom: 12px;
}

.links-col a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.links-col a i {
  font-size: 10px;
  transition: transform 0.25s ease;
  color: var(--acc);
  opacity: 0;
}

.links-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

.links-col a:hover i {
  opacity: 1;
}

/* Contact Section */
.contact-col .contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.contact-col .contact-item i {
  font-size: 16px;
  color: var(--acc);
  width: 36px;
  height: 36px;
  background: rgba(217, 119, 6, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-col .contact-item a,
.contact-col .contact-item span {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.contact-col .contact-item a:hover {
  color: var(--acc);
}

/* Payment Methods */
.payment-grid {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.payment-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-width: 70px;
}

.payment-card img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.payment-card:hover img {
  opacity: 1;
}

.payment-note {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.payment-note i {
  color: #22c55e;
  font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  padding: 20px 0;
  font-size: 13px;
}

.bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.4);
}

.copyright span {
  color: var(--acc);
  font-weight: 600;
}

/* Footer Responsive */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .contact-col .contact-item {
    justify-content: center;
  }

  .payment-grid {
    justify-content: center;
  }

  .payment-note {
    justify-content: center;
  }

  .bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  left: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}

/* Utilities */
.text-acc {
  color: var(--acc);
}

.mt-20 {
  margin-top: 20px;
}

/* ═══════════════════════════════════════════
   HOMEPAGE SECTIONS — PREMIUM DESIGN
   ═══════════════════════════════════════════ */

/* Sections Container */
.sections-container {
  margin: 0;
  padding: 80px 0 40px;
}

.content-section {
  padding: 50px 0;
  position: relative;
}

.content-section h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  color: var(--text);
}

.content-section .section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--acc);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}

.content-section .section-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--acc);
  transform: translateY(-50%);
}

.section-text {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 75ch;
}

.section-text p {
  margin-bottom: 1.25rem;
}

.section-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--acc), transparent);
  margin: 10px 0;
  max-width: 120px;
  margin-left: 0;
}

/* ═══════════════════════════════════════════
   PREMIUM TYPOGRAPHY BLOCKS (HOMEPAGE INTRO)
   ═══════════════════════════════════════════ */
/* Center main titles */
.intro-block h2,
.meet-info h2,
.testimonials h2,
.what-we-offer h2,
.gallery h2 {
  text-align: center;
  color: var(--acc);
}

/* Center badges above titles */
.intro-block .section-badge {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding-left: 0 !important;
  margin-bottom: 20px;
}
.intro-block .section-badge::before {
  content: none !important;
}

.intro-blocks {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 80px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.intro-grid .intro-block {
  height: 100%;
}

.intro-block-inner.h-100 {
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.intro-block {
  padding: 0;
  position: relative;
}

.intro-block-inner {
  max-width: 800px;
  margin: 0 auto;
}

.intro-block-inner.text-center {
  text-align: center;
}

.intro-block-inner.text-center .section-text {
  margin: 0 auto;
}

.intro-block-inner .section-badge i {
  font-size: 14px;
}

/* Drop Cap Style */
.drop-cap p:first-child::first-letter {
  float: left;
  font-size: 84px;
  line-height: 0.8;
  padding-top: 4px;
  padding-right: 12px;
  padding-left: 0;
  color: var(--acc);
  font-weight: 800;
  font-family: Georgia, serif;
}

.text-large p {
  font-size: 20px;
  line-height: 1.8;
  color: #3d2b1f;
}

/* Framed Card Style */
.intro-block--framed .intro-block-inner {
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.15);
  padding: 50px 60px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  position: relative;
}

.intro-block--framed .intro-block-inner::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(217, 119, 6, 0.08);
  border-radius: 16px;
  pointer-events: none;
}

.text-highlight {
  font-size: 18px;
}

.text-highlight p:first-child {
  font-size: 22px;
  font-weight: 500;
  color: var(--acc2);
  margin-bottom: 20px;
}

/* Minimal Elegant Style */
.intro-block--minimal .intro-block-inner {
  border-left: 4px solid var(--acc);
  padding-left: 40px;
  max-width: 900px;
  margin-left: 0;
}

.text-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .text-split {
    grid-template-columns: 1fr;
  }
  .intro-block--framed .intro-block-inner {
    padding: 40px 30px;
  }
  .intro-block--minimal .intro-block-inner {
    padding-left: 20px;
  }
}

/* Meet Karina — Premium Card */
.dark-card {
  background: linear-gradient(135deg, #fafaf9 0%, #f5f0eb 100%);
  border-radius: 28px;
  padding: 50px;
  margin: 60px 0;
  border: 1px solid rgba(217, 119, 6, 0.08);
  position: relative;
  overflow: hidden;
}

.dark-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--acc), transparent);
  border-radius: 0 0 4px 4px;
}

.meet-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}

.meet-info h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.meet-info p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 1rem;
}

/* Testimonials — Premium */
.testimonials {
  padding: 80px 0;
  background: #fafaf9;
  margin: 0 calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.testimonials h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  text-align: center;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.subtitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 28px;
  font-size: 64px;
  color: var(--acc);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.quote {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.author {
  font-weight: 700;
  color: var(--acc);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.author::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--acc);
  display: inline-block;
}

/* What We Offer — Premium Cards */
.what-we-offer {
  padding: 80px 0 60px;
}

.what-we-offer h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.offer-list {
  margin: 30px 0;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.offer-list li {
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--text);
  padding: 20px 24px;
  background: #fafaf9;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  line-height: 1.6;
}

.offer-list li:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.offer-list li i {
  color: var(--acc);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Gallery */
.gallery {
  padding: 60px 0;
}

.gallery h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.img-placeholder {
  background: linear-gradient(135deg, #f0ebe4 0%, #e5ddd4 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: #b5a99a;
}

.aspect-ratio {
  aspect-ratio: 16/9;
  min-height: auto;
}

.gallery-item .caption {
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: var(--muted);
}

.cta-bottom {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
  padding: 80px 40px;
  border-radius: 30px;
  text-align: center;
  margin-top: 60px;
  border: none;
}

.cta-bottom.extra-spacing {
  margin-bottom: 80px;
}

.cta-bottom h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-bottom p {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 30px;
}

@media (max-width: 768px) {

  .meet-grid,
  .testimonial-grid,
  .gallery-grid,
  .offer-list {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 38px;
  }

  .cta-bottom h2 {
    font-size: 30px;
  }
}

/* About Page Specific Styles */
.highlight {
  font-size: 22px;
  color: var(--text);
  font-weight: 500;
  border-left: 4px solid var(--acc);
  padding-left: 24px;
  margin: 30px 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.offer-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 20px;
}

.offer-card h3 {
  color: var(--acc);
  margin-bottom: 12px;
  font-size: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.team-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  align-items: start;
  background: var(--card);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.team-image .img-placeholder {
  min-height: 240px;
}

.team-title {
  font-weight: 700;
  color: var(--acc);
  margin-bottom: 15px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-info h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-image {
    max-width: 240px;
    margin: 0 auto;
  }
}

/* Services Page Specific Styles */
.core-offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.core-item {
  display: flex;
  gap: 20px;
  align-items: start;
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.core-item .icon {
  font-size: 24px;
  color: var(--acc);
  line-height: 1;
  margin-top: 4px;
}

.core-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.banner-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  margin: 40px 0;
}

.banner-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #166534;
}

.banner-box p {
  color: #166534;
  margin-bottom: 20px;
  font-size: 18px;
}

.destination-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 30px;
  margin-bottom: 30px;
  transition: box-shadow 0.3s;
}

.destination-card:hover {
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08);
}

.destination-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text);
}

.highlights {
  background: #fafafa;
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid var(--border);
}

.highlights h4 {
  margin-bottom: 15px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}

.highlights ul {
  padding-left: 20px;
}

.highlights li {
  margin-bottom: 8px;
}

.cta-line {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

.cta-line a {
  color: var(--acc);
  text-decoration: underline;
}

.soon-section {
  background: #fefce8;
  border: 1px solid #fef08a;
  border-radius: 24px;
  padding: 40px;
}

.soon-section h2 {
  color: #854d03;
}

.soon-section p {
  color: #854d03;
  font-weight: 500;
}

@media (max-width: 800px) {
  .core-offerings-grid {
    grid-template-columns: 1fr;
  }

  .destination-card {
    padding: 30px 20px;
  }
}

/* ── Tours Page ── */
.tour-region {
  margin-bottom: 60px;
}

.tour-region-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.tour-region-header h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: var(--text);
}

.tour-region-header h2 i {
  color: var(--acc);
  margin-right: 8px;
}

.tour-region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tour-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(217, 119, 6, 0.2);
}

.tour-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(161, 98, 7, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--acc);
}

.tour-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.tour-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.tour-card .btn-small {
  align-self: flex-start;
}

.tour-card--featured {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: rgba(217, 119, 6, 0.2);
}

.tour-card--featured .tour-card-icon {
  background: linear-gradient(135deg, var(--acc), var(--acc2));
  color: #fff;
}

/* ── New Tour Card Design ── */
.tour-card-new {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.tour-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-image-header {
  height: 220px;
  background-color: #cbd5e1;
  background-image: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
  background-size: cover;
  background-position: center;
  /* Placeholder */
  position: relative;
  display: flex;
  align-items: flex-end;
}

/* Gradients for different regions/types to make it less boring */
.tour-region:nth-of-type(1) .card-image-header {
  background-image: linear-gradient(to bottom right, #d97706, #92400e);
}

.tour-region:nth-of-type(2) .card-image-header {
  background-image: linear-gradient(to bottom right, #0ea5e9, #0369a1);
}

.tour-region:nth-of-type(3) .card-image-header {
  background-image: linear-gradient(to bottom right, #10b981, #047857);
}

.tour-region:nth-of-type(4) .card-image-header {
  background-image: linear-gradient(to bottom right, #8b5cf6, #6d28d9);
}

.card-icons-overlay {
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 30px 20px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.icon-item i {
  font-size: 20px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.icon-item span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  opacity: 1;
  text-align: center;
  line-height: 1.2;
}

.icon-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card-new h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1e293b;
  line-height: 1.3;
}

.card-route {
  font-size: 12px;
  color: #0ea5e9;
  /* Blue like the image */
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.card-excerpt {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.card-footer {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 600;
}

.price-val {
  font-size: 20px;
  font-weight: 800;
  color: #db2777;
  /* Pink/Red like image */
}

.btn-card {
  background: #f43f5e;
  /* Pink button */
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-card:hover {
  background: #be123c;
  color: #fff;
}

/* ── Tour Single Layout & Sidebar Booking ── */
.tour-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.tour-sidebar {
  position: sticky;
  top: 100px;
}

.booking-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.booking-card h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 22px;
  color: #1e293b;
}

.booking-card .price-display {
  font-size: 18px;
  font-weight: 700;
  color: var(--acc);
  margin-bottom: 20px;
}

.booking-form .form-group {
  margin-bottom: 15px;
}

.booking-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: #334155;
  transition: all 0.2s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--acc);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .tour-layout {
    grid-template-columns: 1fr;
  }

}

/* ── Premium Single Tour Styling ── */
.tour-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 60px;
  background: var(--acc);
  border-radius: 2px;
}

.tour-layout .content p,
.tour-layout .content li {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
}

/* Timeline specific */
.itinerary-timeline {
  border-left: 2px dashed #cbd5e1;
  padding-left: 30px;
  margin-left: 15px;
}

.itinerary-timeline h4,
.itinerary-timeline p strong {
  position: relative;
  font-size: 20px;
  color: #334155;
  display: block;
  margin-top: 25px;
  margin-bottom: 10px;
}

.itinerary-timeline h4::before,
.itinerary-timeline p strong::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 4px solid var(--acc);
  border-radius: 50%;
}

/* Inclusions Grid */
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.inc-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.inc-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 20px;
}

.inc-card.includes h3 {
  color: #059669;
}

.inc-card.not-includes h3 {
  color: #dc2626;
}

.inc-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inc-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.inc-card.includes li::before,
.inc-card.not-includes li::before {
  position: absolute;
  left: 0;
  top: 2px;
  font-family: "bootstrap-icons";
}

.inc-card.includes li::before {
  content: "\F26A";
  /* Check */
  color: #059669;
}

.inc-card.not-includes li::before {
  content: "\F622";
  /* X */
  color: #dc2626;
}

/* Recommendations Box */
.recommendations-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 30px;
  border-radius: 16px;
  display: flex;
  gap: 20px;
}

.recommendations-box .info-icon {
  font-size: 32px;
  color: #d97706;
}

@media (max-width: 768px) {
  .inclusions-grid {
    grid-template-columns: 1fr;
  }

  .recommendations-box {
    flex-direction: column;
  }
}

/* Custom Icons */
.custom-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-right: 0;
  margin-bottom: 8px;
  filter: invert(1) brightness(2);
}

.custom-icon-large {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 15px;
  vertical-align: middle;
  filter: invert(1) brightness(2);
}

.icon-item,
.stat-item {
  display: flex;
  align-items: center;
}

/* Team Section (About Page) - Redesigned for High Contrast & Side-by-Side */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 50px;
}

.team-card {
  display: flex;
  gap: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  align-items: center;
}

.team-image {
  flex: 0 0 250px;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.08);
}

.team-info {
  flex: 1;
}

.team-info h3 {
  margin-bottom: 8px;
  color: #1a1a1a;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.team-title {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #d97706;
  margin-bottom: 15px;
  border-bottom: 2px solid #fde68a;
  padding-bottom: 2px;
}

.team-info p:not(.team-title) {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  max-width: 700px;
}

@media (max-width: 768px) {
  .team-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  
  .team-image {
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
  }
}

/* Meet Karina (Home Page) */
.meet-image {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.meet-image img {
  max-height: 500px;
  width: auto;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
/* ═══════════════════════════════════════════
   FOOTER — PREMIUM LIGHT THEME OVERRIDES
   ═══════════════════════════════════════════ */
.main-footer {
  background: linear-gradient(180deg, #faf6ee 0%, #f3ede3 100%) !important;
  color: #4a3728 !important;
  padding: 0 !important;
}

.main-footer::before {
  background: linear-gradient(90deg, transparent, #c9932e, #a47a1e, #c9932e, transparent) !important;
}

.footer-content {
  padding: 70px 0 50px !important;
}

.footer-col h4 {
  color: #3d2b1f !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
}

.footer-col h4::after {
  background: #c9932e !important;
}

.footer-logo-img {
  filter: none !important;
  opacity: 1 !important;
}

.footer-tagline {
  color: #7d6b5d !important;
}

.footer-social a {
  background: rgba(74, 55, 40, 0.08) !important;
  border-color: rgba(74, 55, 40, 0.12) !important;
  color: #4a3728 !important;
  border-radius: 10px !important;
}

.footer-social a:hover {
  background: #c9932e !important;
  border-color: #c9932e !important;
  color: #fff !important;
}

.links-col a {
  color: #7d6b5d !important;
}

.links-col a:hover {
  color: #c9932e !important;
}

.links-col a i {
  color: #c9932e !important;
}

.contact-col .contact-item {
  color: #7d6b5d !important;
}

.contact-col .contact-item i {
  color: #c9932e !important;
  background: rgba(201, 147, 46, 0.1) !important;
}

.contact-col .contact-item a,
.contact-col .contact-item span {
  color: #7d6b5d !important;
}

.contact-col .contact-item a:hover {
  color: #c9932e !important;
}

.payment-card {
  background: rgba(74, 55, 40, 0.05) !important;
  border-color: rgba(74, 55, 40, 0.1) !important;
}

.payment-card img {
  filter: grayscale(0.5) contrast(1.1) !important;
  opacity: 0.6 !important;
}

.payment-card:hover {
  background: rgba(74, 55, 40, 0.08) !important;
  border-color: rgba(74, 55, 40, 0.15) !important;
}

.payment-card:hover img {
  opacity: 1 !important;
  filter: none !important;
}

.payment-note {
  color: #9c8470 !important;
}

.payment-note i {
  color: #22c55e !important;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.04) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.copyright {
  color: #9c8470 !important;
}

.copyright span {
  color: #c9932e !important;
}

/* Mobile Menu Fixes */
@media (max-width: 640px) {
  .hero-banner--home { height: 75vh !important; }
  .brand-logo { height: 55px !important; }
  .main-header { background: rgba(255,255,255,0.9) !important; backdrop-filter: blur(10px); }
  .main-header .nav-menu a { color: #1a1a1a !important; }
}

.payment-c/* ═══════════════════════════════════════════
   FOOTER — PREMIUM LIGHT THEME
   ═══════════════════════════════════════════ */
.main-footer {
  background: linear-gradient(180deg, #faf6ee 0%, #f3ede3 100%) !important;
  color: #4a3728 !important;
  padding: 0 !important;
}

.main-footer::before {
  background: linear-gradient(90deg, transparent, #c9932e, #a47a1e, #c9932e, transparent) !important;
}

.footer-content {
  padding: 70px 0 50px !important;
}

.footer-col h4 {
  color: #3d2b1f !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
}

.footer-col h4::after {
  background: #c9932e !important;
}

.footer-logo-img {
  filter: none !important;
  opacity: 1 !important;
}

.footer-tagline {
  color: #4a3728 !important;
  font-weight: 500 !important;
}

.footer-social a {
  background: rgba(74, 55, 40, 0.08) !important;
  border-color: rgba(74, 55, 40, 0.12) !important;
  color: #4a3728 !important;
  border-radius: 10px !important;
}

.footer-social a:hover {
  background: #c9932e !important;
  border-color: #c9932e !important;
  color: #fff !important;
}

.links-col a {
  color: #4a3728 !important;
  font-weight: 500 !important;
}

.links-col a:hover {
  color: #c9932e !important;
}

.links-col a i {
  color: #c9932e !important;
}

.contact-col .contact-item {
  color: #4a3728 !important;
  font-weight: 500 !important;
}

.contact-col .contact-item i {
  color: #c9932e !important;
  background: rgba(201, 147, 46, 0.1) !important;
}

.contact-col .contact-item a,
.contact-col .contact-item span {
  color: #7d6b5d !important;
}

.contact-col .contact-item a:hover {
  color: #c9932e !important;
}

.payment-card {
  background: rgba(74, 55, 40, 0.05) !important;
  border-color: rgba(74, 55, 40, 0.1) !important;
}

.payment-card i {
  font-size: 28px !important;
  color: #7d6b5d !important;
  opacity: 0.6 !important;
  transition: all 0.3s ease !important;
}

.payment-card:hover {
  background: rgba(74, 55, 40, 0.08) !important;
  border-color: rgba(74, 55, 40, 0.15) !important;
}

.payment-card:hover i {
  opacity: 1 !important;
  color: #c9932e !important;
}

.payment-note {
  color: #9c8470 !important;
}

.payment-note i {
  color: #22c55e !important;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.04) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.copyright {
  color: #9c8470 !important;
}

.copyright span {
  color: #c9932e !important;
}

/* Mobile Menu Fixes */
@media (max-width: 640px) {
  .hero-banner--home { height: 75vh !important; }
  .brand-logo { height: 75px !important; }
  .main-header { background: rgba(255,255,255,0.9) !important; backdrop-filter: blur(10px); }
  .main-header .nav-menu a { color: #1a1a1a !important; }
}

.gallery-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  background-color: #f5f0eb;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════
   SUBPAGE HERO BANNERS
   ═══════════════════════════════════════════ */
.hero-banner--tours,
.hero-banner--about,
.hero-banner--contact {
  height: 60vh !important;
  min-height: 600px !important;
}

.hero-banner--tours h1,
.hero-banner--about h1,
.hero-banner--contact h1 {
  text-transform: none !important;
}

/* ═══════════════════════════════════════════
   CONTACT PAGE RE-DESIGN
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 60px; 
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .hero-banner--tours,
  .hero-banner--about,
  .hero-banner--contact {
    height: 40vh !important;
    min-height: 300px !important;
    max-height: 400px !important;
    padding: 100px 20px 50px !important;
    background-position: center center !important;
  }

  .hero-banner--home {
    height: 60vh !important;
    min-height: 400px !important;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
    padding: 0 15px;
    gap: 20px;
  }

  .contact-card {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .contact-card h2 {
    font-size: 22px;
  }

  .contact-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .method-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .method-text strong {
    font-size: 15px;
  }

  .method-text span {
    font-size: 14px;
  }

  .map-container iframe {
    height: 200px;
  }

  .styled-contact-form .form-group {
    margin-bottom: 16px;
  }
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.contact-card h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--acc);
  letter-spacing: -0.5px;
}

.contact-desc {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 30px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.method-icon {
  width: 45px;
  height: 45px;
  background-color: var(--acc);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.method-text strong {
  display: block;
  font-size: 16px;
  color: var(--text);
}

.method-text span {
  display: block;
  font-size: 15px;
  color: var(--muted);
}

.styled-contact-form .form-group {
  margin-bottom: 20px;
}

.styled-contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text);
}

.styled-contact-form input,
.styled-contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.styled-contact-form input:focus,
.styled-contact-form textarea:focus {
  outline: none;
  border-color: var(--acc);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(217,119,6,0.1);
}

/* ═══════════════════════════════════════════
   PREMIUM TOUR GALLERY
   ═══════════════════════════════════════════ */
.tour-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.tour-gallery .gallery-item {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  background-color: #f5f0eb;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.tour-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tour-gallery .gallery-item:hover img {
  transform: scale(1.08);
}

@media (max-width: 600px) {
  .tour-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 400px) {
  .tour-gallery {
    grid-template-columns: 1fr;
  }
}
