*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: #2B2B2B;
  background: #FFF8F0;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.color-underline {
  display: block;
  width: 80px;
  height: 5px;
  border-radius: 3px;
  margin: 0.75rem auto 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(11, 122, 117, 0.15);
  padding: 0.6rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1001;
}
.logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.site-header.scrolled .logo-img {
  width: 48px;
  height: 48px;
}
.footer-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: #0B7A75;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}
.site-header.scrolled .logo-icon { background: #0B7A75; }
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.site-header.scrolled .logo-text { color: #1D3557; }
.desktop-nav { display: flex; align-items: center; gap: 2rem; }
.desktop-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.site-header.scrolled .desktop-nav a { color: #1D3557; }
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #F4A261;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.desktop-nav a:hover::after { width: 100%; }
.desktop-nav a.active::after { width: 100%; }
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-toggle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 0.35rem 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-header.scrolled .lang-toggle {
  color: #1D3557;
  background: transparent;
  border-color: #1D3557;
}
.lang-toggle:hover { background: rgba(255,255,255,0.3); }
.site-header.scrolled .lang-toggle:hover { background: #f0f0f0; }
.header-cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  background: #E63946;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.35);
}
.header-cta:hover {
  background: #c5303c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 12px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s ease;
}
.site-header.scrolled .hamburger span { background: #1D3557; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); background: #fff; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); background: #fff; }

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0B7A75 0%, #2D6A4F 50%, #1D3557 100%);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  z-index: 1002;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.mobile-close:hover { opacity: 1; }
.mobile-overlay nav { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile-overlay nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  transition: color 0.3s;
}
.mobile-overlay nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #F4A261;
  border-radius: 2px;
  transition: width 0.3s;
}
.mobile-overlay nav a:hover::after { width: 80%; }
.mobile-overlay .mobile-cta {
  margin-top: 2rem;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: #E63946;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
  transition: all 0.3s;
}
.mobile-overlay .mobile-cta:hover { background: #c5303c; transform: translateY(-2px); }
.mobile-overlay .mobile-lang {
  margin-top: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 0.5rem 1.2rem;
  transition: all 0.3s;
}
.mobile-overlay .mobile-lang:hover { color: #fff; border-color: #fff; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,122,117,0.92) 0%, rgba(29,53,87,0.8) 50%, rgba(230,57,70,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.hero-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #E9C46A;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(233, 196, 106, 0.5);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
}
.hero h1 {
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.hero-tagline {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2.5rem;
  letter-spacing: 0.06em;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #1D3557;
  background: #E9C46A;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(233, 196, 106, 0.4);
}
.btn-gold:hover { background: #d4af56; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(233, 196, 106, 0.5); }
.btn-outline-white {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: transparent;
  border: 3px solid #fff;
  padding: calc(1rem - 3px) calc(2.2rem - 3px);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.btn-red {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: #E63946;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.35);
  border: none;
  cursor: pointer;
}
.btn-red:hover { background: #c5303c; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(230, 57, 70, 0.45); }
.btn-teal {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: #0B7A75;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(11, 122, 117, 0.35);
  border: none;
  cursor: pointer;
}
.btn-teal:hover { background: #096661; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(11, 122, 117, 0.45); }

.hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.hero-shape-1 { width: 300px; height: 300px; background: #E9C46A; top: 10%; left: -5%; animation: floatA 8s ease-in-out infinite; }
.hero-shape-2 { width: 200px; height: 200px; background: #E63946; bottom: 15%; right: -3%; animation: floatB 10s ease-in-out infinite; }
.hero-shape-3 { width: 150px; height: 150px; background: #F4A261; top: 50%; right: 15%; animation: floatA 12s ease-in-out infinite reverse; }
.hero-shape-4 { width: 100px; height: 100px; background: #2D6A4F; bottom: 25%; left: 10%; animation: floatB 9s ease-in-out infinite; }

@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, 25px) scale(1.05); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 0.5; }
}

.stats-bar {
  background: linear-gradient(135deg, #0B7A75, #2D6A4F);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(233,196,106,0.08);
  border-radius: 50%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { position: relative; }
.stat-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #fff;
}
.stat-circle.teal { background: rgba(255,255,255,0.15); border: 3px solid #E9C46A; }
.stat-circle.orange { background: rgba(255,255,255,0.15); border: 3px solid #F4A261; }
.stat-circle.red { background: rgba(255,255,255,0.15); border: 3px solid #E63946; }
.stat-circle.gold { background: rgba(255,255,255,0.15); border: 3px solid #E9C46A; }
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gardens-section {
  padding: 6rem 0;
  background: #FFF8F0;
}
.gardens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}
.garden-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.garden-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.garden-card:hover img { transform: scale(1.1); }
.garden-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.4s ease;
}
.garden-card-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 60%);
  transition: opacity 0.4s;
}
.garden-card:hover .garden-card-overlay::before { opacity: 0; }
.garden-card-color {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.garden-card:hover .garden-card-color { opacity: 1; }
.garden-card-content {
  position: relative;
  z-index: 2;
}
.garden-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.garden-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.45;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}
.garden-card:hover p { max-height: 200px; opacity: 1; }
.garden-card.tall { grid-row: span 2; }
.garden-card.wide { grid-column: span 2; }

.gc-teal .garden-card-color { background: rgba(11,122,117,0.8); }
.gc-red .garden-card-color { background: rgba(230,57,70,0.75); }
.gc-orange .garden-card-color { background: rgba(244,162,97,0.8); }
.gc-green .garden-card-color { background: rgba(45,106,79,0.8); }
.gc-gold .garden-card-color { background: rgba(233,196,106,0.85); }
.gc-navy .garden-card-color { background: rgba(29,53,87,0.8); }
.gc-magenta .garden-card-color { background: rgba(180,50,100,0.8); }

.events-section {
  padding: 6rem 0;
  background: #FFF8F0;
}
.events-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 550px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.events-image {
  position: relative;
  overflow: hidden;
}
.events-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.events-image-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: #E63946;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
}
.events-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #1D3557 0%, #0B7A75 100%);
  color: #fff;
}
.events-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.events-content h2 span { color: #E9C46A; }
.events-content > p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
}
.events-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.event-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.event-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.event-feature-icon.ef-orange { background: rgba(244,162,97,0.25); color: #F4A261; }
.event-feature-icon.ef-gold { background: rgba(233,196,106,0.25); color: #E9C46A; }
.event-feature-icon.ef-red { background: rgba(230,57,70,0.25); color: #E63946; }
.event-feature-icon.ef-teal { background: rgba(11,122,117,0.35); color: #7fdbda; }
.event-feature span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.activities-section {
  padding: 5rem 0;
  background: #FFF8F0;
}
.activities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.activity-card {
  background: #fff;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.activity-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FFF8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.activity-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.activity-card p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

.video-section {
  padding: 5rem 0;
  background: #1D3557;
  color: #fff;
}
.video-section .section-title { color: #fff; }
.video-section .section-subtitle { color: rgba(255,255,255,0.7); }
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.pricing-section {
  padding: 5rem 0;
  background: #FFF8F0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}
.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.pricing-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.pricing-card-icon.pc-teal { background: rgba(11,122,117,0.15); color: #0B7A75; }
.pricing-card-icon.pc-orange { background: rgba(244,162,97,0.2); color: #F4A261; }
.pricing-card-icon.pc-gold { background: rgba(233,196,106,0.25); color: #b8952e; }
.pricing-card-icon.pc-red { background: rgba(230,57,70,0.15); color: #E63946; }
.pricing-card h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}
.pricing-note {
  font-weight: 500;
  font-size: 0.85rem;
  color: #888;
  text-transform: none;
}
.pricing-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #0B7A75;
}
.pricing-amount span {
  font-size: 1.2rem;
  font-weight: 700;
}
.schedule-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  background: #1D3557;
  color: #fff;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.schedule-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.photos-section {
  padding: 5rem 0 4rem;
  background: #FFF8F0;
  overflow: hidden;
}
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  margin-top: 1rem;
}
.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  width: 320px;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.marquee-item:hover img { transform: scale(1.08); }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0B7A75;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2.5rem;
  transition: color 0.3s;
}
.gallery-link:hover { color: #E63946; }
.gallery-link svg { transition: transform 0.3s; }
.gallery-link:hover svg { transform: translateX(5px); }

.testimonials-section {
  padding: 6rem 0;
  background: #FFF8F0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-5px); }
.testimonial-card.tc-teal { background: #0B7A75; color: #fff; }
.testimonial-card.tc-orange { background: #F4A261; color: #fff; }
.testimonial-card.tc-green { background: #2D6A4F; color: #fff; }
.testimonial-quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-location {
  font-size: 0.88rem;
  opacity: 0.75;
  margin-top: 0.2rem;
}
.testimonial-stars {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.visit-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #E63946 0%, #0B7A75 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.visit-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(233,196,106,0.1);
  border-radius: 50%;
}
.visit-cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.visit-cta-content { position: relative; z-index: 2; }
.visit-cta-content h2 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.visit-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.visit-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.visit-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.visit-info-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
.visit-info-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.visit-info-value a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.visit-info-value a:hover { color: #E9C46A; }

.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,122,117,0.92) 0%, rgba(29,53,87,0.82) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 3rem;
}
.page-hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.page-hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: #E9C46A; transition: color 0.3s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.4); }

.garden-detail-section {
  padding: 5rem 0;
}
.garden-detail-section:nth-child(even) {
  background: #FEFBF6;
}
.garden-detail-section:nth-child(odd) {
  background: #FFF8F0;
}
.garden-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.garden-detail.reverse { direction: rtl; }
.garden-detail.reverse > * { direction: ltr; }
.garden-detail-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.garden-detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.garden-detail-img:hover img { transform: scale(1.05); }
.garden-detail-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #1D3557;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.garden-detail-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.garden-detail-badge.gdb-teal { background: rgba(11,122,117,0.12); color: #0B7A75; }
.garden-detail-badge.gdb-red { background: rgba(230,57,70,0.12); color: #E63946; }
.garden-detail-badge.gdb-orange { background: rgba(244,162,97,0.12); color: #e88a3a; }
.garden-detail-badge.gdb-gold { background: rgba(233,196,106,0.15); color: #c49b2f; }
.garden-detail-badge.gdb-green { background: rgba(45,106,79,0.12); color: #2D6A4F; }
.garden-detail-badge.gdb-navy { background: rgba(29,53,87,0.12); color: #1D3557; }
.garden-detail-badge.gdb-magenta { background: rgba(180,50,100,0.12); color: #b43264; }
.garden-detail-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}
.garden-detail-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.garden-detail-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: #0B7A75;
  background: rgba(11,122,117,0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.event-types-section {
  padding: 5rem 0;
  background: #FFF8F0;
}
.event-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.event-type-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.event-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.event-type-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.event-type-card-body {
  padding: 2rem;
}
.event-type-card-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1D3557;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.event-type-card-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.venue-features-section {
  padding: 5rem 0;
  background: #FFF8F0;
}
.venue-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.venue-feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  background: #FFF8F0;
  transition: transform 0.3s;
}
.venue-feature-card:hover { transform: translateY(-5px); }
.venue-feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
}
.venue-feature-icon.vf-teal { background: rgba(11,122,117,0.12); color: #0B7A75; }
.venue-feature-icon.vf-orange { background: rgba(244,162,97,0.12); color: #F4A261; }
.venue-feature-icon.vf-red { background: rgba(230,57,70,0.12); color: #E63946; }
.venue-feature-icon.vf-gold { background: rgba(233,196,106,0.15); color: #c49b2f; }
.venue-feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1D3557;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.venue-feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.gallery-page-section {
  padding: 4rem 0 6rem;
  background: #FFF8F0;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}
.gallery-filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1D3557;
  background: #fff;
  border: 2px solid #e0e0e0;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}
.gallery-filter-btn:hover {
  border-color: #0B7A75;
  color: #0B7A75;
}
.gallery-filter-btn.active {
  background: #0B7A75;
  border-color: #0B7A75;
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.gallery-item.hidden {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-close svg { stroke: #fff; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav svg { stroke: #fff; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 0.5rem 1.5rem;
  background: rgba(0,0,0,0.4);
  border-radius: 50px;
}

.about-story-section {
  padding: 5rem 0;
  background: #FFF8F0;
}
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-story-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.about-story-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.about-story-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #1D3557;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.about-story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.2rem;
}

.about-values-section {
  padding: 5rem 0;
  background: #FFF8F0;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.about-value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: #FFF8F0;
  transition: transform 0.3s;
}
.about-value-card:hover { transform: translateY(-5px); }
.about-value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
}
.about-value-icon.av-teal { background: rgba(11,122,117,0.12); color: #0B7A75; }
.about-value-icon.av-orange { background: rgba(244,162,97,0.12); color: #F4A261; }
.about-value-icon.av-green { background: rgba(45,106,79,0.12); color: #2D6A4F; }
.about-value-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1D3557;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.about-value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.about-location-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1D3557 0%, #0B7A75 100%);
  color: #fff;
  text-align: center;
}
.about-location-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about-location-section > .container > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.about-location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.about-location-card {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s;
}
.about-location-card:hover { transform: translateY(-3px); }
.about-location-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #E9C46A;
  margin-bottom: 0.8rem;
}
.about-location-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}
.about-location-card a { color: #E9C46A; text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s; }
.about-location-card a:hover { color: #fff; }

.contact-section {
  padding: 5rem 0;
  background: #FFF8F0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.contact-form-card h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1D3557;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.contact-form-card > p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #1D3557;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: #2B2B2B;
  background: #FFF8F0;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #0B7A75;
  box-shadow: 0 0 0 3px rgba(11,122,117,0.12);
}
.form-textarea {
  min-height: 160px;
  resize: vertical;
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231D3557' stroke-width='3' 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 1rem center;
  padding-right: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-submit {
  margin-top: 0.5rem;
}
.form-success,
.form-error {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  display: none;
}
.form-success {
  background: rgba(45,106,79,0.1);
  color: #2D6A4F;
  border: 2px solid rgba(45,106,79,0.2);
}
.form-error {
  background: rgba(230,57,70,0.1);
  color: #E63946;
  border: 2px solid rgba(230,57,70,0.2);
}
.form-success.show,
.form-error.show {
  display: block;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}
.contact-info-card:hover { transform: translateY(-3px); }
.contact-info-text {
  min-width: 0;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-teal .contact-info-icon { background: rgba(11,122,117,0.12); color: #0B7A75; }
.ci-green .contact-info-icon { background: rgba(45,106,79,0.12); color: #2D6A4F; }
.ci-orange .contact-info-icon { background: rgba(244,162,97,0.12); color: #F4A261; }
.ci-red .contact-info-icon { background: rgba(230,57,70,0.12); color: #E63946; }
.ci-gold .contact-info-icon { background: rgba(233,196,106,0.15); color: #c49b2f; }
.contact-info-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  margin-bottom: 0.2rem;
}
.contact-info-card p,
.contact-info-card a {
  font-size: 1.05rem;
  color: #1D3557;
  font-weight: 500;
}
.contact-info-card a { transition: color 0.3s; }
.contact-info-card a:hover { color: #0B7A75; }
.contact-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #25D366;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.contact-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}
.contact-whatsapp svg { fill: #fff; width: 22px; height: 22px; }

.directions-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #0B7A75;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #0B7A75;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.directions-link:hover {
  color: #E63946;
  border-color: #E63946;
}

.map-wrapper {
  margin-top: 3rem;
}
.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0B7A75 0%, #1D3557 100%);
  color: #fff;
  text-align: center;
  padding: 2rem;
}
.error-content h1 {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.2;
}
.error-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.error-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.error-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.site-footer {
  background: #1D3557;
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}
.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #E9C46A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.footer-links a:hover { color: #F4A261; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.93rem;
}
.footer-contact-icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: #F4A261;
  margin-top: 2px;
}
.footer-contact-item a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer-contact-item a:hover { color: #F4A261; }
.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer-social-link:hover { transform: translateY(-3px); }
.footer-social-link.fs-instagram:hover { background: #E63946; }
.footer-social-link.fs-facebook:hover { background: #0B7A75; }
.footer-social-link.fs-whatsapp:hover { background: #2D6A4F; }
.footer-social-link svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.3s; }
.footer-bottom a:hover { color: #F4A261; }

.error-page-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0B7A75 0%, #064e4b 50%, #032b29 100%);
  text-align: center;
  padding: 8rem 2rem 4rem;
}
.error-content { max-width: 540px; }
.error-content h1 {
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 900;
  color: #E9C46A;
  line-height: 1;
  margin: 0 0 0.25rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.error-content h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
}
.error-content p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  margin: 0 0 2.5rem;
  line-height: 1.6;
}
.error-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .gardens-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  .events-split { grid-template-columns: 1fr; }
  .events-image { min-height: 350px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .garden-detail { gap: 3rem; }
  .event-types-grid { grid-template-columns: repeat(2, 1fr); }
  .venue-features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 17px; }
  .reveal-left,
  .reveal-right {
    transform: translateY(30px);
  }
  .reveal-left.visible,
  .reveal-right.visible {
    transform: translateY(0);
  }
  .site-header { padding: 0.75rem 0; }
  .site-header.scrolled { padding: 0.5rem 0; }
  .logo-img { width: 48px; height: 48px; }
  .desktop-nav, .header-right .header-cta, .header-right .lang-toggle { display: none; }
  .hamburger { display: flex; }
  .header-right { gap: 0; }
  .mobile-overlay nav a { padding: 0.5rem 1rem; }
  .gardens-section, .events-section, .activities-section, .video-section,
  .pricing-section, .photos-section, .testimonials-section, .visit-cta-section,
  .garden-detail-section, .event-types-section, .venue-features-section,
  .gallery-page-section, .about-story-section, .about-values-section,
  .about-location-section, .contact-section { padding: 4rem 0; }
  .hero-tagline { margin-bottom: 1.5rem; }
  .section-subtitle { margin-bottom: 2rem; }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .gardens-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .garden-card.tall { grid-row: span 1; }
  .garden-card.wide { grid-column: span 1; }
  .garden-card p { max-height: 200px; opacity: 1; }
  .events-content { padding: 2.5rem 1.5rem; }
  .events-features { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .activity-card { padding: 2rem 1.5rem; }
  .video-wrapper { border-radius: 12px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-bar { flex-direction: column; gap: 0.75rem; align-items: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .visit-info { flex-direction: column; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo-img { width: 60px; height: 60px; }
  .footer-socials { justify-content: center; }
  .footer-contact-item { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .marquee-item { width: 260px; height: 195px; }
  .page-hero { min-height: 40vh; }
  .page-hero-content { padding: 5rem 1.5rem 2.5rem; }
  .garden-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .garden-detail.reverse { direction: ltr; }
  .garden-detail-img img { height: 280px; }
  .event-types-grid { grid-template-columns: 1fr; }
  .venue-features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-story-img img { height: 300px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .btn-gold, .btn-red, .btn-teal, .btn-outline-white {
    padding: 16px 2rem;
    min-height: 44px;
  }
  .header-cta { min-height: 44px; }
  .gallery-filter-btn { min-height: 44px; padding: 12px 1.4rem; }
  .testimonial-quote-mark { font-size: 3.5rem; }
  .map-wrapper iframe { height: 300px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .gardens-section, .events-section, .activities-section, .video-section,
  .pricing-section, .photos-section, .testimonials-section, .visit-cta-section,
  .garden-detail-section, .event-types-section, .venue-features-section,
  .gallery-page-section, .about-story-section, .about-values-section,
  .about-location-section, .contact-section { padding: 3rem 0; }
  .hero h1 { font-size: clamp(2rem, 12vw, 3rem); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .visit-cta-content h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .stat-circle { width: 70px; height: 70px; font-size: 1.4rem; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .venue-features-grid { grid-template-columns: 1fr; }
  .page-hero-content h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .marquee-item { width: 200px; height: 150px; }
  .activity-icon { width: 56px; height: 56px; }
  .venue-feature-icon { width: 56px; height: 56px; }
  .about-value-icon { width: 56px; height: 56px; }
  .schedule-bar { padding: 1rem 1.5rem; }
  .map-wrapper iframe { height: 250px; }
  .contact-info-card { padding: 1.2rem; }
  .error-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 360px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.8rem; }
  .page-hero-content h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .stat-circle { width: 60px; height: 60px; font-size: 1.2rem; }
  .visit-cta-content h2 { font-size: 1.6rem; }
}
