@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Colors */
  --bg-dark: #0a131a;
  --bg-dark-rgb: 10, 19, 26;
  --bg-card-dark: #12222d;
  --bg-light: #f7fafc;
  --text-dark: #0f1c24;
  --text-light: #e2eaf0;
  --text-muted: #8fa0a6;
  
  --forest-green: #1f3d2f;
  --forest-green-light: #2c5944;
  --turquoise-dark: #0d4a46;
  --turquoise: #147a74;
  --stone-grey: #5c6c74;
  
  --copper: #c37d45;
  --copper-hover: #d58f57;
  --sand: #e6dfd3;
  --sand-dark: #cbbfae;
  
  --glass-bg: rgba(10, 19, 26, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-light: rgba(15, 28, 36, 0.08);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.45);
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card-dark);
  border: 2px solid var(--bg-dark);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--turquoise-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Header & Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-b: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  height: 70px;
  background: rgba(10, 19, 26, 0.95);
  box-shadow: var(--shadow-sm);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height 0.3s ease;
}

.header.scrolled .logo-img {
  height: 48px;
}

.footer-logo-img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-icon {
  color: var(--copper);
  display: flex;
  align-items: center;
}

.logo-text {
  display: flex;
  flex-col: column;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text-light) 30%, var(--sand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--turquoise);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 0;
  color: var(--text-muted);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--copper);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2px;
  gap: 2px;
}

.lang-btn {
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--copper);
  color: var(--bg-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--copper);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background-color: var(--copper-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(195, 125, 69, 0.3);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

.btn-icon {
  background: transparent;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  transition: var(--transition);
}

.btn-icon:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--copper);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
}

/* Search Bar Overlay / Modal */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 19, 26, 0.95);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
}

.search-modal.active {
  display: flex;
}

.search-container {
  width: 90%;
  max-width: 600px;
  background: var(--bg-card-dark);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.search-input-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.search-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
  outline: none;
  font-family: var(--font-body);
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--turquoise);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(20, 122, 116, 0.2);
}

.search-icon-inside {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-close-btn {
  position: absolute;
  right: -15px;
  top: -15px;
  width: 36px;
  height: 36px;
  background: var(--copper);
  border-radius: 50%;
  color: var(--bg-dark);
  border: none;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.search-results {
  max-height: 300px;
  overflow-y: auto;
}

.search-result-item {
  display: block;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: var(--transition);
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--turquoise-dark);
}

.search-result-title {
  font-weight: 700;
  color: var(--text-light);
}

.search-result-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
  margin-top: 0;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 19, 26, 0.95) 0%, rgba(10, 19, 26, 0.6) 50%, rgba(10, 19, 26, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(20, 122, 116, 0.15);
  border: 1px solid rgba(20, 122, 116, 0.3);
  border-radius: 30px;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--turquoise);
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--turquoise);
  border-radius: 50%;
  position: relative;
}

.hero-badge-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--turquoise);
  border-radius: 50%;
  animation: pulse-ring 1.5s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.33); opacity: 1; }
  80%, 100% { transform: scale(1.5); opacity: 0; }
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 900;
}

.hero-title span {
  color: var(--copper);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  border-t: 1px solid var(--glass-border);
  padding-top: 30px;
}

.stat-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Sections General */
.section {
  padding: 100px 8%;
  position: relative;
}

.section-alt {
  background-color: rgba(255, 255, 255, 0.02);
  border-y: 1px solid var(--glass-border);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-subtitle {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--turquoise);
  letter-spacing: 0.2em;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-light);
  line-height: 1.2;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Grids & Cards */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-card-dark);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 122, 116, 0.3);
  box-shadow: var(--shadow-md);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-img img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 10px;
  background: rgba(10, 19, 26, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--turquoise);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-light);
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-footer {
  margin-top: auto;
  border-t: 1px solid var(--glass-border);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Feature Grid Home */
.feature-block {
  padding: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-block:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--turquoise);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(20, 122, 116, 0.1);
  border: 1px solid rgba(20, 122, 116, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turquoise);
}

/* Banner sustainability / support */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-card-dark) 0%, rgba(20, 122, 116, 0.1) 100%);
  border: 1px solid rgba(20, 122, 116, 0.2);
  border-radius: 12px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-banner-content {
  max-width: 600px;
}

.cta-banner-title {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--text-light);
}

/* Instagram Catch Section */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.ig-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.ig-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 19, 26, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  padding: 12px;
  text-align: center;
}

.ig-item:hover img {
  transform: scale(1.08);
}

.ig-item:hover .ig-hover-overlay {
  opacity: 1;
}

.ig-username {
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--copper);
}

.ig-desc {
  font-size: 0.65rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* Technique Page Specifics */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--text-muted);
  transition: var(--transition);
}

.filter-btn:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
}

.filter-btn.active {
  background: var(--turquoise);
  color: var(--bg-dark);
}

/* Region Map representation */
.map-visual-container {
  height: 350px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(20, 122, 116, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.map-coordinate-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(10, 19, 26, 0.8);
  border: 1px solid var(--glass-border);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Destination detail styles */
.destination-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.detail-section {
  margin-bottom: 40px;
}

.detail-section-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-light);
  border-b: 1px solid var(--glass-border);
  padding-bottom: 8px;
}

.detail-sidebar-box {
  background: var(--bg-card-dark);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 30px;
  position: sticky;
  top: 100px;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-b: 1px solid var(--glass-border);
}

.info-item:last-child {
  border-b: none;
}

.info-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.info-val {
  font-weight: 700;
  font-size: 0.9rem;
}

.info-val.open {
  color: #2e7d32;
}

.info-val.closed {
  color: #c62828;
}

/* Table styling */
.season-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.season-table th, .season-table td {
  padding: 15px;
  border: 1px solid var(--glass-border);
  text-align: left;
}

.season-table th {
  background: var(--bg-card-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.activity-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.activity-bar-fill {
  height: 100%;
  background: var(--turquoise);
}

.activity-bar-fill.high {
  background: var(--copper);
}

.activity-bar-fill.medium {
  background: var(--turquoise);
}

.activity-bar-fill.low {
  background: var(--stone-grey);
}

/* Callout Warning block */
.callout {
  padding: 24px;
  border-radius: 6px;
  margin: 30px 0;
  display: flex;
  gap: 16px;
}

.callout-warning {
  background: rgba(195, 125, 69, 0.08);
  border: 1px solid rgba(195, 125, 69, 0.25);
  color: var(--text-light);
}

.callout-icon {
  color: var(--copper);
}

.callout-content h4 {
  margin-bottom: 8px;
}

.callout-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Footer Styling */
.footer {
  background-color: #060b0f;
  border-t: 1px solid var(--glass-border);
  padding: 80px 8% 40px 8%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--turquoise);
  letter-spacing: 0.1em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-link {
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--text-light);
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-bottom {
  border-t: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destination-detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-sidebar-box {
    position: static;
  }
}

@media (max-width: 768px) {
  .header {
    height: 70px;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 24px;
    transition: 0.4s ease;
    overflow-y: auto;
  }
  .nav-menu.active {
    left: 0;
  }
  .mobile-nav-toggle {
    display: flex;
    color: var(--text-light);
  }
  .hero {
    align-items: center;
    padding: 0 4%;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* PRINT STYLES FOR THE DESTINATION CARDS */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }
  
  .header, .footer, .hero-bg, .hero-overlay, .search-modal, .mobile-nav-toggle, 
  .btn, .social-icons, .lang-selector, .hero-ctas, .card-badge, .info-item a, 
  .ig-grid, .ig-item, .ig-hover-overlay, .support-box, .print-hide {
    display: none !important;
  }
  
  .destination-detail-grid {
    display: block !important;
  }
  
  .detail-sidebar-box {
    border: 1px solid #000000 !important;
    color: #000000 !important;
    background: none !important;
    position: static !important;
    page-break-inside: avoid;
    margin-bottom: 20px;
  }
  
  .info-item {
    border-bottom: 1px solid #cccccc !important;
  }
  
  h1, h2, h3, h4 {
    color: #000000 !important;
  }
  
  .detail-section-title {
    border-bottom: 2px solid #000000 !important;
    color: #000000 !important;
  }
  
  .card {
    border: 1px solid #000000 !important;
    background: none !important;
    box-shadow: none !important;
  }
}

/* LEAFLET MAP & WEATHER CUSTOM STYLES */
.map-landmarks-wrapper {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.map-leaflet-container {
  height: 600px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: var(--bg-dark);
}

@media (max-width: 768px) {
  .map-landmarks-wrapper {
    grid-template-columns: 1fr;
  }
  .map-leaflet-container {
    height: 400px;
  }
}


.weather-container {
  display: flex;
  gap: 32px;
  align-items: center;
}

.weather-item {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--glass-border);
  padding-left: 20px;
}

.weather-item:first-child {
  border-left: none;
  padding-left: 0;
}

.weather-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.weather-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.weather-value span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 2px;
}

/* Leaflet Popup Customization */
.leaflet-popup-content-wrapper {
  background: var(--bg-card-dark) !important;
  color: var(--text-light) !important;
  border: 1px solid var(--turquoise) !important;
  border-radius: 6px !important;
  font-family: var(--font-body) !important;
}

.leaflet-popup-tip {
  background: var(--bg-card-dark) !important;
  border-left: 1px solid var(--turquoise) !important;
  border-bottom: 1px solid var(--turquoise) !important;
}

.leaflet-popup-content h4 {
  color: var(--copper);
  font-family: var(--font-display);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.leaflet-popup-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Custom elegant topographic filter for Leaflet map tiles — Patagonia fly fishing aesthetic */
.map-tiles-dark {
  filter: grayscale(30%) sepia(20%) contrast(95%) brightness(75%) saturate(80%);
}


/* Sidebar list styles */
.landmark-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landmark-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
}

.landmark-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--turquoise);
}

.landmark-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-valdivia { background-color: #00d4ff; }
.dot-airport { background-color: var(--copper); }
.dot-reserve { background-color: var(--turquoise); }

.btn-gis {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  margin-top: 15px;
}

.btn-gis:hover {
  background: var(--text-light);
  color: var(--bg-dark);
}

/* Difficulty Badges */
.difficulty-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  width: fit-content;
}

.difficulty-facil {
  background: rgba(46, 117, 89, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.difficulty-media {
  background: rgba(195, 125, 69, 0.12);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.2);
}

.difficulty-alta {
  background: rgba(214, 73, 51, 0.12);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.2);
}

/* LEAD CAPTURE & CONTACT MODAL STYLES */
.contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 15, 0.8);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.contact-modal.active {
  opacity: 1;
  pointer-events: all;
}

.contact-container {
  background: var(--bg-card-dark);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.contact-modal.active .contact-container {
  transform: translateY(0);
}

.contact-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-close-btn:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
}

.contact-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.contact-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--turquoise);
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 10px rgba(20, 122, 116, 0.2);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238fa0a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

select.form-input option {
  background: #0d161d;
  color: var(--text-light);
}

textarea.form-input {
  min-height: 100px;
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--turquoise) 0%, #0f615d 100%);
  border: none;
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(20, 122, 116, 0.2);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(20, 122, 116, 0.35);
  background: linear-gradient(135deg, #209992 0%, #127570 100%);
}

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

/* Success State Animation */
.contact-success {
  text-align: center;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.success-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(20, 122, 116, 0.1);
  border: 2px solid var(--turquoise);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turquoise);
  animation: pulse-success 2s infinite;
}

.success-icon-wrapper span {
  font-size: 2.5rem;
}

@keyframes pulse-success {
  0% { box-shadow: 0 0 0 0 rgba(20, 122, 116, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(20, 122, 116, 0); }
  100% { box-shadow: 0 0 0 0 rgba(20, 122, 116, 0); }
}

/* LEADS DASHBOARD SPECIFIC STYLES */
.dashboard-container {
  max-width: 960px;
  width: 95%;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-card-title {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.stat-card-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--copper);
}

.dashboard-table-wrapper {
  width: 100%;
  overflow-x: auto;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  margin-bottom: 24px;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}

.dashboard-table th {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--turquoise);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.dashboard-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 14px 16px;
  color: var(--text-light);
  vertical-align: top;
}

.dashboard-table tr:hover td {
  background: rgba(255, 255, 255, 0.01);
}

.dashboard-table td.empty-state {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  font-style: italic;
}

.dashboard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.btn-csv {
  background: linear-gradient(135deg, var(--copper) 0%, #a25c27 100%);
  border: none;
  color: var(--text-light);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-csv:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #d38c53 0%, #b36a32 100%);
}

.btn-clear {
  background: transparent;
  border: 1px solid #d64933;
  color: #f87171;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
}

.btn-clear:hover {
  background: rgba(214, 73, 51, 0.1);
  color: #fca5a5;
}



/* ==========================================================================
   REDESIGNED DESTINATION PAGES (CLIMATOLOGICAL CALENDAR, FLY BOX, CONSERVATION MANDATE)
   ========================================================================== */

/* Climo Calendar Component */
.climo-calendar-box {
  background: var(--bg-card-dark);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 35px 40px;
  margin: 40px 0;
  text-align: center;
  backdrop-filter: blur(10px);
}

.climo-title {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  font-family: var(--font-display);
}

.climo-tabs {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.climo-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 6px;
  transition: var(--transition);
}

.climo-tab-btn.active {
  background: #fad7bd;
  color: #111;
  font-weight: 700;
}

.climo-tab-btn:hover:not(.active) {
  color: var(--text-light);
}

.climo-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 20px 0;
}

.climo-content {
  display: flex;
  justify-content: space-between;
  text-align: left;
  gap: 30px;
  margin-bottom: 25px;
}

.climo-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.climo-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-display);
}

.climo-metric-val {
  font-size: 2.2rem;
  color: var(--text-light);
  font-family: 'Georgia', serif;
  font-style: italic;
  line-height: 1.2;
}

.climo-clarity-high {
  color: var(--turquoise);
}

.climo-clarity-low {
  color: var(--copper);
}

.climo-notes {
  text-align: left;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px dashed var(--glass-border);
  padding-top: 15px;
  font-style: italic;
}

@media (max-width: 768px) {
  .climo-content {
    flex-direction: column;
    gap: 20px;
  }
  .climo-metric-val {
    font-size: 1.8rem;
  }
}

/* Redesigned Fly Box Component */
.fly-box-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.fly-compartment {
  background: var(--bg-card-dark);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  backdrop-filter: blur(10px);
}

.fly-compartment-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--copper);
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 8px;
  font-family: var(--font-display);
}

.fly-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fly-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.fly-name {
  color: var(--text-light);
}

.fly-size {
  color: var(--turquoise);
  font-weight: 600;
  background: rgba(82, 219, 203, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .fly-box-container {
    grid-template-columns: 1fr;
  }
}

/* Conservation Mandate Component */
.conservation-box {
  background: #080808;
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 12px;
  margin: 50px 0 20px 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.conservation-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--copper);
}

.conservation-badge {
  font-size: 0.75rem;
  color: var(--copper);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-display);
}

.conservation-title {
  font-size: 2.8rem;
  font-family: 'Georgia', serif;
  font-style: italic;
  color: var(--text-light);
  margin: 10px 0 20px 0;
  font-weight: normal;
  line-height: 1.2;
}

.conservation-desc {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 35px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 25px;
}

.conservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.conservation-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.conservation-col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fad7bd;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.conservation-col-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
}

.conservation-col-desc-es {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.conservation-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 30px 0;
}

.conservation-pledge-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 20px;
}

.conservation-pledge-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.conservation-pledge-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-light);
}

.conservation-pledge-item span.material-symbols-outlined {
  color: var(--copper);
  font-size: 1.25rem;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .conservation-box {
    padding: 30px 20px;
  }
  .conservation-title {
    font-size: 2.2rem;
  }
  .conservation-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
