﻿@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  color: #111;
  background-color: #A8E6B5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpolygon fill='%23b8e6c1' points='800 100 0 200 0 800 1600 800 1600 200'/%3E%3Cpolygon fill='%23c6e6cd' points='800 200 0 400 0 800 1600 800 1600 400'/%3E%3Cpolygon fill='%23d4e9d8' points='800 300 0 600 0 800 1600 800 1600 600'/%3E%3Cpolygon fill='%23e0ece2' points='1600 800 800 400 0 800'/%3E%3Cpolygon fill='%23ebf0ec' points='1280 800 800 500 320 800'/%3E%3Cpolygon fill='%23f5f6f5' points='533.3 800 1066.7 800 800 600'/%3E%3Cpolygon fill='%23FDFDFD' points='684.1 800 914.3 800 800 700'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 1000;
  font-size: 22px;
  background: linear-gradient(135deg, #014421, #FFD700);
  color: #fff;
  border: none;
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: none;
}

#backToTop:hover {
  background: linear-gradient(135deg, #FFD700, #014421);
  color: #fff;
  transform: scale(1.1);
}

/* ===== Top Bar ===== */
.top-bar {
  background: linear-gradient(rgba(0, 88, 42, 0.95), rgba(0, 88, 42, 0.95)), url('../images/exterior.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 8px 0;
  font-size: 14px;
  width: 100%;
  z-index: 9999;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.top-left, .top-right, .top-center {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.top-left a, .top-right a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 12px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  position: relative;
  z-index: 99999;
}

.top-left a:hover, .top-right a:hover {
  color: #D0FFD7;
}

.top-center {
  justify-content: center;
  width: 100%;
  margin-top: 5px;
}

.top-center a {
  font-size: 18px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.top-center a:hover {
  color: #A8E6B5;
  transform: scale(1.1);
}

.separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1040px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
    padding: 6px;
    gap: 3px;
  }
  .top-left {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
    padding: 5px 10px;
  }
  .top-right {
    width: 100%;
    text-align: right;
    justify-content: flex-end;
    padding: 5px 10px;
  }
  .top-center {
    display: flex;
    justify-content: center;
    margin: 5px 0;
  }
  .separator {
    display: none;
  }
}

@media (max-width: 820px) {
  .top-bar {
    padding: 6px 8px;
    font-size: 13px;
  }
  .top-left, .top-right {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
  }
  .top-left { text-align: left; }
  .top-right { text-align: right; }
  .top-center {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 6px;
  }
  .top-left a, .top-right a {
    font-size: 17px;
    margin-right: 6px;
  }
}

/* ===== Site Header ===== */
.site-header {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 6px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  max-width: 220px;
}

.logo img {
  height: 80px;
  width: auto;
  max-width: 80%;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  text-decoration: none;
  color: #2E2E2E;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #007A33;
}

.nav-link.active {
  color: #007A33 !important;
  border-bottom: 3px solid #007A33;
  padding-bottom: 3px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-link {
  display: block;
  color: #2E2E2E;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px;
  transition: color 0.3s ease;
}

.dropdown-link:hover {
  color: #007A33;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #2E2E2E;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background: #5ea379;
  color: #ffffff;
}

.contact-btn {
  background: linear-gradient(135deg, #007A33, #A8E6B5);
  color: #ffffff;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.contact-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #A8E6B5, #007A33);
  color: #ffffff;
}

.hamburger-menu {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #2E2E2E;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(246 246 244);
  color: #2E2E2E;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  z-index: 9999;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease-in-out;
}

.mobile-nav.active {
  display: flex;
}

.mobile-header {
  position: absolute;
  top: 160px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-header img {
  height: 70px;
  max-width: 180px;
}

.mobile-header .mobile-close {
  font-size: 1.6rem;
  color: #2E2E2E;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-header .mobile-close:hover {
  color: #007A33;
  transform: rotate(90deg);
}

.mobile-nav a {
  text-decoration: none;
  color: #2E2E2E;
  font-size: 20px;
  font-weight: 600;
  padding: 14px 0;
  text-align: center;
  width: 100%;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #007A33;
}

@media (max-width: 1024px) {
  .hamburger-menu { display: block; }
  .main-nav { display: none; }
  .logo img { height: 50px; }
}

@media (max-width: 820px) {
  .logo { padding: 4px 8px; max-width: 180px; }
  .logo img { height: 100px; }
}

@media (max-width: 600px) {
  .site-header { padding: 8px 12px; }
  .logo img { height: 35px; }
  .hamburger-menu { font-size: 1.6rem; }
  .contact-btn { font-size: 0.85rem; padding: 6px 12px; }
  .mobile-nav a { font-size: 1.2rem; padding: 10px 0; }
  .mobile-header .mobile-close { font-size: 1.5rem; }
  .mobile-header img { height: 50px; }
}

@media (max-width: 538px) {
  .logo { padding: 3px 6px; max-width: 160px; }
  .logo img { height: 100px; }
}

@media (max-width: 430px) {
  .logo { padding: 3px 5px; max-width: 150px; }
  .logo img { height: 32px; }
}

@media (max-width: 393px) {
  .logo { padding: 2px 4px; max-width: 140px; }
  .logo img { height: 100px; }
}

/* ===== Hero Slider ===== */
.hero-slider-boutique {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
  margin-top: -98px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.show {
  opacity: 1;
  z-index: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.45), rgba(0, 122, 51, 0.6));
  z-index: 0;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 90%;
  gap: 40px;
  color: #fff;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease forwards;
}

.hero-text {
  flex: 1;
  background: rgba(0, 122, 51, 0.7);
  padding: 35px 40px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  animation: fadeInLeft 1.2s ease both;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: left;
  color: #FDFDFD;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-align: left;
  color: #E7F7ED;
}

.btn-hero {
  padding: 12px 30px;
  background: linear-gradient(135deg, #007A33, #A8E6B5);
  color: #ffffff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background: linear-gradient(135deg, #A8E6B5, #007A33);
  color: #ffffff;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1.4s ease both;
}

.hero-image img {
  width: 600px;
  height: 600px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(0, 122, 51, 0.15), 0 12px 28px rgba(0, 0, 0, 0.5);
  border: 3px solid #ffffffcc;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #007A33;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.arrow:hover {
  background: #007A33;
  color: #ffffff;
}

.arrow.prev { left: 25px; }
.arrow.next { right: 25px; }

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-dots .dot.active {
  background: #007A33;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.hero-text,
.hero-image {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-text {
    padding: 20px;
    text-align: center;
  }
  .hero-text h1, .hero-text p {
    text-align: center;
  }
  .hero-text h1 { font-size: 2rem; }
  .hero-image img {
    width: 400px;
    height: 400px;
    margin-bottom: 20px;
  }
  .arrow { width: 36px; height: 36px; font-size: 1.5rem; }
}

/* ===== Wave Divider ===== */
.wave-divider {
  position: relative;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100'><path fill='%23A8E6B5' d='M924 38c-19 16-71 24-202 0-37-7-81-13-122-10-44 4-76 14-92 27l-8 10-8-10c-16-13-48-23-91-27-41-3-85 3-122 10C148 62 95 54 76 38c-8-7-16-16-16-27 0 13 5 23 15 31 29 24 98 30 205 10 77-14 179-6 209 19 5 4 11 12 11 17 0-5 5-12 11-17 31-25 132-33 210-19 106 20 175 14 204-10 10-8 15-18 15-30 0 10-8 19-16 26Z'/></svg>") no-repeat center;
  background-size: cover;
  z-index: 2;
}

/* ===== Welcome Section ===== */
.holidayinn-welcome-section {
  background: #fdfdfdb3;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  margin-top: -100px;
}

.holidayinn-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 2;
}

.holidayinn-text {
  flex: 1;
  max-width: 1400px;
}

.section-subtitle {
  font-size: 20px;
  color: #007A33;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 40px;
  color: #007A33;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

.section-description {
  font-size: 20px;
  color: #2F2F2F;
  margin-bottom: 15px;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.read-more-section {
  margin-top: 20px;
  position: relative;
}

#read-more-toggle {
  display: none;
}

.read-more-button {
  display: inline-block;
  background: linear-gradient(to right, #007A33, #A8E6B5);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.read-more-button:hover {
  background: linear-gradient(to right, #A8E6B5, #007A33);
  color: #ffffff;
}

.read-more-content {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all 0.5s ease;
  margin-top: 0;
  padding: 0;
  color: #2F2F2F;
  font-size: 20px;
  line-height: 1.6;
}

#read-more-toggle:checked ~ .read-more-content {
  max-height: 2000px;
  visibility: visible;
  padding-top: 20px;
}

.read-more-content h3 {
  font-size: 24px;
  color: #007A33;
  margin-top: 25px;
  margin-bottom: 8px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .holidayinn-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section-title { font-size: 28px; }
  .section-description { font-size: 16px; }
  .read-more-content { font-size: 14px; }
  .read-more-button { width: 100%; }
  .read-more-content h3 { font-size: 20px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 24px; }
  .section-description { font-size: 14px; }
  .read-more-button { font-size: 14px; padding: 8px 14px; }
  .read-more-content { font-size: 13px; }
  .read-more-content h3 { font-size: 18px; }
}

/* ===== Booking Forms ===== */
.booking-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  background: #baf0c4;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.booking-field {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  min-width: 160px;
  flex-grow: 1;
}

.booking-field label {
  font-weight: 600;
  color: #183b2d;
  margin-bottom: 6px;
  font-size: 14px;
}

.booking-field label i {
  color: #f9c200;
  margin-right: 6px;
}

.booking-field select {
  padding: 8px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  cursor: pointer;
}

.welcome-booking-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  background: #a8e6b5;
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 1400px;
  width: 100%;
  border-radius: 12px;
  margin: 0 auto;
}

.welcome-form-group {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 14px;
  flex: 1;
  min-width: 180px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.welcome-form-group label {
  font-size: 16px;
  color: #014421;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.welcome-form-group i {
  color: #FFD700;
}

.welcome-form-group input,
.welcome-form-group select {
  background: transparent;
  border: none;
  color: #014421;
  font-size: 15px;
  outline: none;
  margin-top: 5px;
  font-weight: 500;
  text-align: center;
}

.welcome-booking-btn {
  background: linear-gradient(to right, #007A33, #A8E6B5);
  color: #ffffff;
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.welcome-booking-btn:hover {
  background: linear-gradient(to left, #007A33, #A8E6B5);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
}

@media (max-width: 820px) {
  .welcome-booking-form {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    padding: 18px;
  }
  .welcome-form-group { width: 100%; min-width: unset; }
  .welcome-booking-btn { width: 100%; }
}

@media (max-width: 538px) {
  .welcome-booking-form { padding: 15px; }
  .welcome-form-group label { font-size: 14px; }
  .welcome-booking-btn { padding: 12px; font-size: 14px; }
}

/* ===== Amenities Section (Home) ===== */
.holiday-inn-amenities {
  position: relative;
  padding: 40px 20px;
  text-align: center;
  background: #FDFDFD;
  z-index: 1;
  overflow: hidden;
}

.holiday-inn-amenities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgb(255 255 255 / 82%), rgba(255, 255, 255, 0.96)), url(../images/exterior.webp) center center / cover no-repeat;
  z-index: 0;
  opacity: 1;
}

.holiday-inn-amenities > * {
  position: relative;
  z-index: 2;
}

.holiday-inn-amenities-header h5 {
  font-size: 14px;
  color: #2F2F2F;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
}

.holiday-inn-amenities-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #007A33;
  margin-bottom: 12px;
}

.holiday-inn-amenities-header p {
  max-width: 1200px;
  margin: 0 auto 30px;
  color: #444;
  font-size: 18px;
}

.holiday-inn-divider-icon {
  font-size: 20px;
  color: #FFA500;
  margin: 20px 0;
}

.holiday-inn-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1138px;
  margin: 0 auto;
  padding-top: 20px;
}

.holiday-inn-amenity-box {
  text-align: center;
  padding: 20px;
}

.holiday-inn-amenity-box i {
  font-size: 40px;
  color: #007A33;
  margin-bottom: 15px;
}

.holiday-inn-amenity-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1A1A1A;
}

.holiday-inn-amenity-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.holiday-inn-view-all-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(to right, #007A33, #A8E6B5);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 122, 51, 0.3);
}

.holiday-inn-view-all-btn:hover {
  background: linear-gradient(to right, #A8E6B5, #007A33);
  box-shadow: 0 6px 14px rgba(0, 122, 51, 0.4);
}

/* ===== Room Section ===== */
.room-section {
  padding: 30px 20px;
  text-align: center;
  background: linear-gradient(to top, #8cd49f8f, #ffffff);
}

.room-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #007A33;
  margin-bottom: 12px;
}

.room-header p {
  color: #3c3c3c;
  margin-bottom: 30px;
}

.btn-see-more {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(to right, #007A33, #A8E6B5);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-see-more:hover {
  background: linear-gradient(to left, #007A33, #A8E6B5);
  color: #fff;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.room-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border: 1px solid #d9e5dd;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.room-img {
  position: relative;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: auto;
  display: block;
}

.price-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #FFD700;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  color: #014421;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.price-tag small {
  font-weight: normal;
  margin-left: 10px;
  font-size: 14px;
  color: #014421;
}

.room-details {
  padding: 20px;
  text-align: left;
}

.room-details h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #014421;
}

.room-amenities {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: #333;
}

.room-amenities li {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f6f8f3;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* ===== Attractions Section Alt ===== */
.attractions-section-alt {
  padding: 40px 20px;
  background: linear-gradient(to bottom, #8cd49f8c, #007a33d9);
  background-blend-mode: multiply;
  backdrop-filter: blur(1px);
  color: #ffffff;
}

.attractions-alt-container {
  max-width: 1200px;
  margin: auto;
}

.attractions-heading {
  text-align: center;
  margin-bottom: 50px;
}

.attractions-heading h5 {
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.attractions-heading h2 {
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: bold;
  color: #004d2d;
}

.attractions-heading p {
  font-size: 18px;
  max-width: 1200px;
  margin: 0 auto;
  color: #3c3c3c;
  line-height: 1.7;
}

.divider-icon {
  font-size: 24px;
  color: #ffffff;
  margin-top: 20px;
}

.attraction-row {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 40px;
  gap: 30px;
  flex-wrap: wrap;
}

.attraction-row.reverse {
  flex-direction: row-reverse;
}

.attraction-image {
  flex: 1 1 45%;
}

.attraction-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.attraction-text {
  flex: 1 1 50%;
}

.attraction-text h3 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.attraction-text p {
  font-size: 19px;
  color: #fff;
  line-height: 1.7;
}

.badge {
  display: inline-block;
  background-color: #ffffff;
  color: #007A33;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .attraction-row, .attraction-row.reverse {
    flex-direction: column;
    text-align: center;
  }
  .attraction-text { padding-top: 20px; }
}

/* ===== Video Showcase ===== */
.video-showcase-section {
  background: linear-gradient(to top, #8cd49f8f, #007a33d9);
  padding: 0px 20px;
}

.video-showcase-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.video-box {
  flex: 1 1 450px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-content {
  flex: 1 1 500px;
}

.video-subtitle {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 14px;
}

.video-title {
  font-size: 36px;
  color: #012d1e;
  margin-bottom: 16px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.video-description {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 25px;
}

.watch-more-btn {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(to right, #007A33, #A8E6B5);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 122, 51, 0.3);
}

.watch-more-btn:hover {
  background: linear-gradient(to right, #A8E6B5, #007A33);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 122, 51, 0.4);
}

@media (max-width: 768px) {
  .video-showcase-container {
    flex-direction: column;
    text-align: center;
    margin-bottom: -200px;
  }
  .video-box {
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .video-box iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
  }
  .video-content { padding-top: 0; }
}

/* ===== Gallery & Map Section ===== */
.gallery-map-section-enhanced {
  padding: 60px 0;
  background: linear-gradient(to bottom, #8cd49f8f, #ffffff00);
}

.gallery-map-flexbox {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.gallery-side {
  flex: 1 1 50%;
  padding: 40px;
  background: #ffffff;
}

.gallery-header h5 {
  font-size: 14px;
  color: #007A33;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.gallery-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #014421;
  margin-bottom: 10px;
}

.accent-line {
  width: 50px;
  height: 4px;
  background-color: #A8E6B5;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.gallery-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 122, 51, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.map-side {
  flex: 1 1 50%;
  padding: 40px;
  background-color: #fefefe;
}

.map-header h5 {
  font-size: 14px;
  color: #007A33;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.map-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #014421;
  margin-bottom: 10px;
}

.map-side iframe {
  width: 100%;
  height: 360px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .gallery-map-section-enhanced { margin-top: 50px; }
  .gallery-map-flexbox { flex-direction: column; }
  .gallery-side, .map-side { flex: 1 1 100%; }
  .map-side iframe { min-height: 300px; }
}

/* ===== Footer ===== */
.aligned-footer {
  background: linear-gradient(to bottom right, #eafff2, #d2f5de, #b4e4c6, #a1d9b2);
  color: #014421;
  padding: 70px 6% 40px;
  position: relative;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='1600' height='400' viewBox='0 0 1600 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23eafff2'/%3E%3Cstop offset='33%25' stop-color='%23d2f5de'/%3E%3Cstop offset='66%25' stop-color='%23b4e4c6'/%3E%3Cstop offset='100%25' stop-color='%239ed171'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23grad)' d='M0 0 C600 200 1000 -100 1600 100 L1600 400 L0 400 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  margin-top: -50px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
  border-bottom: 2px solid #b8e2c0;
  padding-bottom: 25px;
}

.footer-logo img {
  max-width: 120px;
  height: auto;
  display: block;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.25));
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  background: radial-gradient(circle, #a8e6b5 0%, #fffaf2 100%);
  border-radius: 50%;
  color: #014421;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-social-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(0, 122, 51, 0.4);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.footer-contact, .footer-links, .footer-follow {
  flex: 1;
  min-width: 250px;
}

.footer-contact h4, .footer-links h4, .footer-follow h4 {
  font-size: 24px;
  color: #014421;
  position: relative;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-contact h4::after, .footer-links h4::after, .footer-follow h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, #007a33, #a8e6b5);
  border-radius: 2px;
}

.footer-contact p, .footer-links ul li a, .footer-bottom {
  color: #014421;
  font-size: 17px;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.footer-links ul li {
  position: relative;
  padding-left: 20px;
}

.footer-links ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #007a33;
}

.footer-links ul li a {
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  transform: translateX(5px);
  color: #007a33;
}

.footer-bottom {
  background: #014421;
  color: #ffffff;
  text-align: center;
  padding: 18px 0;
  font-size: 18px;
  margin-top: 50px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #a8e6b5;
}

.title {
  font-weight: 600;
  font-size: 22px;
  background: #014421;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.title-link {
  font-weight: 700;
  font-size: 22px;
  background: #014421;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.title-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, #007a33, #a8e6b5);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.title-link:hover::after {
  width: 100%;
}

.cgsl {
  background: #014421;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cgsl:hover {
  background: #007a33;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Inner Hero Section ===== */
.inner-hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px 100px;
  position: relative;
  text-align: center;
  color: #ffffff;
  margin-top: -100px;
}

.inner-hero-overlay {
  background: rgba(0, 102, 51, 0.75);
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  margin-top: 40px;
}

.inner-subtitle {
  font-size: 1.3rem;
  color: #FFCC33;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.inner-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .inner-title { font-size: 2rem; }
  .inner-subtitle { font-size: 1.1rem; }
}

/* ===== Amenities Inner Section ===== */
.amenities-inner-section {
  background: linear-gradient(to bottom, #f6fefb, #007a33d9);
  text-align: center;
  margin-top: -100px;
}

.amenities-inner-header h2 {
  font-size: 42px;
  color: #004225;
  margin-bottom: 15px;
  margin-top: 15px;
}

.amenities-inner-header p {
  font-size: 18px;
  color: #2c2c2c;
  max-width: 750px;
  margin: 0 auto 30px;
}

.amenities-icon-bar {
  margin-top: 10px;
  margin-bottom: 50px;
}

.amenities-icon-bar em {
  font-size: 26px;
  color: #148642;
  margin: 0 12px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}

.amenity-card {
  background: #ffffff;
  width: 300px;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  border-left: 5px solid #148642;
}

.amenity-card:hover {
  transform: translateY(-8px);
  border-left-color: #006633;
}

.amenity-icon {
  font-size: 40px;
  color: #004225;
  margin-bottom: 18px;
}

.amenity-title {
  font-size: 25px;
  font-weight: 600;
  color: #004225;
  margin-bottom: 10px;
}

.amenity-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
}

.amenities-footer-banner {
  background: linear-gradient(to right, #004225, #006633);
  padding: 35px 20px;
  border-radius: 15px;
  color: #fff;
  max-width: 900px;
  margin: auto;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  font-size: 30px;
}

.trust-row em {
  margin-right: 10px;
}

.explore-rooms-btn {
  background: #FFCC33;
  color: #004225;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.explore-rooms-btn:hover {
  background: #006633;
  color: #fff;
}

.well {
  font-size: 18px;
  color: #444444;
  max-width: 1300px;
  margin: 0 auto 30px;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 768px) {
  .amenity-card { width: 90%; }
  .trust-row { flex-direction: column; gap: 15px; }
  .amenities-inner-header h2 { font-size: 32px; }
}

/* ===== Additional Amenities Section ===== */
.additional-amenities-section {
  padding: 0px 20px;
  background: linear-gradient(to top, #f6fefb, #007a33d9);
  color: #333333;
  max-width: 1600px;
  margin: 0 auto;
}

.additional-amenities-section .section-title5 {
  font-size: 2.6rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 50px;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 12px #148642;
}

.amenities-list-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
}

.amenities-category {
  flex: 1 1 300px;
  background: #ffffff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
  color: #333333;
  border-left: 5px solid #148642;
}

.amenities-category h3 {
  font-size: 1.8rem;
  color: #004225;
  margin-bottom: 20px;
  font-weight: 900;
  border-bottom: 3px solid #006633;
  padding-bottom: 8px;
}

.amenities-category ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444444;
}

.amenities-category ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-weight: 500;
  color: #444444;
}

.amenities-category ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 4px;
  color: #004225;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

@media (max-width: 1024px) {
  .amenities-list-container { gap: 35px 40px; }
  .amenities-category { flex: 1 1 45%; }
}

@media (max-width: 600px) {
  .amenities-list-container { gap: 30px 30px; }
  .amenities-category { flex: 1 1 100%; }
}

/* ===== Things To Do ===== */
.things-to-do {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(to bottom, #f6fefb, #007a33d9);
  margin-top: -100px;
}

.things-title {
  font-size: 3rem;
  color: #004225;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 66, 37, 0.3);
  margin-top: 40px;
}

.things-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: #FFCC33;
  margin: 10px auto;
  border-radius: 2px;
}

.things-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.things-slider {
  flex: 1;
  max-width: 50%;
  min-width: 300px;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.custom-hero-slide {
  display: none;
  position: relative;
  background-size: cover;
  background-position: center;
  height: 400px;
  border-radius: 8px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.custom-hero-slide.active {
  display: block;
}

.custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(0, 66, 37, 0.6);
}

.custom-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  padding: 14px 24px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  max-width: 90%;
  box-shadow: 0 0 12px rgba(255, 204, 51, 0.4);
}

.custom-hero-content h1 {
  font-size: 24px;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #FFCC33;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.custom-hero-content p {
  font-size: 17px;
  margin-bottom: 10px;
  color: #f5f5f5;
  font-weight: 500;
  line-height: 1.5;
}

.custom-hero-btn {
  margin-top: 8px;
  padding: 10px 22px;
  background-color: #006633;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 66, 37, 0.4);
}

.custom-hero-btn:hover {
  background-color: #004225;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 66, 37, 0.6);
}

.things-content-box {
  flex: 1;
  max-width: 40%;
  min-width: 300px;
  padding: 25px;
  color: #333;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.content-inner h3 {
  font-size: 32px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #004225;
  text-shadow: 0 0 6px rgba(0, 66, 37, 0.2);
}

.content-inner p {
  font-size: 18px;
  margin-bottom: 14px;
  color: #444;
  line-height: 1.6;
}

.content-inner ul {
  list-style: none;
  padding: 0;
  color: #555;
}

.content-inner ul li {
  font-size: 15px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
  font-weight: 600;
  color: #004225;
}

.content-inner ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FFCC33;
  font-weight: 900;
  font-size: 20px;
}

@media (max-width: 1024px) {
  .things-slider { max-width: 80%; margin-bottom: 20px; }
  .things-content-box { max-width: 80%; margin: 0 auto; }
  .custom-hero-content h1 { font-size: 20px; }
  .custom-hero-content p { font-size: 14px; }
  .custom-hero-slide { height: 450px; }
}

@media (max-width: 768px) {
  .things-container { flex-direction: column; }
  .things-slider, .things-content-box { max-width: 100%; margin: 0 auto; }
  .custom-hero-slide { height: 450px; }
  .custom-hero-content h1 { font-size: 20px; }
  .custom-hero-content p { font-size: 14px; }
  .custom-hero-btn { font-size: 12px; }
}

@media (max-width: 480px) {
  .things-slider, .things-content-box { max-width: 90%; }
  .custom-hero-slide { height: 450px; }
  .custom-hero-content h1 { font-size: 18px; }
  .custom-hero-content p { font-size: 12px; }
  .custom-hero-btn { font-size: 12px; padding: 6px 12px; }
}

/* ===== Things To Do Section (Cards) ===== */
.things-to-do-section {
  padding: 60px 15px 100px;
  background: linear-gradient(to top, #f6fefb, #007a33d9);
  color: #004225;
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
}

.things-to-do-section .section-title1 {
  font-size: 2.6rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 50px;
  text-transform: uppercase;
  text-shadow: 0 0 12px #148642;
  text-align: center;
}

.things-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  justify-content: center;
}

.things-card {
  flex: 1 1 300px;
  background: #ffffff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
  color: #004225;
  text-align: left;
  transition: transform 0.3s ease;
  border-left: 4px solid #148642;
}

.things-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  border-left-color: #006633;
}

.things-card h3 {
  font-size: 1.8rem;
  color: #004225;
  margin-bottom: 20px;
  font-weight: 800;
  border-bottom: 3px solid #006633;
  padding-bottom: 8px;
}

.things-card ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #444444;
  font-weight: 500;
}

.things-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: #004225;
}

.things-card ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 5px;
  color: #148642;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

@media (max-width: 1024px) {
  .things-cards-grid { gap: 35px 40px; }
  .things-card { flex: 1 1 45%; }
}

@media (max-width: 600px) {
  .things-cards-grid { gap: 30px 30px; }
  .things-card { flex: 1 1 100%; }
}

/* ===== Custom Location Section ===== */
.custom-location-section {
  padding: 60px 20px;
  background: #f6fefb;
  margin-top: -100px;
}

.custom-location-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  border-radius: 12px;
}

.custom-location-header {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.custom-location-title {
  font-size: 3rem;
  color: #004225;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.custom-location-text {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}

.custom-location-description {
  font-size: 20px;
  color: #444444;
  margin-bottom: 20px;
  line-height: 1.7;
}

.custom-coordinates-box {
  background-color: #fffbea;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FFCC33;
}

.custom-coordinates-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #004225;
  font-weight: 700;
}

.custom-coordinate-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-coordinate-list li {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.custom-coordinate-list em {
  color: #FFCC33;
  margin-right: 8px;
}

.custom-directions-form {
  margin-top: 20px;
}

.custom-input-field {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background-color: #fff;
  color: #004225;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s ease;
}

.custom-input-field::placeholder {
  color: #888;
}

.custom-input-field:focus {
  border-color: #004225;
  outline: none;
  box-shadow: 0 0 8px rgba(0, 66, 37, 0.2);
}

.custom-directions-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #004225, #FFCC33);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.custom-directions-btn:hover {
  background: linear-gradient(to right, #FFCC33, #004225);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.custom-location-image {
  flex: 1;
  max-width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.custom-image:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .custom-location-container { flex-direction: column; }
  .custom-location-text, .custom-location-image { max-width: 100%; }
  .custom-location-title { font-size: 32px; }
}

/* ===== Contact Hero Banner (merged) ===== */
.contact-hero-banner {
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
  margin-top: -100px;
}

.contact-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.custom-contact-subtitle {
  font-size: 18px;
  color: #FFCC33;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
  text-shadow: 0 0 4px rgba(255, 204, 51, 0.4);
}

.custom-contact-title {
  font-size: 2.5rem;
  color: #004225;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
  position: relative;
  text-decoration: none;
  letter-spacing: 1px;
}

.custom-contact-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #004225, #FFCC33);
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.custom-contact-description {
  font-size: 20px;
  color: #444444;
  font-weight: 400;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
  max-width: 1100px;
  margin: 30px auto 0;
}

.custom-contact-description strong {
  color: #004225;
  font-weight: 600;
}

.custom-contact-description a {
  color: #004225;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.custom-contact-description a:hover {
  color: #FFCC33;
  text-decoration: none;
}

/* ===== Futuristic Contact Section (merged) ===== */
.futuristic-contact-section {
  padding: 40px 20px 80px;
  background: #f9f9f9;
}

.futuristic-contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.futuristic-contact-info {
  flex: 1;
  max-width: 520px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
  color: #004225;
}

.futuristic-contact-info p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.futuristic-info-block {
  margin-top: 20px;
}

.futuristic-info-block h2,
.futuristic-info-block h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #004225;
  font-weight: 700;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.futuristic-info-block a {
  color: #004225;
  font-weight: bold;
  text-decoration: none;
}

.futuristic-info-block a:hover {
  color: #FFCC33;
  text-decoration: underline;
}

.futuristic-image-block {
  flex: 1;
  max-width: 450px;
}

.contact-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-image:hover {
  transform: scale(1.03);
}

/* ===== new-facility-title (merged) ===== */
.new-facility-title {
  color: #004225;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.new-facility-title:hover {
  color: #FFCC33;
  text-decoration: none;
}

/* ===== Inner Page Container (merged) ===== */
.inner-page-container {
  width: 100%;
  box-sizing: border-box;
  padding: 130px 10%;
  background: #f9f9f9;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  margin-top: -99px;
  margin-bottom: 40px;
  transition: transform 0.3s ease-in-out;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-title {
  font-size: 48px;
  font-weight: bold;
  color: #004225;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.page-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  background-color: #004225;
  margin: 20px auto;
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 0 5%;
  flex-wrap: wrap;
}

.description {
  flex: 0 0 55%;
  line-height: 1.8;
  color: #555;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.description p {
  margin-bottom: 20px;
}

.image-gallery {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  object-fit: cover;
  height: 300px;
}

.gallery-image:hover {
  transform: scale(1.05);
}

.image-gallery .gallery-image:last-child {
  height: 329px;
}

.call-to-action {
  text-align: center;
  margin-top: 40px;
}

.cta-button {
  padding: 18px 35px;
  background-color: #004225;
  color: white;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: #FFCC33;
  color: #004225;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
  transform: scale(1);
}

/* ===== Trade Center (merged) ===== */
.trade-center-content {
  width: 100%;
  box-sizing: border-box;
  padding: 130px 10%;
  background: #f9f9f9;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  margin-top: -99px;
  margin-bottom: 40px;
  transition: transform 0.3s ease-in-out;
}

.header-section {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.trade-title {
  font-size: 48px;
  font-weight: bold;
  color: #004225;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.trade-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  background-color: #004225;
  margin: 20px auto;
}

.content-section {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 0 5%;
  flex-wrap: wrap;
}

.text-description {
  flex: 0 0 100%;
  line-height: 1.8;
  color: #555;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.text-description p {
  margin-bottom: 20px;
}

.cta-section {
  text-align: center;
  margin-top: 40px;
}

.cta-link {
  padding: 18px 35px;
  background-color: #004225;
  color: white;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  letter-spacing: 1px;
}

.cta-link:hover {
  background-color: #FFCC33;
  color: #004225;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-link:active {
  transform: scale(1);
}

/* ===== Cookie Consent (merged) ===== */
.cc-window.cc-banner {
  background-color: #f0f6f9 !important;
  border-top: 4px solid #004225 !important;
}

.cc-window.cc-banner .cc-btn {
  background-color: #004225 !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  padding: 8px 16px !important;
  font-size: 14px;
  text-transform: uppercase;
}

.cc-window.cc-banner .cc-btn:hover {
  background-color: #FFCC33 !important;
  color: #004225 !important;
}

.cc-window.cc-banner .cc-reject {
  background-color: transparent !important;
  color: #004225 !important;
  text-decoration: underline;
}

/* ===== Accessibility Banner (merged) ===== */
.accessibility-banner {
  background: #004225;
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 500;
  border-top: 3px solid #FFCC33;
  border-bottom: 3px solid #FFCC33;
}

.accessibility-banner a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  margin-left: 6px;
}

.accessibility-banner a:hover {
  text-decoration: underline;
}

.accessibility-banner em {
  color: #ffffff;
  margin-left: 8px;
  margin-right: 4px;
}

/* ===== Coming Soon Video ===== */
.coming-soon-video {
  width: 100%;
  height: 315px;
  background: linear-gradient(rgba(0, 66, 37, 0.8), rgba(0, 66, 37, 0.8)),
              url('/assets/images/frontdesk.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  position: relative;
}

.coming-content i {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 15px;
}

.coming-content h3 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.coming-content p {
  color: #f1f1f1;
  font-size: 14px;
  margin: 0;
}

/* ===== Custom Contact Header ===== */
.custom-contact-header {
  text-align: center;
  padding: 20px 20px;
  background-color: #f9f9f9;
}

/* ===== Contact Section Hero ===== */
.contact-section-hero {
  background: #f9f9f9;
  padding: 20px 20px;
}

.contact-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.contact-info-box {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
  box-sizing: border-box;
}

.contact-info-box h2 {
  font-size: 2.6rem;
  color: #004225;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-box p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.8;
  font-weight: 400;
}

.contact-details-area {
  background: #f9f9f9;
  padding: 22px;
  border-left: 5px solid #004225;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details-area:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 66, 37, 0.25);
}

.contact-details-area h4 {
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-details-area ul {
  list-style: none;
  padding-left: 0;
  color: #000000;
}

.contact-details-area ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-details-area a {
  color: #004225;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details-area a:hover {
  color: #FFCC33;
  text-decoration: underline;
}

.contact-image-box {
  flex: 1;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid #004225;
  min-width: 300px;
  min-height: 400px;
}

.contact-image-box .contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* ===== FAQ Section (merged) ===== */
.faq-section {
  padding: 40px 20px;
  color: #333;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
  box-sizing: border-box;
}

.faq-container, .faq-header, .faq-grid {
  width: 100%;
  box-sizing: border-box;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-title {
  font-size: 3rem;
  font-weight: 800;
  color: #004225;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-shadow: 0 0 5px rgba(0, 66, 37, 0.2);
}

.faq-subtitle {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 50px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
}

.faq-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #004225;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.faq-item h2 {
  font-size: 1.8rem;
  color: #004225;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #004225;
}

.faq-item p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

.faq-item a {
  color: #004225;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.faq-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FFCC33;
  transition: width 0.3s ease;
}

.faq-item a:hover::after {
  width: 100%;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  color: #004225;
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.faq-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #004225, #FFCC33);
  border-radius: 2px;
}

.faq-header p {
  color: #000000;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 25px;
  max-width: 1200px;
}

.faq-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 4px solid #004225;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
  padding: 25px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: #004225;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 18px;
}

.faq-question-text {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.faq-answer {
  padding: 25px;
  position: relative;
}

.faq-answer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25px;
  right: 25px;
  height: 1px;
  background: linear-gradient(to right, transparent, #004225, transparent);
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}

.faq-answer a {
  color: #004225;
  font-weight: 600;
  text-decoration: none !important;
}

.faq-answer a:hover {
  color: #FFCC33;
}

.faq-answer .fa-caret-right {
  color: #004225;
  margin-right: 8px;
}

/* ===== Sitemap Section (merged) ===== */
.sitemap-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff, #f9f9f9, #ffffff);
  text-align: center;
  margin-top: -100px;
}

.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sitemap-title {
  font-size: 3rem;
  color: #004225;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: 0 0 6px rgba(0, 66, 37, 0.4);
}

.sitemap-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #004225, #FFCC33);
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.sitemap-subtitle {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 50px;
  font-weight: 400;
  line-height: 1.8;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sitemap-block {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(10, 32, 80, 0.08);
  border: 1px solid rgba(0, 66, 37, 0.25);
}

.sitemap-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 66, 37, 0.2);
  border-color: #FFCC33;
}

.sitemap-block h2 {
  font-size: 1.8rem;
  color: #004225;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-block ul li {
  margin-bottom: 15px;
}

.sitemap-block ul li a {
  font-size: 18px;
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
  font-weight: 500;
}

.sitemap-block ul li a i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #004225;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

.sitemap-block ul li a em {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #004225;
  transition: color 0.3s ease;
}

.sitemap-block ul li a:hover {
  color: #FFCC33;
  transform: translateX(5px);
}

.sitemap-block ul li a:hover i {
  color: #FFCC33;
}

/* ===== Location Section Hero ===== */
.location-section-hero {
  background: #f9f9f9;
  padding: 60px 20px;
}

.location-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.location-info-box {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
  box-sizing: border-box;
}

.location-info-box h2 {
  font-size: 2.6rem;
  color: #004225;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-info-box p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.8;
}

.coordinates-area,
.directions-area {
  background: #f9f9f9;
  padding: 22px;
  border-left: 5px solid #004225;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coordinates-area:hover,
.directions-area:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 66, 37, 0.25);
}

.coordinates-area h4,
.directions-area h4 {
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #000000;
}

.coordinates-area ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.directions-area form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
}

.directions-area form button {
  width: 100%;
  padding: 12px;
  background: #004225;
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.directions-area form button:hover {
  background: #FFCC33;
  color: #004225;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 204, 51, 0.25);
}

.location-map-box {
  flex: 1;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid #004225;
  min-height: 400px;
  min-width: 300px;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== New Attraction App ===== */
.New-attraction-app-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.New-attraction-attraction-quality-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .New-attraction-attraction-quality-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .New-attraction-attraction-quality-cards {
    grid-template-columns: repeat(6, 1fr);
  }
  .New-attraction-card:nth-child(-n+3) { grid-column: span 2; }
  .New-attraction-card:nth-child(4) { grid-column: 2 / span 2; }
  .New-attraction-card:nth-child(5) { grid-column: 4 / span 2; }
}

.New-attraction-card {
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.New-attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 66, 37, 0.1);
}

.New-attraction-card-image-container {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.New-attraction-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.New-attraction-card:hover .New-attraction-card-image {
  transform: scale(1.05);
}

.New-attraction-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.New-attraction-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #004225;
}

.New-attraction-card-description {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.New-attraction-card-details {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #000000;
}

.New-attraction-card-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.New-attraction-card-details li + li {
  margin-top: 0.75rem;
}

.New-attraction-card-details i {
  color: #004225;
  font-size: 16px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.New-attraction-card-details a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.New-attraction-card-details a:hover {
  color: #FFCC33;
}

/* ===== Nearby Attractions Section ===== */
.attractions-section {
  background: white;
  padding: 39px 8% 80px 8%;
  color: #333;
}

.attractions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.attractions-title {
  font-size: 2.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
  position: relative;
}

.attractions-title span {
  color: #004225;
}

.attractions-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #004225;
  display: block;
  margin: 12px 0 0;
  border-radius: 2px;
}

.attractions-container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 40px 0;
  max-width: 1500px;
}

.attractions-container .category {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex: 1;
}

.attractions-container .category:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.attractions-container .category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #004225;
}

.attractions-container .category-header {
  padding: 20px;
  background-color: #004225;
  color: white;
  text-align: center;
}

.attractions-container .category-header h2, .title2 {
  color: white;
  margin: 0;
  font-size: 24px;
}

.attractions-container .attraction-list {
  padding: 20px;
}

.attractions-container .attraction {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.attractions-container .attraction:last-child {
  border-bottom: none;
}

.attractions-container .attraction-name, .title3-attraction {
  margin-bottom: 4px;
  font-size: 16px;
  color: #000000;
  padding-right: 15px;
}

.attractions-container .attraction-type {
  color: #000000;
}

.attractions-container .attraction-distance {
  background-color: #004225;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  min-width: 70px;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}

.attractions-container .attraction:hover .attraction-distance {
  background-color: #FFCC33;
  color: #004225;
  transform: scale(1.05);
}

/* ===== Gallery Container & Lightbox ===== */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 0px auto;
  padding: 20px;
  margin-top: -40px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

#lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active #lightbox-img {
  transform: scale(1);
}

#lightbox-caption {
  text-align: center;
  color: #f1f1f1;
  padding: 10px 0;
  margin-top: 10px;
  font-size: 1.1em;
  transition: opacity 0.4s ease-in-out;
}

.close-btn, .prev-btn, .next-btn {
  position: absolute;
  color: white;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  transition: color 0.2s ease;
}

.close-btn:hover, .prev-btn:hover, .next-btn:hover {
  color: #bbb;
}

.close-btn {
  top: 20px;
  right: 35px;
  font-size: 40px;
}

.prev-btn, .next-btn {
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  padding: 16px;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }


/* =================================== */
/* ===== RESPONSIVENESS (TABLET) ===== */
/* =================================== */
@media (max-width: 1024px) {
  .content-wrapper { flex-direction: column; padding: 0 5%; }
  .description, .image-gallery { flex: 0 0 100%; }
  .description { margin-bottom: 20px; }
  .cta-button { width: 70%; font-size: 20px; padding: 16px 30px; }
  .page-title, .trade-title { font-size: 36px; }

  .contact-wrapper-hero, .location-wrapper-hero { flex-direction: column; }
  .contact-info-box, .location-info-box { padding: 40px 25px; }
  .contact-image-box, .location-map-box { min-height: 300px; height: 300px; border-left: none; }
  .contact-info-box h2, .location-info-box h2 { font-size: 2rem; }
  .contact-info-box p { font-size: 1rem; }

  .faq-title { font-size: 2.5rem; }
  .faq-item h2 { font-size: 1.6rem; }
  .faq-item p { font-size: 1rem; }
  
  .sitemap-links { grid-template-columns: 1fr 1fr; }

  .New-attraction-attraction-quality-cards { grid-template-columns: repeat(2, 1fr); }
  .New-attraction-card:nth-child(-n+3),
  .New-attraction-card:nth-child(4),
  .New-attraction-card:nth-child(5) { grid-column: auto; }

  .attractions-container { grid-template-columns: 1fr; }
}

/* ================================= */
/* ===== RESPONSIVENESS (MOBILE) ===== */
/* ================================= */
@media (max-width: 768px) {
  .custom-contact-title { font-size: 32px; }
  .contact-hero-banner, .futuristic-contact-section { padding: 40px 20px; }
  .futuristic-contact-container { flex-direction: column; }
  .futuristic-contact-info, .futuristic-image-block { max-width: 100%; }
  .contact-image { margin-bottom: 30px; }
  .custom-contact-description { font-size: 16px; }

  .inner-page-container, .trade-center-content { padding: 120px 8%; margin-top: -80px;}
  .page-title, .trade-title { font-size: 32px; }
  .content-wrapper { padding: 0; }
  .cta-button { width: 80%; font-size: 18px; padding: 14px 25px; }

  .faq-grid { grid-template-columns: 1fr; gap: 20px; }

  .sitemap-links { grid-template-columns: 1fr; }
  .sitemap-title { font-size: 2.2rem; }
  .sitemap-block h2 { font-size: 1.4rem; }
  .sitemap-block ul li a { font-size: 16px; }

  .attractions-section { padding-left: 5%; padding-right: 5%; }
  .attractions-title { font-size: 2rem; }
  .attractions-header { justify-content: center; text-align: center; }
  .attractions-title::after { margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
  .faq-header h2 { font-size: 28px; }
  .faq-question, .faq-answer { padding: 20px; }
  .faq-card { text-align: left; }
  .faq-grid { grid-template-columns: minmax(0, 1fr); } /* Ensure it takes full width */

  .New-attraction-attraction-quality-cards { grid-template-columns: 1fr; }
  .New-attraction-card-content { padding: 1rem; }
}

@media (max-width: 480px) {
  .inner-page-container, .trade-center-content { padding: 100px 5%; margin-top: -70px; }
  .description, .text-description { padding: 20px; margin-bottom: 15px; }
  .cta-button { width: 90%; font-size: 16px; padding: 12px 20px; }
  .page-title, .trade-title { font-size: 28px; }

  .custom-contact-header { padding: 40px 15px; }
  .custom-contact-title { font-size: 2rem; }
  .custom-contact-description { font-size: 16px; line-height: 1.6; }

  .contact-info-box, .location-info-box { padding: 30px 20px; }
  .faq-item { padding: 20px; }
  .faq-item h2 { font-size: 1.4rem; }
  .faq-question-text { font-size: 16px; }

  .sitemap-block { padding: 25px; }
}