/* ==========================================================================
   VISITA ORBANEJA DEL CASTILLO - Estilos con encanto rural
   Paleta de colores basada en la fotografía real del pueblo
   ========================================================================== */

/* ---------- VARIABLES Y BASE ---------- */
:root {
  /* Colores extraídos de la foto de Orbaneja */
  --color-bg: #f5f2eb;
  --color-cream: #fdfbf7;
  --color-beige: #e5dbc8;
  --color-sand: #c9b896;
  --color-stone: #a89878;
  
  /* Verdes del bosque y vegetación */
  --color-forest: #3d6b35;
  --color-forest-dark: #2d5a27;
  --color-leaf: #5a8a3d;
  --color-moss: #6b7c4c;
  
  /* Azul del cielo */
  --color-sky: #4a90c2;
  --color-sky-light: #87b5d6;
  
  /* Marrones de piedra y arquitectura */
  --color-brown: #7a6b55;
  --color-brown-dark: #5a4d3d;
  --color-rock: #8a7a65;
  
  /* Acentos */
  --color-water: #a8c8d8;
  --color-terracotta: #b86b55;
  --color-dark: #3a352d;
  
  /* Tipografías */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
  
  /* Sombras y transiciones */
  --shadow-soft: 0 8px 32px rgba(45, 53, 35, 0.12);
  --shadow-hover: 0 16px 48px rgba(45, 53, 35, 0.18);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-dark);
  background: var(--color-bg);
  margin: 0;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- ANIMACIONES ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes waterFlow {
  0%, 100% { 
    background-position: 0% 50%;
  }
  50% { 
    background-position: 100% 50%;
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* ---------- NAVEGACIÓN ---------- */
.navbar {
  background: transparent !important;
  padding: 1.25rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.7) !important;
  padding: 0.75rem 0;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .nav-link {
  color: var(--color-dark) !important;
  text-shadow: none;
}

.navbar.scrolled .nav-link:hover {
  color: var(--color-forest) !important;
}

.navbar.scrolled .nav-link::after {
  background: var(--color-forest);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem !important;
  position: relative;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-water);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 60%;
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
}

.btn-map {
  background: var(--color-forest);
  color: #fff !important;
  border-radius: 6px;
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(61, 107, 53, 0.35);
  text-shadow: none;
}

.btn-map:hover {
  background: var(--color-forest-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 107, 53, 0.45);
}

/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 100vh;
  /* Imagen local de Orbaneja del Castillo */
  background: url("../img/cascada-de-orbaneja-del-castillo-orbaneja-del-castillo-burgos.jpg") center/cover no-repeat;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Overlay con gradiente que realza la imagen */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(45, 53, 35, 0.25) 0%,
    rgba(45, 53, 35, 0.15) 40%,
    rgba(45, 53, 35, 0.35) 100%
  );
}

/* Degradado inferior que integra con el fondo */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(
    to top,
    var(--color-bg) 0%,
    rgba(245, 242, 235, 0.7) 40%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1rem 12rem;
}

.hero-text {
  text-align: center;
  max-width: 650px;
}

.hero-kicker {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.25rem;
  line-height: 1;
  text-shadow: 2px 4px 16px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.05em;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0.5rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 2.5rem;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out 0.6s forwards;
  opacity: 0;
}

.btn-hero {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 0;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
  animation: fadeInUp 1s ease-out 0.8s forwards;
  opacity: 0;
}

.btn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform var(--transition);
}

.btn-hero:hover::before {
  transform: translateX(0);
}

.btn-hero:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  transition: color var(--transition);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.scroll-indicator a:hover {
  color: #fff;
}

/* ---------- CABECERA DE SECCIÓN ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--color-forest);
  margin: 0 0 0.5rem;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-dark);
  margin: 0;
  letter-spacing: 0.05em;
}

/* ---------- SECCIÓN TARJETAS ---------- */
.section-cards {
  padding: 5rem 0 4rem;
  background: var(--color-bg);
  position: relative;
  margin-top: -6rem;
  z-index: 10;
}

.info-card {
  background: var(--color-cream);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.info-card__image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.info-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(45, 53, 35, 0.2));
}

.info-card:hover .info-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(61, 107, 53, 0.15);
  animation: fadeIn 0.4s ease-out;
}

.image-1 {
  background-image: url("https://images.unsplash.com/photo-1433086966358-54859d0ed716?auto=format&fit=crop&w=900&q=80");
}

.image-2 {
  background-image: url("https://images.unsplash.com/photo-1551632811-561732d1e306?auto=format&fit=crop&w=900&q=80");
}

.image-3 {
  background-image: url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=900&q=80");
}

.info-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
  color: var(--color-forest);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  position: absolute;
  left: 50%;
  top: 152px;
  transform: translateX(-50%);
  border: 4px solid var(--color-cream);
  box-shadow: 0 4px 12px rgba(45, 53, 35, 0.15);
  transition: all var(--transition);
}

.info-card:hover .info-card__icon {
  transform: translateX(-50%) scale(1.1);
  background: var(--color-forest);
  color: #fff;
}

.info-card__body {
  padding: 2.5rem 1.75rem 2rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.info-card__body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
  line-height: 1.4;
}

.info-card__body p {
  font-size: 0.9rem;
  color: #5a5548;
  margin-bottom: 1.5rem;
  flex: 1;
}

.btn-card {
  background: var(--color-forest);
  color: #fff;
  border-radius: 6px;
  padding: 0.7rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  transition: all var(--transition);
  align-self: center;
  position: relative;
  overflow: hidden;
}

.btn-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-card:hover::before {
  left: 100%;
}

.btn-card:hover {
  background: var(--color-forest-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(61, 107, 53, 0.4);
}

/* ---------- SECCIÓN SEO ---------- */
.section-seo {
  padding: 4rem 0;
  background: var(--color-cream);
}

.seo-content {
  background: #fff;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-soft);
}

.seo-content h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-forest);
  margin-bottom: 1.25rem;
}

.seo-content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-dark);
  margin: 2rem 0 1rem;
}

.seo-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a4540;
  margin-bottom: 1rem;
}

.seo-content p:last-child {
  margin-bottom: 0;
}

.seo-content strong {
  color: var(--color-dark);
}

@media (max-width: 767px) {
  .seo-content {
    padding: 2rem 1.5rem;
  }

  .seo-content h2 {
    font-size: 1.5rem;
  }

  .seo-content h3 {
    font-size: 1.15rem;
  }
}

/* ---------- SECCIÓN GALERÍA ---------- */
.section-gallery {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-sand) 100%);
  position: relative;
  overflow: hidden;
}

.section-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--color-bg), transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(45, 53, 35, 0.15);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 53, 35, 0.7), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 2;
}

.gallery-item:hover .gallery-item__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SECCIÓN CARACTERÍSTICAS ---------- */
.section-features {
  padding: 5rem 0;
  background: var(--color-cream);
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  transition: all var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-leaf) 100%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(61, 107, 53, 0.35);
  transition: all var(--transition);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(61, 107, 53, 0.45);
}

.feature-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.feature-item p {
  font-size: 0.9rem;
  color: #5a5548;
  margin: 0;
}

/* ---------- SECCIÓN ABOUT / MAPA ---------- */
.section-about {
  padding: 5rem 0 6rem;
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    var(--color-cream) 50%,
    var(--color-bg) 100%
  );
  position: relative;
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 0.5rem;
  color: var(--color-forest);
}

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 0.95rem;
  color: #4a4540;
  margin-bottom: 1rem;
}

.about-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-forest);
  border-left: 3px solid var(--color-forest);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}

.btn-terracotta {
  background: var(--color-forest);
  color: #fff;
  border-radius: 6px;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(61, 107, 53, 0.35);
}

.btn-terracotta:hover {
  background: var(--color-forest-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(61, 107, 53, 0.45);
}

/* Tarjeta del mapa */
.map-card {
  background: var(--color-cream);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all var(--transition);
}

.map-card:hover {
  box-shadow: var(--shadow-hover);
}

.map-card__header {
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, #f0e8db 0%, var(--color-beige) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.map-card__header h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--color-dark);
}

.map-card__header p {
  font-size: 0.85rem;
  color: #5a5548;
  margin: 0;
}

.map-card__map {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.map-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-card__footer {
  padding: 1.25rem 1.75rem 1.5rem;
}

.map-thumbnail {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.map-thumbnail__img {
  width: 85px;
  height: 60px;
  border-radius: 8px;
  background: url("../img/cascada-de-orbaneja-del-castillo-orbaneja-del-castillo-burgos.jpg") center/cover no-repeat;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.distances-table {
  flex: 1;
}

.distance-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  font-size: 0.8rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.distance-row:last-child {
  border-bottom: none;
}

.distance-row__city {
  font-weight: 600;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.distance-row__car,
.distance-row__train {
  color: #5a5548;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
}

.distance-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-forest);
}

.distance-header {
  font-size: 0.65rem;
  color: #7a7568;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.map-link {
  display: block;
  text-align: right;
  color: var(--color-forest);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.map-link:hover {
  color: var(--color-leaf);
  transform: translateX(3px);
}

/* ---------- TESTIMONIOS ---------- */
.section-testimonial {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-dark) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-testimonial::before {
  content: """;
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15rem;
  font-family: var(--font-serif);
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.testimonial-author {
  font-size: 0.9rem;
  opacity: 0.85;
  letter-spacing: 0.1em;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 4rem 0 2rem;
  background: #fff;
  color: #5a5a5a;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.footer h5 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #6a6a6a;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--color-forest);
  transform: translateX(3px);
  display: inline-block;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #5a5a5a;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--color-forest);
  color: #fff;
  transform: translateY(-3px);
}

.footer-project {
  margin-top: 0;
  padding-top: 0;
}

.footer-project p {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 0.4rem;
}

.footer-logo {
  max-width: 100px;
  height: auto;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-logo:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .hero {
    background-attachment: scroll;
  }

  .hero-content {
    padding: 6rem 1rem 10rem;
  }

  .section-cards {
    margin-top: -4rem;
    padding: 4rem 0 3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .about-content {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 85vh;
  }

  .hero-content {
    padding: 5rem 1rem 8rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-cards {
    margin-top: -3rem;
  }

  .info-card__image {
    height: 150px;
  }

  .info-card__icon {
    top: 122px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 160px);
  }

  .gallery-item:first-child {
    grid-column: span 1;
  }

  .feature-item {
    padding: 1.5rem 1rem;
  }

  .section-testimonial {
    padding: 4rem 1rem;
  }

  .footer {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .navbar-nav {
    background: rgba(45, 53, 35, 0.97);
    padding: 1.25rem;
    border-radius: 12px;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
  }

  .hero-kicker {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .btn-hero {
    padding: 0.8rem 1.5rem;
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .map-thumbnail {
    flex-direction: column;
  }

  .map-thumbnail__img {
    width: 100%;
    height: 80px;
  }
}
