/* ============================================
   FINCA LA TOLOSA - LANDING PAGE STYLES
   ============================================ */

/* ---------- Reset & Base ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Lato:wght@300;400;700;900&display=swap');

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

:root {
  /* Color palette */
  --color-green-dark: #2c5e3f;
  --color-green-medium: #3a7d5c;
  --color-green-light: #4a8f6a;
  --color-green-banner: #3d6b4f;
  --color-brown-dark: #5c3d1e;
  --color-brown-medium: #8b6f47;
  --color-brown-light: #a68b5b;
  --color-gold: #c9a84c;
  --color-gold-dark: #b8943f;
  --color-cream: #f5f0e8;
  --color-cream-dark: #e8dece;
  --color-white: #ffffff;
  --color-text-dark: #2d2418;
  --color-text-medium: #5a4a35;
  --color-text-light: #8a7a65;
  --color-border: #c8b89a;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 60px 0;
  --container-max: 960px;
  --container-padding: 0 30px;

  /* Header */
  --header-height: 80px;
  --logo-overlap: 80px; /* How far below header the logo extends */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-cream);
  background-image: url('../assets/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---------- Header / Navbar ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(245, 240, 232, 0.95);
  border-bottom: 2px solid var(--color-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  background: rgba(245, 240, 232, 0.98);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* Logo link — positioned to overlap into hero */
.header__logo-link {
  position: relative;
  z-index: 1001;
  flex-shrink: 0;
}

.header__logo {
  height: calc(var(--header-height) + var(--logo-overlap));
  width: auto;
  object-fit: contain;
  position: relative;
  top: calc(var(--logo-overlap) / 2);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.header__logo:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.2));
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-dark);
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-green-dark);
  transition: width 0.3s ease;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-green-dark);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__nav a.active {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--color-green-dark);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 480px;
  max-height: 800px;
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Heliconia flowers overlay - top left */
.hero__flowers-left {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 180px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 30px;
  gap: 0;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.9;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  padding-bottom: 16px;
}

.hero__tagline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
  max-width: 650px;
}

.hero__description {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero__cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: fit-content;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--color-green-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 24px rgba(44, 94, 63, 0.45);
  letter-spacing: 0.3px;
}

.hero__cta:hover {
  background: var(--color-green-medium);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(44, 94, 63, 0.55);
}

.hero__cta:active {
  transform: translateY(-1px) scale(1.01);
}

.hero__cta svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.hero__cta--instagram {
  background: linear-gradient(90deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
  box-shadow: 0 6px 24px rgba(131, 58, 180, 0.4);
}

.hero__cta--instagram:hover {
  background: linear-gradient(90deg, #7A34A6 0%, #E21B1B 50%, #E49A3A 100%);
  box-shadow: 0 10px 30px rgba(131, 58, 180, 0.5);
}

/* ---------- Section: Explora Nuestra Finca ---------- */
.section-explore {
  padding: 60px 0 50px;
  position: relative;
}

/* Decorative leaves left side of explore */
.section-explore__leaves-left {
  position: absolute;
  bottom: 0;
  left: -30px;
  width: 160px;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
}

/* Decorative leaves right side of explore */
.section-explore__leaves-right {
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 160px;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
  transform: scaleX(-1);
}

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

.explore-banner {
  position: relative;
  background: linear-gradient(135deg, #2c5e3f 0%, #3a7d5c 40%, #4a8f6a 70%, #2c5e3f 100%);
  background-size: 200% 200%;
  animation: bannerGradient 8s ease infinite;
  border: none;
  border-radius: 18px;
  padding: 35px 40px 30px;
  text-align: center;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(44, 94, 63, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

@keyframes bannerGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.explore-banner__decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.explore-banner__line {
  display: block;
  width: 60px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.8), transparent);
}

.explore-banner__icon {
  width: 26px;
  height: 26px;
  color: var(--color-gold);
  flex-shrink: 0;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.explore-banner h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 6px;
}

.explore-banner__subtitle {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1.5px;
}

.explore-banner__glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.explore-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  border-radius: 18px;
  pointer-events: none;
}

.explore-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.explore-category {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.gallery-filters__btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-medium);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.gallery-filters__btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-green-dark);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.gallery-filters__btn.active {
  background: var(--color-green-dark);
  color: var(--color-white);
  border-color: var(--color-green-dark);
  box-shadow: 0 4px 12px rgba(44, 94, 63, 0.3);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  transition: min-height 0.3s ease;
}

.gallery-card.hidden {
  display: none;
}

.gallery-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.gallery-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card__image {
  transform: scale(1.05);
}

.gallery-card__label {
  display: block;
  text-align: center;
  padding: 10px 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
  background: rgba(255, 255, 255, 0.7);
  border-top: 2px solid var(--color-gold);
}

/* ---------- Section: Por Qué Elegirnos ---------- */
.section-why-us {
  padding: 80px 0;
  position: relative;
  background-color: var(--color-white);
  border-top: 1px solid rgba(44, 94, 63, 0.1);
  border-bottom: 1px solid rgba(44, 94, 63, 0.1);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us__content {
  padding-right: 20px;
}

.why-us__badge {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-us__badge svg {
  width: 26px;
  height: 26px;
  color: var(--color-gold-dark);
}

.why-us__title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
}

.why-us__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
  margin-top: 16px;
}

.why-us__intro {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-medium);
  margin-bottom: 30px;
  line-height: 1.6;
}

.why-us__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-us__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.why-us__list li svg {
  width: 20px;
  height: 20px;
  color: var(--color-green-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-us__list li span {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-dark);
  line-height: 1.5;
}

.why-us__list li strong {
  color: var(--color-green-dark);
}

.why-us__image-wrapper {
  position: relative;
  border-radius: 20px;
  z-index: 1;
}

.why-us__image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-gold);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
}

.why-us__image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.why-us__floating-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(3px);
  padding: 8px 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--color-green-dark);
  border: 1px solid rgba(44, 94, 63, 0.12);
}

.why-us__floating-badge svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
}

@media (max-width: 900px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .why-us__content {
    padding-right: 0;
  }
  .why-us__image-decoration {
    display: none;
  }
  .why-us__floating-badge {
    left: 20px;
    bottom: 20px;
  }
}
@media (max-width: 480px) {
  .section-why-us {
    padding: 60px 0;
  }
  .why-us__title {
    font-size: 26px;
  }
}

/* ---------- Section: Descubre el Eje Cafetero ---------- */
.section-discover {
  padding: 50px 0 40px;
}

.discover-box {
  border: 1px solid rgba(44, 94, 63, 0.3);
  border-radius: 20px;
  padding: 45px 30px 40px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Arrow decoration */
.discover-box::before {
  content: '→';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--color-green-dark);
  font-weight: 700;
}

.discover-box h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-style: italic;
}

.discover-box__intro {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-medium);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 35px auto;
  line-height: 1.6;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-content: center;
  text-align: center;
}

.destination-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.destination-item:hover {
  transform: translateY(-8px);
}

.destination-item__icon {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-item:hover .destination-item__icon {
  transform: scale(1.05);
}

.destination-item__name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.destination-item__desc {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.3;
  max-width: 140px;
}

/* ---------- Section: Políticas ---------- */
.section-policies {
  padding: 50px 0 60px;
}

.section-policies .container {
  max-width: 1000px;
}

.policies-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left: Decorative heading */
.policies-header {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: 30px 0;
}

.policies-header__badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-green-dark), var(--color-green-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(44, 94, 63, 0.3);
}

.policies-header__badge svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

.policies-header__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.policies-header__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-medium);
  line-height: 1.65;
  margin-bottom: 24px;
}

.policies-header__accent {
  width: 50px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
}

/* Right: Accordion wrapper */
.policies-accordion-wrapper {
  min-width: 0;
}

/* ---------- Accordion (Políticas) ---------- */
.accordion {
  border: 1px solid rgba(44, 94, 63, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.accordion__item {
  border-bottom: 1px solid rgba(44, 94, 63, 0.1);
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: left;
  transition: background 0.25s ease, color 0.25s ease;
  position: relative;
}

.accordion__header:hover {
  background: rgba(44, 94, 63, 0.06);
}

.accordion__header[aria-expanded="true"] {
  background: rgba(44, 94, 63, 0.08);
  color: var(--color-green-dark);
}

.accordion__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-green-dark), var(--color-green-medium));
  color: var(--color-white);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion__header:hover .accordion__icon {
  transform: scale(1.08);
}

.accordion__icon svg {
  width: 15px;
  height: 15px;
}

.accordion__title {
  flex: 1;
}

.accordion__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--color-text-light);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
  flex-shrink: 0;
}

.accordion__chevron svg {
  width: 16px;
  height: 16px;
}

.accordion__header[aria-expanded="true"] .accordion__chevron {
  transform: rotate(180deg);
  color: var(--color-green-dark);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__content {
  padding: 0 16px 16px 54px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--color-text-medium);
  line-height: 1.65;
}

.accordion__intro {
  margin-bottom: 10px;
  font-style: italic;
  color: var(--color-text-dark);
  font-size: 12.5px;
}

.accordion__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.accordion__list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
}

.accordion__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-green-dark), var(--color-gold));
}

.accordion__content p {
  margin: 0 0 8px;
}

.accordion__content p:last-child {
  margin-bottom: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-green-dark);
  color: var(--color-white);
  padding: 40px 0 15px;
  position: relative;
}

.footer .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__contact-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.footer__contact-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.footer__contact-phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.footer__socials a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.footer__socials a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer__logo-wrapper {
  text-align: center;
}

.footer__logo {
  width: 120px;
  height: auto;
  filter: brightness(1.1);
  margin: 0 auto;
  border-radius: 8px;
}

.footer__location {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__location-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.footer__location-address {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 6px;
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.4;
}

.footer__location-address svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  opacity: 0.7;
  font-style: italic;
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all 0.3s ease;
  border: 3px solid var(--color-gold);
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ---------- Large Desktop: 1440px+ ---------- */
@media (min-width: 1440px) {
  :root {
    --container-max: 1100px;
  }

  .hero {
    max-height: 900px;
  }

  .hero__cta {
    font-size: 18px;
    padding: 17px 40px;
  }

  .gallery-card__image {
    height: 220px;
  }

  .destination-item__icon {
    width: 200px;
    height: 200px;
  }
}

/* ---------- Standard Desktop: up to 1200px ---------- */
@media (max-width: 1200px) {
  :root {
    --container-max: 900px;
  }

  .header__nav {
    gap: 22px;
  }

  .header__nav a {
    font-size: 13px;
  }
}

/* ---------- Small Desktop / Tablet Landscape: up to 1024px ---------- */
@media (max-width: 1024px) {
  :root {
    --container-max: 760px;
    --header-height: 72px;
    --logo-overlap: 65px;
  }

  .header__logo {
    height: calc(var(--header-height) + var(--logo-overlap));
  }

  .header__nav {
    gap: 18px;
  }

  .header__nav a {
    font-size: 13px;
  }

  .hero {
    max-height: 650px;
  }

  .hero__flowers-left {
    width: 150px;
  }

  .gallery-card__image {
    height: 160px;
  }

  .destination-item__icon {
    width: 160px;
    height: 160px;
  }
}

/* ---------- Tablet Portrait: up to 768px ---------- */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --logo-overlap: 55px;
    --container-padding: 0 20px;
  }

  .header__logo {
    height: calc(var(--header-height) + var(--logo-overlap));
  }

  .header__nav {
    gap: 14px;
  }

  .header__nav a {
    font-size: 12px;
  }

  .hero {
    max-height: 550px;
  }

  .hero__content {
    padding: 30px 20px;
  }

  .hero__tagline {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .hero__description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero__cta {
    font-size: 14px;
    padding: 13px 26px;
  }

  .hero__flowers-left {
    width: 120px;
    top: -5px;
    left: -5px;
  }

  .section-explore {
    padding: 45px 0 40px;
  }

  .explore-banner {
    padding: 25px 20px 22px;
    border-radius: 14px;
    margin-bottom: 24px;
  }

  .explore-banner h2 {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .explore-banner__line {
    width: 40px;
  }

  .accordion__header {
    padding: 12px 14px;
    font-size: 12.5px;
  }

  .accordion__content {
    padding: 0 14px 14px 46px;
    font-size: 12px;
  }

  .accordion__icon {
    width: 24px;
    height: 24px;
  }

  .accordion__icon svg {
    width: 13px;
    height: 13px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-card__image {
    height: 170px;
  }

  .section-discover {
    padding: 40px 0 30px;
  }

  .discover-box {
    padding: 35px 25px 30px;
    border-radius: 16px;
  }

  .discover-box h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .discover-box::before {
    display: none;
  }

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

  .destination-item__icon {
    width: 160px;
    height: 160px;
  }

  .policies-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .policies-header {
    position: static;
    text-align: center;
    padding: 0;
  }

  .policies-header__badge {
    margin: 0 auto 16px;
  }

  .policies-header__title {
    font-size: 26px;
  }

  .policies-header__accent {
    margin: 0 auto;
  }

  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer__contact {
    align-items: center;
  }

  .footer__location {
    text-align: center;
  }

  .footer__location-address {
    justify-content: center;
  }

  .footer__socials {
    justify-content: center;
  }

  .section-explore__leaves-left,
  .section-explore__leaves-right {
    width: 110px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ---------- Mobile: up to 480px ---------- */
@media (max-width: 480px) {
  :root {
    --header-height: 56px;
    --logo-overlap: 45px;
    --container-padding: 0 16px;
  }

  .header__logo {
    height: calc(var(--header-height) + var(--logo-overlap));
  }

  .header__nav {
    gap: 10px;
  }

  .header__nav a {
    font-size: 11px;
    letter-spacing: 0;
  }

  .hero {
    min-height: 400px;
    max-height: 500px;
  }

  .hero__content {
    padding: 24px 16px;
  }

  .hero__tagline {
    font-size: 11px;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
    padding-bottom: 12px;
  }

  .hero__tagline::after {
    width: 35px;
  }

  .hero__description {
    font-size: 13px;
    margin-bottom: 20px;
    max-width: 320px;
  }

  .hero__cta {
    font-size: 13px;
    padding: 12px 24px;
    gap: 8px;
  }

  .hero__cta svg {
    width: 18px;
    height: 18px;
  }

  .hero__flowers-left {
    width: 90px;
  }

  .section-explore {
    padding: 35px 0 30px;
  }

  .explore-banner {
    padding: 20px 14px 18px;
    border-radius: 12px;
    margin-bottom: 18px;
  }

  .explore-banner h2 {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .explore-banner__subtitle {
    font-size: 11px;
  }

  .explore-banner__line {
    width: 30px;
  }

  .explore-banner__icon {
    width: 20px;
    height: 20px;
  }

  .explore-category {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-card {
    border-radius: 10px;
  }

  .gallery-card__image {
    height: 130px;
  }

  .gallery-card__label {
    padding: 8px 6px;
    font-size: 12px;
  }

  .section-discover {
    padding: 30px 0 25px;
  }

  .discover-box {
    padding: 25px 16px;
    border-radius: 12px;
  }

  .discover-box h2 {
    font-size: 17px;
    letter-spacing: 1px;
    margin-bottom: 18px;
  }

  .destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
  }

  .destination-item__icon {
    width: 140px;
    height: 140px;
  }

  .destination-item__name {
    font-size: 12px;
  }

  .destination-item__desc {
    font-size: 10px;
    max-width: 120px;
  }

  .policies-layout {
    gap: 16px;
  }

  .policies-header__title {
    font-size: 22px;
  }

  .policies-header__desc {
    font-size: 13px;
  }

  .policies-header__badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .policies-header__badge svg {
    width: 22px;
    height: 22px;
  }

  .accordion__header {
    padding: 11px 12px;
    font-size: 12px;
    gap: 8px;
  }

  .accordion__content {
    padding: 0 12px 12px 40px;
    font-size: 11.5px;
  }

  .accordion__icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
  }

  .accordion__icon svg {
    width: 12px;
    height: 12px;
  }

  .accordion__list li {
    padding-left: 14px;
  }

  .accordion__list li::before {
    width: 5px;
    height: 5px;
    top: 6px;
  }

  .footer {
    padding: 30px 0 12px;
  }

  .footer__contact-title,
  .footer__location-title {
    font-size: 16px;
  }

  .footer__logo {
    width: 90px;
  }

  .section-explore__leaves-left,
  .section-explore__leaves-right {
    width: 80px;
    opacity: 0.6;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox__image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.1s;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox__image.smooth-transform {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox__btn {
  position: absolute;
  top: 20px;
  background: rgba(44, 94, 63, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  z-index: 10001;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox__close {
  right: 20px;
}

.lightbox__zoom {
  right: 80px;
}

.lightbox__btn:hover {
  background: rgba(44, 94, 63, 0.95);
  transform: scale(1.1);
}

.lightbox__btn svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .lightbox__btn {
    width: 44px;
    height: 44px;
    top: 15px;
  }
  .lightbox__close {
    right: 15px;
  }
  .lightbox__zoom {
    right: 70px;
  }
}
