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

body {
  font-family: 'Inter', sans-serif;
  background: #fefaf2;
  color: #1e2f1c;
  line-height: 1.5;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.site-header {
  background: rgba(26, 74, 47, 0.96);
  backdrop-filter: blur(12px);
  padding: 12px 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(245, 197, 66, 0.3);
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}
    
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  background: linear-gradient(135deg, rgba(255,248,225,0.15), rgba(255,236,179,0.08));
  padding: 8px 18px 8px 14px;
  border-radius: 60px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(245, 197, 66, 0.2);
  flex-shrink: 0;
}
.logo:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255,248,225,0.25), rgba(255,236,179,0.15));
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border-color: rgba(245, 197, 66, 0.5);
}

.logo-img-wrapper {
  background: linear-gradient(145deg, #fef5e6, #fff8ed);
  border-radius: 50px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 3px rgba(255,255,255,0.8), 0 3px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.logo:hover .logo-img-wrapper {
  background: linear-gradient(145deg, #fff8ed, #fef5e6);
  box-shadow: inset 0 1px 3px rgba(255,255,255,0.9), 0 4px 12px rgba(0,0,0,0.12);
}
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}
.logo:hover .logo-img {
  transform: scale(1.03);
}

.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text h1 {
  background: linear-gradient(135deg, #fae67a, #f5c542);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.5rem;
  letter-spacing: -0.3px;
  line-height: 1.2;
  font-weight: 800;
  text-shadow: none;
  white-space: nowrap;
}
.logo-text .tagline {
  color: #c8dc9e;
  font-size: 0.65rem;
  letter-spacing: 0.8px;
  font-weight: 500;
  margin-top: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-text .location-badge {
  font-size: 0.6rem;
  color: #a8c47a;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.logo-text .location-badge i {
  font-size: 0.55rem;
  color: #f5c542;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
  flex-shrink: 1;
  justify-content: flex-end;
}
.nav-links a {
  color: #fff2e0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f5c542;
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover, .nav-links a.active {
  color: #ffecb3;
}

@media (max-width: 1200px) {
  .header-container {
    padding: 0 16px;
    gap: 15px;
  }
  .logo-text h1 { font-size: 1.3rem; }
  .logo-text .tagline { font-size: 0.6rem; }
  .logo-text .location-badge { font-size: 0.55rem; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.85rem; }
  .logo-img { height: 42px; }
  .logo { padding: 6px 14px 6px 10px; }
}

@media (max-width: 1000px) {
  .header-container { flex-wrap: wrap; justify-content: center; }
  .nav-links { flex-wrap: wrap; justify-content: center; margin-top: 8px; }
  .logo-text h1 { white-space: normal; text-align: center; }
  .logo-text .tagline, .logo-text .location-badge { white-space: normal; text-align: center; }
}

main {
  min-height: 65vh;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 28px;
}

.hero-section {
  position: relative;
  background: #e2efd4;
  border-radius: 0 0 48px 48px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

/* VIDEO HERO STYLES */
.hero-video-banner {
  width: 100%;
  height: 580px;
  position: relative;
  overflow: hidden;
}
.hero-video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-video-banner .hero-overlay-text {
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  text-shadow: 0 4px 18px rgba(0,0,0,0.6);
  z-index: 2;
  padding: 0 20px;
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-video-banner .hero-overlay-text p {
  font-size: 1.3rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  display: inline-block;
  padding: 8px 24px;
  background: rgba(0,0,0,0.4);
  border-radius: 60px;
}

.hero-info-bar {
  background: linear-gradient(135deg, #fef7e8, #fff6e6);
  padding: 18px 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  border-bottom: 1px solid #e8ddc5;
}
.info-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #2c5a2a;
  transition: transform 0.3s ease;
}
.info-chip i {
  font-size: 1.3rem;
  color: #d49b3a;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 28px;
  position: relative;
  background-image: url('img/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 32px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.hero-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 32px;
  z-index: 0;
}

.hero-text {
  flex: 1.2;
  animation: fadeInLeft 0.8s ease-out;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(224,179,84,0.6);
  background: rgba(255, 248, 235, 0.92);
  backdrop-filter: blur(2px);
  position: relative;
  z-index: 2;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================ */
/* UPDATED ALPACA STYLES - MOVED FURTHER DOWN  */
/* ============================================ */
.alpaca-side {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: fadeInRight 0.8s ease-out;
  position: relative;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
  z-index: 2;
  margin-top: 80px;
}

.alpaca-side-img {
  max-width: 100%;
  width: 400px;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  background: transparent;
  border-radius: 28px;
  margin-top: 60px;
  margin-bottom: -60px;
}
.alpaca-side-img:hover {
  transform: scale(1.02) rotate(1deg);
  filter: drop-shadow(0 28px 35px rgba(0,0,0,0.4));
}
@keyframes gentleFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f532f;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-badge {
  background: linear-gradient(135deg, #f5c542, #e0a82b);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 20px;
  color: #2a4b1e;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.hours-container {
  background: rgba(245,239,223,0.95);
  border-radius: 28px;
  padding: 18px 24px;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.hours-box {
  flex: 1;
  min-width: 180px;
  text-align: center;
  transition: transform 0.3s ease;
}
.hours-box:hover {
  transform: translateY(-5px);
}
.hours-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f532f;
  margin-bottom: 8px;
}
.hours-box p {
  font-size: 1rem;
  font-weight: 600;
  color: #2a7640;
}
.btn-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 20px 0 0;
}
.btn-primary {
  background: linear-gradient(135deg, #2a7640, #1e5a33);
  color: white;
  padding: 12px 32px;
  border-radius: 44px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(42,118,64,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42,118,64,0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid #2a7640;
  color: #2a7640;
  padding: 10px 28px;
  border-radius: 44px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: #2a7640;
  color: white;
  transform: translateY(-3px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 12px 32px;
  border-radius: 44px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}
.btn-back {
  background: linear-gradient(135deg, #6b8c5c, #4a6b3a);
  color: white;
  padding: 10px 24px;
  border-radius: 44px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
.btn-back:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #5a7a4a, #3a5a2a);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1f4a2c;
  margin-bottom: 24px;
  border-left: 7px solid #e0b354;
  padding-left: 24px;
}

.addon-badge {
  display: inline-block;
  background: #f5c542;
  color: #2a4b1e;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 40px;
  margin-left: 12px;
  vertical-align: middle;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* ======================== */
/* AUTO SLIDE PHOTO GALLERY */
/* ======================== */
.slider-container {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  background: #f3efdf;
}
.slider-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 66%;
  background: #e9e2cf;
}
.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide {
  flex: 0 0 100%;
  height: 100%;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 60px;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: #2a7640;
  color: white;
}
.slider-btn-prev {
  left: 12px;
}
.slider-btn-next {
  right: 12px;
}
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,240,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}
.dot.active {
  background: #f5c542;
  transform: scale(1.2);
  box-shadow: 0 0 6px gold;
}
@media (max-width: 768px) {
  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .slider-btn-prev { left: 6px; }
  .slider-btn-next { right: 6px; }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin: 30px 0 40px;
}
.video-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #efe0c9;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-caption {
  padding: 16px 20px;
  background: white;
  font-weight: 500;
  color: #2c5a2a;
  text-align: center;
  border-top: 1px solid #f0e5d6;
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin: 30px 0;
}
.gallery-item {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #efe0c9;
  position: relative;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.gallery-caption {
  display: none;
}
.gallery-img-title {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.65);
  color: #ffecb3;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  pointer-events: none;
  z-index: 2;
  letter-spacing: 0.3px;
}

.pricing-table-wrapper {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  margin: 20px 0 40px;
  border: 1px solid #efe0c9;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th {
  background: linear-gradient(135deg, #2a7640, #1e5a33);
  color: white;
  padding: 16px 20px;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
}
.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0e5d6;
  color: #2c3e2a;
  text-align: center;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:hover {
  background: #fef9ef;
}
.price-value {
  font-weight: 700;
  color: #d49b3a;
  font-size: 1.1rem;
}
.no-column {
  width: 60px;
  background: #faf5ea;
  font-weight: 600;
  color: #6b5a3e;
}
.category-name {
  font-weight: 600;
  color: #1f532f;
}

.addon-card {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  margin: 30px 0 50px;
  border: 1px solid #efe0c9;
  transition: transform 0.2s ease;
}
.addon-card:hover {
  transform: translateY(-3px);
}
.flying-fox-title {
  background: #1f532f;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  border-radius: 0 0 30px 30px;
  margin: 0 auto 0 auto;
  width: fit-content;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}
.flying-fox-title i {
  font-size: 1.2rem;
  color: #f5c542;
}
.flying-table-wrapper {
  padding: 20px 24px 28px 24px;
}
.flying-fox-table {
  width: 100%;
  border-collapse: collapse;
  background: #fefcf8;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.flying-fox-table th {
  background: linear-gradient(135deg, #2a7640, #1e5a33);
  color: white;
  padding: 14px 20px;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
}
.flying-fox-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0e5d6;
  text-align: center;
  color: #2c3e2a;
}
.flying-fox-table tr:last-child td {
  border-bottom: none;
}
.flying-fox-table tr:hover {
  background: #fef9ef;
}
.flying-price {
  font-weight: 700;
  color: #d49b3a;
  font-size: 1.1rem;
}

.faq-container {
  background: white;
  border-radius: 32px;
  padding: 32px;
  margin: 40px 0;
  border: 1px solid #efe0c9;
}
.faq-item {
  border-bottom: 1px solid #efe0c9;
  padding: 20px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f532f;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover {
  color: #d49b3a;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  color: #5a6e48;
  line-height: 1.6;
}
.faq-answer.show {
  max-height: 300px;
  padding-top: 16px;
}
.faq-question.open .fa-chevron-down {
  transform: rotate(180deg);
}
.faq-question .fa-chevron-down {
  transition: transform 0.3s;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin: 40px 0;
}
.card {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 12px 22px rgba(0,0,0,0.05);
  border: 1px solid #efe0c9;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-10px);
}
.card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.card-content {
  padding: 24px 26px 28px;
}
.card-content h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #2c672f;
}
.card-content p {
  color: #5a6e48;
  line-height: 1.6;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 30px 0;
}
.facility-item {
  background: white;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  border: 1px solid #efe0c9;
}
.facility-item i {
  font-size: 2.5rem;
  color: #d49b3a;
  margin-bottom: 12px;
}

.map-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-align: center;
  box-shadow: none;
  border: none;
  transition: none;
}
.map-card:hover {
  transform: none;
}
.custom-map-wrapper {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  margin: 32px 0 24px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: none;
}
.custom-map-img-large {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  cursor: zoom-in;
  transition: transform 0.2s ease;
}
.custom-map-img-large:hover {
  transform: scale(1.01);
}
.map-caption {
  padding: 20px 16px;
  background: transparent;
  font-weight: 500;
  color: #3b5c2e;
  border-top: none;
  font-size: 0.95rem;
  border-radius: 0;
  letter-spacing: 0.3px;
}
.map-caption i {
  color: #d49b3a;
  margin-right: 6px;
}
.google-btn {
  display: inline-block;
  background: #2a7640;
  color: white;
  padding: 12px 32px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 24px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.google-btn:hover {
  background: #1e5a33;
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(42,118,64,0.3);
}

.contact-block {
  background: white;
  border-radius: 32px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid #e9ddc5;
  max-width: 500px;
  margin: 0 auto;
}
.phone-number {
  font-size: 2rem;
  font-weight: 800;
  color: #2a7640;
}
.email-address {
  font-size: 1.2rem;
  font-weight: 600;
  color: #d49b3a;
  background: #fef7e0;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 60px;
  margin-top: 16px;
  letter-spacing: 0.3px;
  border: 1px dashed #e0b354;
}
.social-row {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin: 28px 0;
}
.social-icon {
  background: #efe0cc;
  width: 58px;
  height: 58px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #2a6b37;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background: #dbbc8c;
  transform: scale(1.1);
}
footer {
  background: linear-gradient(135deg, #1f3c28, #143220);
  color: #e9e2c3;
  text-align: center;
  padding: 40px 24px;
  margin-top: 48px;
}

.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0 5px;
}
.event-gallery-item {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #efe0c9;
  aspect-ratio: 4 / 3;
}
.event-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}
.event-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .event-gallery-grid {
    gap: 15px;
  }
  .custom-map-wrapper {
    padding: 0;
  }
}

.rental-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin: 30px 0;
}
.rental-gallery-item {
  background: #e8e0d0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #efe0c9;
  aspect-ratio: 4 / 3;
  position: relative;
}
.rental-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.highlights-category {
  background: white;
  border-radius: 28px;
  padding: 24px;
  margin-bottom: 40px;
  border: 1px solid #efe0c9;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
  transition: transform 0.2s ease;
}
.highlights-category:hover {
  transform: translateY(-3px);
}
.highlights-category h3 {
  font-size: 1.5rem;
  color: #2c672f;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid #e0b354;
  padding-left: 18px;
}
.highlights-category h3 i {
  color: #d49b3a;
  font-size: 1.4rem;
}

/* Rental Package Card Styles */
.rental-package-card {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid #e8d8bc;
  margin-bottom: 30px;
}
.rental-package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 45px rgba(0,0,0,0.15);
}
.rental-package-content {
  padding: 28px 30px 35px;
  text-align: center;
}
.rental-package-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1f532f;
  background: #fef5e6;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 60px;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  box-shadow: inset 0 1px 2px white, 0 4px 12px rgba(0,0,0,0.05);
}
.rental-package-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a623a;
  margin-bottom: 28px;
  text-align: center;
}

@media (max-width: 640px) {
  .event-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .highlights-category h3 {
    font-size: 1.3rem;
  }
  .rental-gallery-grid {
    grid-template-columns: 1fr;
  }
  .rental-package-title {
    font-size: 1.5rem;
    padding: 6px 20px;
  }
}

/* ============================================ */
/* MOBILE OPTIMIZATION */
/* ============================================ */

/* Mobile First Breakpoints */
@media (max-width: 768px) {
  /* Header Mobile */
  .site-header {
    padding: 8px 16px;
  }
  
  .header-container {
    flex-direction: column;
    gap: 12px;
    padding: 0 12px;
  }
  
  .logo {
    padding: 6px 12px;
    gap: 8px;
  }
  
  .logo-img-wrapper {
    padding: 3px 8px;
  }
  
  .logo-img {
    height: 32px;
  }
  
  .logo-text h1 {
    font-size: 1rem;
    white-space: normal;
    text-align: left;
  }
  
  .logo-text .tagline {
    font-size: 0.5rem;
    white-space: normal;
  }
  
  .logo-text .location-badge {
    font-size: 0.45rem;
    white-space: normal;
  }
  
  .nav-links {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-links a {
    font-size: 0.7rem;
    padding: 4px 8px;
    white-space: nowrap;
  }
  
  /* Hero Section Mobile */
  .hero-section {
    border-radius: 0 0 24px 24px;
  }
  
  .hero-video-banner {
    height: 280px;
  }
  
  .hero-video-banner .hero-overlay-text {
    bottom: 10%;
  }
  
  .hero-video-banner .hero-overlay-text p {
    font-size: 0.8rem;
    padding: 6px 16px;
  }
  
  .hero-info-bar {
    padding: 12px 16px;
    gap: 16px;
  }
  
  .info-chip {
    gap: 6px;
    font-size: 0.75rem;
  }
  
  .info-chip i {
    font-size: 0.9rem;
  }
  
  .hero-grid {
    flex-direction: column;
    padding: 30px 16px;
    gap: 24px;
  }
  
  .hero-text {
    padding: 20px;
    order: 2;
  }
  
  .hero-text h2 {
    font-size: 1.5rem;
  }
  
  .hero-badge {
    font-size: 0.65rem;
    padding: 4px 12px;
  }
  
  .alpaca-side {
    order: 1;
    margin-top: 20px;
  }
  
  /* UPDATED MOBILE ALPACA STYLES - MOVED FURTHER DOWN */
  .alpaca-side-img {
    width: 200px;
    margin-top: 40px;
    margin-bottom: -30px;
  }
  
  .hours-container {
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
  }
  
  .hours-box {
    text-align: left;
    padding: 8px 0;
  }
  
  .hours-box h4 {
    font-size: 0.85rem;
  }
  
  .hours-box p {
    font-size: 0.9rem;
  }
  
  .btn-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-primary, .btn-whatsapp, .btn-outline {
    text-align: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  /* Container Mobile */
  .container {
    padding: 30px 16px;
  }
  
  .section-title {
    font-size: 1.4rem;
    padding-left: 16px;
    border-left-width: 5px;
    margin-bottom: 20px;
  }
  
  /* Video Grid Mobile */
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .video-card {
    border-radius: 20px;
  }
  
  .video-caption {
    padding: 12px;
    font-size: 0.8rem;
  }
  
  /* Pricing Table Mobile */
  .pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .pricing-table {
    min-width: 500px;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  
  .price-value {
    font-size: 0.9rem;
  }
  
  /* Flying Fox Table Mobile */
  .flying-table-wrapper {
    padding: 12px 16px;
  }
  
  .flying-fox-title {
    font-size: 0.9rem;
    padding: 6px 20px;
  }
  
  .flying-fox-table {
    min-width: 300px;
  }
  
  .flying-fox-table th,
  .flying-fox-table td {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  
  /* Attractions Grid Mobile */
  .attractions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card {
    border-radius: 24px;
  }
  
  .card-img {
    height: 180px;
  }
  
  .card-content {
    padding: 16px 18px 20px;
  }
  
  .card-content h3 {
    font-size: 1.3rem;
  }
  
  .card-content p {
    font-size: 0.85rem;
  }
  
  /* Gallery Grid Mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .gallery-item {
    border-radius: 20px;
  }
  
  .gallery-img {
    height: 200px;
  }
  
  .gallery-img-title {
    font-size: 0.65rem;
    padding: 3px 10px;
  }
  
  /* Event Gallery Mobile */
  .event-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .highlights-category {
    padding: 16px;
    margin-bottom: 24px;
  }
  
  .highlights-category h3 {
    font-size: 1.2rem;
    padding-left: 12px;
  }
  
  /* Rental Package Mobile */
  .rental-package-card {
    border-radius: 24px;
  }
  
  .rental-package-content {
    padding: 20px;
  }
  
  .rental-package-title {
    font-size: 1.2rem;
    padding: 5px 16px;
  }
  
  .rental-package-desc {
    font-size: 0.85rem;
  }
  
  /* Facilities Grid Mobile */
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .facility-item {
    padding: 16px;
  }
  
  .facility-item i {
    font-size: 1.8rem;
  }
  
  .facility-item h4 {
    font-size: 0.8rem;
  }
  
  /* FAQ Mobile */
  .faq-container {
    padding: 20px;
    margin: 20px 0;
  }
  
  .faq-question {
    font-size: 0.95rem;
  }
  
  .faq-answer {
    font-size: 0.85rem;
  }
  
  /* Map Mobile */
  .custom-map-img-large {
    border-radius: 16px;
  }
  
  .map-caption {
    font-size: 0.8rem;
    padding: 12px;
  }
  
  .google-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
    display: block;
    margin: 12px auto;
  }
  
  .google-btn:first-child {
    margin-bottom: 0;
  }
  
  .google-btn:last-child {
    margin-top: 0;
  }
  
  /* Contact Mobile */
  .contact-block {
    padding: 28px 20px;
    border-radius: 24px;
  }
  
  .phone-number {
    font-size: 1.5rem;
  }
  
  .email-address {
    font-size: 0.85rem;
    padding: 6px 16px;
  }
  
  .social-icon {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }
  
  /* Footer Mobile */
  footer {
    padding: 28px 16px;
    font-size: 0.8rem;
  }
  
  footer p {
    line-height: 1.5;
  }
  
  /* Buttons Mobile */
  .btn-back {
    padding: 8px 18px;
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
  
  /* Slider Mobile */
  .slider-wrapper {
    padding-bottom: 75%;
  }
  
  .slider-btn {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  
  .dot {
    width: 6px;
    height: 6px;
  }
  
  /* Service Cards Mobile */
  #app > div > div > div > div[style*="flex:1.5"] {
    padding: 20px !important;
  }
  
  #app > div > div > div > div[style*="flex:1.5"] h3 {
    font-size: 1.3rem !important;
  }
  
  #app > div > div > div > div[style*="flex:1.5"] p {
    font-size: 0.85rem !important;
  }
  
  /* Map Section Buttons Mobile Fix */
  .map-card .google-btn {
    margin: 8px auto;
  }
  
  .map-card div[style*="flex-wrap: wrap"] {
    flex-direction: column !important;
    gap: 12px !important;
  }
}

/* Extra Small Devices (iPhone SE, 375px and below) */
@media (max-width: 480px) {
  .site-header {
    padding: 6px 12px;
  }
  
  .nav-links {
    gap: 4px;
  }
  
  .nav-links a {
    font-size: 0.6rem;
    padding: 3px 6px;
  }
  
  .logo-img {
    height: 28px;
  }
  
  .logo-text h1 {
    font-size: 0.85rem;
  }
  
  .logo-text .tagline {
    font-size: 0.45rem;
  }
  
  .hero-video-banner {
    height: 220px;
  }
  
  .hero-grid {
    padding: 20px 12px;
  }
  
  .hero-text {
    padding: 16px;
  }
  
  .hero-text h2 {
    font-size: 1.2rem;
  }
  
  .alpaca-side-img {
    width: 160px;
    margin-top: 30px;
    margin-bottom: -20px;
  }
  
  .section-title {
    font-size: 1.2rem;
  }
  
  .container {
    padding: 20px 12px;
  }
  
  .hours-box p {
    font-size: 0.8rem;
  }
  
  .gallery-img {
    height: 180px;
  }
  
  .rental-package-title {
    font-size: 1rem;
  }
  
  .phone-number {
    font-size: 1.2rem;
  }
  
  .email-address {
    font-size: 0.75rem;
  }
  
  .social-icon {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
}

/* Landscape Mode Fix */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-video-banner {
    height: 200px;
  }
  
  .hero-grid {
    padding: 20px;
  }
  
  .hero-text {
    padding: 16px;
  }
  
  .alpaca-side-img {
    width: 140px;
    margin-top: 20px;
    margin-bottom: -15px;
  }
  
  .nav-links {
    gap: 8px;
  }
  
  .nav-links a {
    font-size: 0.65rem;
  }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
  .nav-links a,
  .btn-primary,
  .btn-whatsapp,
  .btn-outline,
  .btn-back,
  .google-btn,
  .social-icon,
  .faq-question,
  .gallery-item,
  .card,
  .event-gallery-item,
  .rental-gallery-item {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
  }
  
  .btn-primary:active,
  .btn-whatsapp:active,
  .google-btn:active,
  .social-icon:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
  }
  
  /* Better scrolling */
  .pricing-table-wrapper {
    overflow-x: auto;
  }
  
  /* Prevent zoom on input focus */
  input, select, textarea {
    font-size: 16px !important;
  }
}