:root {
  --primary-color: #2c5f5d; /* Teal/Dark Slate */
  --accent-color: #c19b76; /* Gold/Tan accent */
  --secondary-color: #8b6f47; /* Brown */
  --text-color: #333;
  --heading-color: #1a1a1a;
  --bg-light: #f4f4f4;
  --font-heading: "Noto Sans Thai";
  --font-body: "Noto Sans Thai";
  --font-secondary: "Noto Sans Thai";
}

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

body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-full {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========================================
   HEADER STYLES
   ======================================== */

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-right: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.language-switcher .lang-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.language-switcher .lang-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.language-switcher .lang-link.lang-active {
  color: #fff;
  background: var(--accent-color);
  font-weight: 700;
}

.language-switcher .lang-divider {
  display: none;
}

/* Language Switcher - Desktop Links (default) */
.language-switcher-links {
  display: flex;
  gap: 5px;
  align-items: center;
}

/* Language Switcher - Mobile Dropdown (hidden by default) */
.language-switcher-select {
  display: none;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.language-switcher-select:hover {
  background: #fff;
  border-color: var(--accent-color);
}

.language-switcher-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(214, 173, 106, 0.2);
}

/* Main Header */
.site-header {
  padding: 20px 0;
  position: absolute;
  width: 100%;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  backdrop-filter: blur(5px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  flex-shrink: 0;
}

.logo a {
  display: block;
}

.logo-img {
  height: 80px;
  width: auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.logo-img:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

/* Main Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: block;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.1);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 15px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
  color: #fff;
  font-size: 24px;
  background: none;
  border: none;
  outline: none;
}

.mobile-menu-toggle:hover {
  color: var(--accent-color);
}

/* Reserve Button in Navigation */
.nav-reserve {
  margin-left: auto;
}

.btn-reserve-nav {
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 6px;
  background: var(--accent-color);
  color: #fff !important;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: inline-block;
}

.btn-reserve-nav:hover {
  background: transparent;
  color: var(--accent-color) !important;
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.btn-reserve-nav::after {
  display: none !important;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(20, 20, 20, 0.95);
  padding: 12px 0;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
}

.sticky-header.active {
  transform: translateY(0);
}

.sticky-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.sticky-header .logo-small {
  flex-shrink: 0;
}

.sticky-header .logo-img-small {
  height: 50px;
  width: auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.sticky-header .logo-img-small:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

.sticky-header .main-nav {
  flex: 1;
}

.sticky-header .main-nav ul {
  gap: 25px;
}

.sticky-header .main-nav a {
  font-size: 13px;
  padding: 8px 12px;
}

.sticky-header .language-switcher {
  margin-right: 15px;
}

.sticky-header .btn-primary {
  padding: 10px 25px;
  font-size: 12px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 3px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 11px;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
}

.btn-outline {
  border-color: #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* Hero Section with Slideshow */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  z-index: 10;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 20px;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-content .hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-content .hero-subtitle {
  font-size: 20px;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-text-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  margin: 20px auto;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: #ffffff;
  margin: 20px 0 15px 0;
  line-height: 1.6;
  letter-spacing: 1px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle-text {
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.5px;
  font-style: italic;
  text-shadow:
    1px 1px 2px rgba(0, 0, 0, 0.6),
    0 0 10px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: #fff;
}

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

.about-content {
  padding-right: 40px;
}

.section-subtitle {
  display: block;
  color: var(--accent-color);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 500;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 600;
}

.about-content h3 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: var(--accent-color);
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Eco-Friendly Section */
.eco-section {
  padding: 100px 0;
  background: var(--bg-light);
}

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

.eco-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.eco-content {
  padding-left: 40px;
}

.eco-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  font-weight: 600;
}

.eco-content p {
  margin-bottom: 30px;
  line-height: 1.8;
}

/* Grid Sections */
.grid-sections {
  padding: 0;
  margin-bottom: 5rem;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
}

.grid-item {
  position: relative;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.grid-item:hover img {
  transform: scale(1.1);
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 40px;
}

.grid-overlay h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}

.grid-overlay p {
  font-size: 16px;
  margin-bottom: 25px;
  max-width: 300px;
}

.btn-light {
  background: #fff;
  color: #333;
  border-color: #fff;
}

.btn-light:hover {
  background: transparent;
  color: #fff;
}

/* Promotions Section */
.promotions-section {
  padding: 100px 0;
  background: #fff;
}

.section-header {
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  text-align: center;
}

.section-header h2 {
  font-size: 40px;
  text-align: center;
  font-weight: 600;
}

.promotions-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.promotion-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.promo-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.promo-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.promotion-card:hover .promo-image img {
  transform: scale(1.08);
}

.promo-content {
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.promo-content h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--heading-color);
  line-height: 1.4;
}

.promo-content p {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
}

/* Buttons */
.btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: #fff;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer-col ul li i {
  color: var(--accent-color);
  margin-top: 4px;
  font-size: 14px;
}

.footer-col a {
  color: #ccc;
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-col p {
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.newsletter-form input[type="email"] {
  padding: 12px 15px;
  border: 1px solid #444;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  transition: border-color 0.3s, background 0.3s;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input[type="email"]::placeholder {
  color: #888;
}

.newsletter-form button {
  width: 100%;
}

.social-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s;
}

.social-links a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  color: #888;
  font-size: 14px;
}

/* Gastronomy Section */
.gastronomy-section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-header .subtitle {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 40px;
}

.gastronomy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.gastronomy-item {
  position: relative;
  overflow: hidden;
}

.gastronomy-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.5s;
}

.gastronomy-item:hover img {
  transform: scale(1.1);
}

.gastronomy-item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
}

.gastronomy-item h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.btn-link {
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .top-bar {
    display: none;
  }

  .main-nav ul {
    gap: 15px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .about-grid,
  .eco-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content,
  .eco-content {
    padding: 0;
  }

  .promotions-carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Desktop Navigation - Default */
@media (min-width: 769px) {
  .main-nav {
    position: static;
    display: flex;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    overflow: visible;
    box-shadow: none;
  }

  .menu-overlay {
    display: none !important;
  }

  .main-nav ul {
    display: flex;
    gap: 10px;
  }

  .main-nav ul li {
    border: none;
  }

  .main-nav ul li a {
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 14px;
  }

  .main-nav ul li a:hover,
  .main-nav ul li a.active {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
  }
}

/* Mobile/Tablet Menu - Slide from Left */
@media (max-width: 991px) {
  .main-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 80px 0 20px;
    overflow-y: auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-100%);
    will-change: transform;
    z-index: 1000;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
    display: block !important;
    flex: none;
    justify-content: flex-start;
  }

  .main-nav ul {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }

  .main-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav ul li a {
    display: block;
    padding: 18px 30px;
    color: #fff;
    border-left: 3px solid transparent;
    transition: all 0.3s;
    font-size: 15px;
  }

  .main-nav ul li a::after {
    display: none;
  }

  .main-nav ul li a:hover,
  .main-nav ul li a.active {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--accent-color);
    padding-left: 40px;
    color: var(--accent-color);
  }

  .main-nav.active {
    transform: translateX(0);
  }

  /* Mobile Menu Overlay */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Reserve button in mobile menu */
  .main-nav .nav-reserve {
    margin: 20px 20px 10px;
    border-bottom: none;
  }

  .main-nav .nav-reserve .btn-reserve-nav {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    font-size: 14px;
    background: var(--accent-color);
    color: #fff !important;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
  }

  .main-nav .nav-reserve .btn-reserve-nav:hover {
    background: transparent;
    color: var(--accent-color) !important;
    border-left-width: 2px;
    padding-left: 20px;
    transform: scale(1.02);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional Mobile/Tablet Styles */
@media (max-width: 991px) {
  /* Show hamburger menu toggle */
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    order: 1;
  }

  /* Logo in center */
  .logo {
    order: 2;
    flex: 1;
    text-align: center;
  }

  /* Language switcher on right */
  .header-actions {
    order: 3;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  }

  .header-actions .language-switcher {
    display: flex;
    gap: 8px;
  }

  /* Mobile: Hide desktop links, show dropdown */
  .language-switcher-links {
    display: none;
  }

  .language-switcher-select {
    display: block;
  }

  .header-actions .btn-reserve {
    padding: 10px 20px;
    font-size: 12px;
  }

  .logo-img {
    height: 60px;
    padding: 8px 12px;
  }

  .sticky-header .logo-img-small {
    height: 40px;
    padding: 6px 10px;
  }

  .sticky-header-inner {
    gap: 15px;
  }

  .sticky-header .mobile-menu-toggle {
    order: 1;
  }

  .sticky-header .logo-small {
    order: 2;
    flex: 1;
    text-align: center;
  }

  .sticky-header .header-actions {
    order: 3;
  }

  .logo-text {
    font-size: 24px;
  }

  .logo-subtitle {
    font-size: 10px;
  }

  .hero-text-wrapper {
    padding: 30px 15px;
    border-radius: 15px;
  }

  .hero-main-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-subtitle-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .about-content h2,
  .eco-content h2 {
    font-size: 28px;
  }

  .about-content h3 {
    font-size: 16px;
  }

  .grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .grid-item {
    height: 60vh;
  }

  .grid-overlay h3 {
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .promotions-carousel {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero-text-wrapper {
    padding: 25px 15px;
    border-radius: 12px;
  }

  .hero-main-title {
    font-size: 1.75rem;
    letter-spacing: 0.5px;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .hero-subtitle-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .hero-divider {
    width: 60px;
    height: 2px;
    margin: 15px auto;
  }

  .about-section,
  .eco-section,
  .grid-item {
    height: 50vh;
    min-height: 300px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 11px;
  }
}

/* Duplicate promotion-card styles removed - using unified version above */

/* Utility Classes */
.text-center {
  text-align: center;
}

.mobile-menu-toggle {
  display: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Update responsive for promotions */
@media (max-width: 991px) {
  .promotions-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   ACCOMMODATIONS PAGE STYLES
   ========================================== */

/* Accommodations Hero Section */
.accommodations-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("../images/pages/accommodations/accommodations_01.jpg") center/cover
      no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 0;
}

.accommodations-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.accommodations-hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Accommodations Section */
.accommodations-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-intro h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--heading-color);
}

.section-intro p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 1.8;
}

/* Accommodations Intro Section */
.accommodations-intro {
  padding: 80px 0;
  background: #f9f9f9;
}

.accommodations-intro .section-header {
  max-width: 800px;
  margin: 0 auto;
}

.accommodations-intro .section-subtitle {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.accommodations-intro .section-title-enhanced {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.accommodations-intro .intro-text {
  font-size: 18px;
  color: var(--text-color);
  line-height: 1.8;
  margin: 0;
}

/* Room Cards Grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.room-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Featured Room Card (larger highlight) */
.room-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}

.room-card.featured .room-image {
  height: 100%;
}

.room-card.featured .room-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

/* Room Image */
.room-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.08);
}

.room-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.room-badge.exclusive {
  background: var(--primary-color);
}

.room-badge.romantic {
  background: #d4738f;
}

.room-badge.family {
  background: #6b9080;
}

/* Room Content */
.room-content {
  padding: 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.room-details {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  color: var(--text-color);
  font-size: 14px;
}

.room-details span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-details i {
  color: var(--accent-color);
  font-size: 16px;
}

.room-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
  flex: 1;
}

/* Room Features/Amenities */
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.feature-tag {
  background: var(--bg-light);
  color: var(--text-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}

.feature-tag i {
  color: var(--accent-color);
  font-size: 13px;
}

.feature-tag:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}

.feature-tag:hover i {
  color: #fff;
}

/* Room CTA */
.room-cta {
  display: flex;
  gap: 15px;
  align-items: center;
}

.room-cta .btn {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  font-weight: 600;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background: #234847;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 95, 93, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Filter/Sort Section (optional for future) */
.rooms-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 25px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 93, 0.3);
}

/* Amenities List (detailed view) */
.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: 8px;
  transition: all 0.3s;
}

.amenity-item:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.amenity-item i {
  color: var(--accent-color);
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.amenity-item span {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 500;
}

/* Responsive Design for Accommodations */
@media (max-width: 1200px) {
  .accommodations-intro {
    padding: 60px 0;
  }

  .accommodations-intro .section-title-enhanced {
    font-size: 36px;
  }

  .accommodations-intro .intro-text {
    font-size: 17px;
  }

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

  .room-card.featured {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
  }

  .room-card.featured .room-image {
    height: 280px;
  }

  .room-card.featured .room-content {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .accommodations-intro {
    padding: 50px 0;
  }

  .accommodations-intro .section-subtitle {
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  .accommodations-intro .section-title-enhanced {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .accommodations-intro .intro-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .accommodations-hero {
    height: 50vh;
    min-height: 400px;
  }

  .accommodations-hero-content h1 {
    font-size: 36px;
  }

  .accommodations-hero-content p {
    font-size: 16px;
  }

  .section-intro h2 {
    font-size: 32px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .room-card.featured {
    grid-column: span 1;
  }

  .room-content h3 {
    font-size: 22px;
  }

  .room-details {
    gap: 15px;
    font-size: 13px;
  }

  .room-cta {
    flex-direction: column;
  }

  .room-cta .btn {
    width: 100%;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .accommodations-intro {
    padding: 40px 0;
  }

  .accommodations-intro .section-subtitle {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .accommodations-intro .section-title-enhanced {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .accommodations-intro .intro-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .accommodations-hero-content h1 {
    font-size: 28px;
  }

  .accommodations-hero-content p {
    font-size: 14px;
  }

  .section-intro h2 {
    font-size: 26px;
  }

  .section-intro p {
    font-size: 16px;
  }

  .room-content {
    padding: 25px;
  }

  .room-content h3 {
    font-size: 20px;
  }

  .room-details {
    flex-direction: column;
    gap: 10px;
  }

  .room-badge {
    font-size: 11px;
    padding: 6px 15px;
  }
}

/* ==========================================
   DINING PAGE STYLES
   ========================================== */

/* Dining Hero Section */
.dining-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("../images/pages/dining/dining_01.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.dining-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.dining-hero-content p {
  font-size: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Page Hero Content (Gallery, Accommodations, Activities) */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.travel-hero .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.28) 100%
  ) !important;
}

/* ==========================================
   TRAVEL INFO PAGE STYLES
   ========================================== */

.getting-there-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.transport-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.transport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.transport-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 15px;
}

.transport-details {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px 0;
}

.transport-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-color);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.transport-details li:last-child {
  border-bottom: none;
}

.transport-details i {
  color: var(--accent-color);
  font-size: 18px;
}

.map-section {
  padding: 100px 0;
  background: #fff;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  margin-bottom: 30px;
}

.location-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.location-info .info-item {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.location-info .info-item i {
  color: var(--accent-color);
  font-size: 20px;
  flex-shrink: 0;
}

.location-info .info-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.attractions-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.attraction-image {
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
}

.attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.card-modern:hover .attraction-image img {
  transform: scale(1.06);
}

.attraction-info h3 {
  font-size: 20px;
  margin: 15px 0 8px 0;
  color: var(--heading-color);
}

.attraction-info p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.7;
}

.attraction-info .distance {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-color);
}

.attraction-info .distance i {
  color: var(--accent-color);
}

/* Travel Info - Responsive for Mobile */
@media (max-width: 992px) {
  .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .attraction-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .attractions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .attraction-image {
    height: 180px;
    border-radius: 10px;
  }

  .attraction-info h3 {
    font-size: 18px;
  }

  .attraction-info p {
    font-size: 14px;
  }

  .attraction-info .distance {
    font-size: 13px;
  }
}

.travel-cta {
  padding: 80px 0;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
}

.travel-cta .cta-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.travel-cta .cta-content p {
  font-size: 18px;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-hero-content p {
  font-size: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Dining Section */
.dining-section {
  padding: 100px 0;
  background: var(--bg-light);
}

/* Restaurants Grid */
.restaurants-grid {
  display: block;
  margin-bottom: 50px;
}

.restaurant-card,
.dining-card-enhanced {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.restaurant-card:hover,
.dining-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Featured Restaurant (Arcadia Kitchen) */
.restaurant-card.featured,
.dining-card-enhanced.featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 500px;
}

.restaurant-card.featured .restaurant-image,
.dining-card-enhanced.featured .restaurant-image {
  height: 100%;
}

.restaurant-card.featured .restaurant-content,
.dining-card-enhanced.featured .restaurant-content {
  padding: 50px;
}

/* Standard Restaurant Cards - Two Column Layout (Desktop) */
@media (min-width: 992px) {
  .restaurant-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 500px;
  }

  .restaurant-card .restaurant-image {
    height: 100%;
  }

  .restaurant-card.reverse .restaurant-image {
    grid-column: 2;
  }

  .restaurant-card.reverse .restaurant-content {
    grid-column: 1;
  }
}

/* Standard Restaurant Cards - Stack on Tablet/Mobile */
@media (max-width: 1200px) {
  .restaurant-card {
    display: block;
  }

  .restaurant-card .restaurant-image {
    height: 350px;
  }

  .restaurant-card .restaurant-content {
    padding: 40px;
  }
}

/* Restaurant Image */
.restaurant-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.restaurant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.restaurant-card:hover .restaurant-image img,
.dining-card-enhanced:hover .restaurant-image img {
  transform: scale(1.08);
}

.restaurant-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.restaurant-badge.cafe {
  background: #8b6f47;
}

/* Restaurant Content */
.restaurant-content {
  padding: 40px;
}

.restaurant-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: 600;
}

.restaurant-info {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  color: var(--text-color);
  font-size: 15px;
}

.restaurant-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.restaurant-info i {
  color: var(--accent-color);
  font-size: 18px;
}

.restaurant-content > p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 16px;
}

/* Specialties */
.specialties {
  margin-bottom: 30px;
}

.specialties h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-weight: 600;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.specialty-tag {
  background: var(--bg-light);
  color: var(--text-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.specialty-tag i {
  color: var(--accent-color);
  font-size: 16px;
}

.specialty-tag:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}

.specialty-tag:hover i {
  color: #fff;
}

/* Highlights */
.highlights {
  margin-bottom: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-color);
  font-size: 15px;
}

.highlight-item i {
  color: #4caf50;
  font-size: 18px;
}

/* Menu Highlights */
.menu-highlights {
  margin-bottom: 30px;
}

.menu-highlights h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-weight: 600;
}

.menu-list {
  list-style: none;
  padding: 0;
}

.menu-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-color);
  font-size: 15px;
  padding: 8px 0;
}

.menu-list li i {
  color: var(--accent-color);
  font-size: 18px;
  width: 24px;
}

/* Restaurant CTA */
.restaurant-cta {
  display: flex;
  gap: 15px;
  align-items: center;
}

.restaurant-cta .btn {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  font-weight: 600;
}

/* Dining Experience Section */
.dining-experience {
  padding: 100px 0;
  background: #fff;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 40px;
}

.experience-card {
  text-align: center;
}

.experience-image {
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.experience-card:hover .experience-image img {
  transform: scale(1.1);
}

.experience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 20px;
}

.experience-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-weight: 600;
}

.experience-content p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

/* Special Dining Section */
.special-dining {
  padding: 100px 0;
  background: var(--bg-light);
}

.special-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 30px;
}

.special-option {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 400px;
}

.special-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.special-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.special-option:hover .special-image img {
  transform: scale(1.1);
}

.special-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 40px;
  text-align: center;
  color: #fff;
  transition: background 0.3s;
}

.special-option:hover .special-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.special-overlay h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}

.special-overlay p {
  font-size: 15px;
  margin-bottom: 25px;
  max-width: 300px;
  line-height: 1.6;
}

/* Dining CTA Section */
.dining-cta {
  padding: 80px 0;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 16px 45px;
  font-size: 16px;
}

.btn-outline.btn-lg {
  border-color: #fff;
  color: #fff;
}

.btn-outline.btn-lg:hover {
  background: #fff;
  color: var(--primary-color);
}

/* Responsive Design for Dining */
@media (max-width: 1200px) {
  .restaurant-card.featured,
  .dining-card-enhanced.featured {
    grid-template-columns: 1fr;
  }

  .restaurant-card.featured .restaurant-image,
  .dining-card-enhanced.featured .restaurant-image {
    height: 350px;
  }

  .restaurant-card.featured .restaurant-content,
  .dining-card-enhanced.featured .restaurant-content {
    padding: 40px;
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .special-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dining-hero-content h1 {
    font-size: 36px;
  }

  .dining-hero-content p {
    font-size: 16px;
  }

  .restaurant-content {
    padding: 30px;
  }

  .restaurant-content h3 {
    font-size: 26px;
  }

  .restaurant-info {
    gap: 15px;
    font-size: 14px;
  }

  .restaurant-cta {
    flex-direction: column;
  }

  .restaurant-cta .btn {
    width: 100%;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .special-options-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .dining-hero-content h1 {
    font-size: 28px;
  }

  .dining-hero-content p {
    font-size: 14px;
  }

  .restaurant-content {
    padding: 25px;
  }

  .restaurant-content h3 {
    font-size: 22px;
  }

  .restaurant-info {
    flex-direction: column;
    gap: 10px;
  }

  .restaurant-badge {
    font-size: 11px;
    padding: 6px 15px;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

/* ==========================================
   FACILITIES PAGE STYLES
   ========================================== */

/* Facilities Hero */
.facilities-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("../images/pages/facilities/facilities_01.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.facilities-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.facilities-hero-content p {
  font-size: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Facilities Section */
.facilities-section {
  padding: 100px 0;
  background: var(--bg-light);
}

/* Featured Facility Block (Swimming Pools) */
.facility-block.featured {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.facility-image-large {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.facility-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-content-large {
  padding: 60px;
}

.facility-icon-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 36px;
  margin-bottom: 25px;
}

.facility-content-large h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: 600;
}

.facility-lead {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Pools Grid */
.pools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pool-item {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s;
}

.pool-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pool-item h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pool-item h4 i {
  color: var(--primary-color);
  font-size: 22px;
}

.pool-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pool-specs li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  color: #666;
  font-size: 15px;
}

.pool-specs li:last-child {
  border-bottom: none;
}

/* Facilities Grid */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.facility-card,
.card-modern {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.facility-card:hover,
.card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.facility-image,
.card-image {
  position: relative;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
}

.facility-image img,
.card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s;
  display: block;
}

.facility-card:hover .facility-image img,
.card-modern:hover .card-image img {
  transform: scale(1.1);
}

.facility-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.facility-card:hover .facility-overlay,
.card-modern:hover .facility-overlay {
  opacity: 1;
}

.facility-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.facility-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.facility-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-weight: 600;
}

.facility-content > p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 15px;
  flex-grow: 1;
}

/* Facility Features */
.facility-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-item i {
  color: var(--accent-color);
  font-size: 24px;
  width: 30px;
  text-align: center;
}

.feature-item div {
  flex: 1;
}

.feature-item strong {
  display: inline;
  font-size: 16px;
  color: var(--heading-color);
  margin-right: 8px;
}

.feature-item span {
  display: inline;
  font-size: 14px;
  color: #666;
}

/* Facility List */
.facility-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.facility-list li {
  padding: 10px 0;
  color: #666;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.facility-list li i {
  color: var(--primary-color);
  font-size: 16px;
  width: 20px;
}

/* Additional Services */
.additional-services {
  padding: 80px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.service-item {
  text-align: center;
  padding: 30px 15px;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s;
}

.service-item:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-item i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 15px;
  transition: color 0.3s;
}

.service-item:hover i {
  color: #fff;
}

.service-item h4 {
  font-size: 15px;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s;
}

.service-item:hover h4 {
  color: #fff;
}

/* Facilities CTA */
.facilities-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e4746 100%);
  color: #fff;
  text-align: center;
}

/* Responsive Design for Facilities */
@media (max-width: 1200px) {
  .pools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .facilities-hero-content h1 {
    font-size: 36px;
  }

  .facilities-hero-content p {
    font-size: 16px;
  }

  .facility-content-large {
    padding: 40px 30px;
  }

  .facility-content-large h2 {
    font-size: 30px;
  }

  .pools-grid {
    grid-template-columns: 1fr;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .facilities-hero-content h1 {
    font-size: 28px;
  }

  .facilities-hero-content p {
    font-size: 14px;
  }

  .facility-content-large {
    padding: 30px 20px;
  }

  .facility-content-large h2 {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .facility-content {
    padding: 25px;
  }
}

/* ========================================
   ACTIVITIES PAGE
   ======================================== */

/* Hero Section */
.activities-hero {
  height: 60vh;
  min-height: 500px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../images/pages/activities/activities_01.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.activities-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.activities-hero p {
  font-size: 24px;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Activities Section */
.activities-section {
  padding: 80px 0;
}

.activities-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.activities-intro .subtitle {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.activities-intro h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.activities-intro p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Activities Grid */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Activity Card */
.activity-card,
.activities-grid .card-modern {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.activity-card:hover,
.activities-grid .card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Featured Activity Card - Full Width */
.activity-card.featured,
.activities-grid .card-modern.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 480px;
}

.activity-card.featured .activity-image,
.activities-grid .card-modern.featured .activity-image {
  height: 100%;
  flex-shrink: 0;
}

.activity-card.featured .activity-content,
.activities-grid .card-modern.featured .activity-content {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Activity Image */
.activity-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-card:hover .activity-image img {
  transform: scale(1.08);
}

/* Activity Badge */
.activity-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.activity-badge.romantic {
  background: linear-gradient(135deg, #ff6b9d, #c94b7d);
}

.activity-badge.adventure {
  background: linear-gradient(135deg, #43cea2, #185a9d);
}

.activity-badge.evening {
  background: linear-gradient(135deg, #4b79a1, #283e51);
}

.activity-badge.free {
  background: linear-gradient(135deg, #56ab2f, #a8e063);
}

/* Activity Content */
.activity-content {
  padding: 35px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.activity-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #d4a86a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.activity-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.activity-content > p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
  flex: 1;
}

/* Activity Highlights */
.activity-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.highlight-box {
  background: var(--bg-light);
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}

.highlight-box:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.highlight-box i {
  color: var(--accent-color);
  font-size: 22px;
  flex-shrink: 0;
}

.highlight-box div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.highlight-box strong {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.highlight-box span {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 500;
}

/* Activity Includes */
.activity-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.activity-includes li {
  padding: 10px 0;
  color: var(--text-color);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
}

.activity-includes li:last-child {
  border-bottom: none;
}

.activity-includes i {
  color: #4caf50;
  font-size: 18px;
  flex-shrink: 0;
}

/* Activity Info Tags */
.activity-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.info-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
}

.info-tag:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-tag i {
  color: var(--accent-color);
  font-size: 18px;
}

.info-tag strong {
  color: var(--text-light);
  font-weight: 600;
  margin-right: 5px;
}

/* Seasonal Activities Section */
.seasonal-activities {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  margin-top: 60px;
}

.seasonal-intro {
  text-align: center;
  margin-bottom: 50px;
}

.seasonal-intro .subtitle {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.seasonal-intro h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.seasonal-intro p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Seasons Grid */
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Season Card */
.season-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}

.season-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.season-header {
  padding: 30px;
  background: linear-gradient(135deg, var(--primary-color), #1a4d2e);
  color: #fff;
  text-align: center;
}

.season-card:nth-child(2) .season-header {
  background: linear-gradient(135deg, #4b79a1, #283e51);
}

.season-card:nth-child(3) .season-header {
  background: linear-gradient(135deg, #c94b4b, #4b134f);
}

.season-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.season-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.season-header p {
  font-size: 15px;
  opacity: 0.9;
}

.season-content {
  padding: 30px;
}

.season-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.season-content li {
  padding: 12px 0;
  color: var(--text-color);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
}

.season-content li:last-child {
  border-bottom: none;
}

.season-content i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

/* Seasonal Grid with Images */
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.seasonal-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}

.seasonal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.seasonal-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.seasonal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.seasonal-card:hover .seasonal-image img {
  transform: scale(1.1);
}

.seasonal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.8), rgba(26, 77, 46, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
}

.seasonal-overlay i {
  font-size: 64px;
  color: #fff;
}

.seasonal-content {
  padding: 30px;
}

.seasonal-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.seasonal-content p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.seasonal-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seasonal-content li {
  padding: 10px 0;
  color: var(--text-color);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.seasonal-content li i {
  color: var(--accent-color);
  font-size: 16px;
}

/* Activity Guidelines Section */
.activity-guidelines {
  padding: 80px 0;
  background: #fff;
}

.guidelines-intro {
  text-align: center;
  margin-bottom: 50px;
}

.guidelines-intro h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Guidelines Grid */
.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Guideline Item */
.guideline-item {
  background: var(--bg-light);
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s;
  border: 2px solid transparent;
}

.guideline-item:hover {
  background: #fff;
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.guideline-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #d4a86a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  transition: all 0.4s;
}

.guideline-item:hover .guideline-icon {
  transform: rotateY(360deg);
}

.guideline-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.guideline-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Activities CTA Section */
.activities-cta {
  background: linear-gradient(135deg, var(--primary-color), #1a4d2e);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.activities-cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.activities-cta p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 200px;
}

/* Responsive Design */

/* Tablet (max-width: 1200px) */
@media (max-width: 1200px) {
  .activities-hero h1,
  .page-hero-content h1 {
    font-size: 48px;
  }

  .activities-hero p,
  .page-hero-content p {
    font-size: 20px;
  }

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

  .seasons-grid {
    gap: 25px;
  }

  .guidelines-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Portrait (max-width: 768px) */
@media (max-width: 768px) {
  .activities-hero,
  .page-hero {
    height: 50vh;
    min-height: 400px;
  }

  .activities-hero h1,
  .page-hero-content h1 {
    font-size: 38px;
  }

  .activities-hero p,
  .page-hero-content p {
    font-size: 18px;
  }

  .activities-section {
    padding: 60px 0;
  }

  .activities-intro h2,
  .seasonal-intro h2,
  .guidelines-intro h2 {
    font-size: 32px;
  }

  .activities-intro p {
    font-size: 16px;
  }

  .activities-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .activity-card.featured,
  .activities-grid .card-modern.featured {
    display: block;
    min-height: auto;
  }

  .activity-card.featured .activity-image,
  .activities-grid .card-modern.featured .activity-image {
    height: 300px;
  }

  .activity-card.featured .activity-content,
  .activities-grid .card-modern.featured .activity-content {
    padding: 30px 25px;
  }

  .activity-highlights {
    grid-template-columns: 1fr;
  }

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

  .seasonal-activities {
    padding: 60px 0;
  }

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

  .activity-guidelines {
    padding: 60px 0;
  }

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

  .activities-cta {
    padding: 60px 0;
  }

  .activities-cta h2 {
    font-size: 32px;
  }

  .activities-cta p {
    font-size: 18px;
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .activities-hero h1,
  .page-hero-content h1 {
    font-size: 32px;
  }

  .activities-hero p,
  .page-hero-content p {
    font-size: 16px;
    padding: 0 20px;
  }

  .activities-intro h2,
  .seasonal-intro h2,
  .guidelines-intro h2 {
    font-size: 28px;
  }

  .activity-content {
    padding: 25px 20px;
  }

  .activity-content h3 {
    font-size: 22px;
  }

  .activity-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .activity-info {
    flex-direction: column;
    gap: 10px;
  }

  .info-tag {
    width: 100%;
  }

  .season-header {
    padding: 25px 20px;
  }

  .season-icon {
    font-size: 40px;
  }

  .season-header h3 {
    font-size: 20px;
  }

  .season-content {
    padding: 25px 20px;
  }

  .guideline-item {
    padding: 30px 20px;
  }

  .activities-cta h2 {
    font-size: 28px;
  }

  .activities-cta p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ========================================
   GALLERY PAGE
   ======================================== */

/* Hero Section */
.gallery-hero {
  height: 60vh;
  min-height: 500px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../images/pages/home/home_07.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.gallery-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-hero p {
  font-size: 24px;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Gallery Categories Filter */
.gallery-categories {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.categories-filter {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  border: 2px solid var(--border-color);
  background: #fff;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-btn i {
  font-size: 16px;
}

.filter-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--accent-color), #d4a86a);
  border-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

/* Gallery Section */
.gallery-section {
  padding: 60px 0 80px;
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: scale(1);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Gallery Image */
.gallery-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #f0f0f0;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-category {
  display: inline-block;
  padding: 6px 15px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* View Button */
.view-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-color);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .view-btn {
  opacity: 1;
  transform: scale(1);
}

.view-btn:hover {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
}

/* Load More Button */
.load-more-container {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  padding: 15px 40px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.load-more-btn i {
  transition: transform 0.3s;
}

.load-more-btn:hover i {
  transform: translateY(3px);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}

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

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s;
  font-weight: 300;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 15px 20px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 8px;
  transition: all 0.3s;
  z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  max-width: 80%;
}

/* Gallery CTA Section */
.gallery-cta {
  background: linear-gradient(135deg, var(--primary-color), #1a4d2e);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.gallery-cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.gallery-cta p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

/* Responsive Design */

/* Tablet (max-width: 1200px) */
@media (max-width: 1200px) {
  .gallery-hero h1 {
    font-size: 48px;
  }

  .gallery-hero p {
    font-size: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }

  .gallery-image {
    height: 280px;
  }
}

/* Tablet Portrait (max-width: 768px) */
@media (max-width: 768px) {
  .gallery-hero {
    height: 50vh;
    min-height: 400px;
  }

  .gallery-hero h1 {
    font-size: 38px;
  }

  .gallery-hero p {
    font-size: 18px;
  }

  .gallery-categories {
    top: 60px;
    padding: 25px 0;
  }

  .categories-filter {
    gap: 10px;
    padding: 0 15px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .gallery-section {
    padding: 40px 0 60px;
  }

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

  .gallery-image {
    height: 220px;
  }

  .gallery-info h3 {
    font-size: 18px;
  }

  .gallery-category {
    font-size: 11px;
    padding: 5px 12px;
  }

  .view-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    top: 15px;
    right: 15px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 40px;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 12px 16px;
    font-size: 20px;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }

  .lightbox-caption {
    bottom: 20px;
    font-size: 16px;
    padding: 12px 25px;
  }

  .gallery-cta {
    padding: 60px 0;
  }

  .gallery-cta h2 {
    font-size: 32px;
  }

  .gallery-cta p {
    font-size: 18px;
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .gallery-hero h1 {
    font-size: 32px;
  }

  .gallery-hero p {
    font-size: 16px;
    padding: 0 20px;
  }

  .categories-filter {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .filter-btn i {
    font-size: 14px;
  }

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

  .gallery-image {
    height: 250px;
  }

  .gallery-overlay {
    padding: 20px;
  }

  .gallery-info h3 {
    font-size: 20px;
  }

  .lightbox-content {
    max-width: 95%;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 10px 14px;
    font-size: 18px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-caption {
    bottom: 15px;
    font-size: 14px;
    padding: 10px 20px;
    max-width: 90%;
  }

  .gallery-cta h2 {
    font-size: 28px;
  }

  .gallery-cta p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ========================================
   CONTACT PAGE
   ======================================== */

/* Contact Hero Section */
.contact-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("../images/pages/home/home_01.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.contact-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-hero-content p {
  font-size: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-section .section-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-section .section-subtitle {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.contact-intro h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-intro p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Info Card */
.info-card {
  padding: 50px 40px;
  text-align: center;
  transition: all 0.3s;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.info-icon {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 25px;
  transition: all 0.4s;
}

.info-card:hover .info-icon {
  transform: rotateY(360deg);
}

.info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.info-card p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 8px;
}

.info-card a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

.info-card a:hover {
  color: var(--accent-color);
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.social-btn {
  padding: 8px 0;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-btn.facebook {
  color: #1877f2;
}

.social-btn.line {
  color: #00b900;
}

.social-btn.instagram {
  color: #e1306c;
}

.social-btn:hover {
  opacity: 0.7;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Contact Form */
.contact-form-container h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.form-description {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
  font-size: 15px;
}

.required {
  color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #000000;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  display: none;
  font-weight: 500;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Map Container */
.map-container h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
}

/* Directions Info */
.directions-info {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.directions-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.directions-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.directions-info li {
  padding: 15px 0;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.8;
  display: flex;
  gap: 15px;
  border-bottom: 1px solid var(--border-color);
}

.directions-info li:last-child {
  border-bottom: none;
}

.directions-info i {
  color: var(--accent-color);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-intro {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-intro h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.faq-intro p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* FAQ Item */
.faq-item {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
}

.faq-question:hover {
  background: #fff;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  flex: 1;
}

.faq-question i {
  color: var(--accent-color);
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.8;
  margin: 0;
}

/* Responsive Design */

/* Tablet (max-width: 1200px) */
@media (max-width: 1200px) {
  .contact-hero-content h1 {
    font-size: 48px;
  }

  .contact-hero-content p {
    font-size: 20px;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .contact-content {
    gap: 40px;
  }

  .faq-grid {
    gap: 15px;
  }
}

/* Tablet Portrait (max-width: 768px) */
@media (max-width: 768px) {
  .contact-hero {
    height: 50vh;
    min-height: 400px;
  }

  .contact-hero h1 {
    font-size: 38px;
  }

  .contact-hero p {
    font-size: 18px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-intro h2,
  .faq-intro h2 {
    font-size: 32px;
  }

  .contact-intro p {
    font-size: 16px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-card {
    padding: 30px 25px;
  }

  .contact-form-section {
    padding: 60px 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 30px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-section {
    padding: 60px 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 20px 25px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 25px 20px 25px;
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero p {
    font-size: 16px;
    padding: 0 20px;
  }

  .contact-intro h2,
  .faq-intro h2 {
    font-size: 28px;
  }

  .info-card {
    padding: 25px 20px;
  }

  .info-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .info-card h3 {
    font-size: 20px;
  }

  .contact-form-container h2,
  .map-container h2 {
    font-size: 26px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .social-links {
    gap: 10px;
  }

  .social-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .directions-info {
    padding: 25px 20px;
  }

  .directions-info h3 {
    font-size: 20px;
  }

  .directions-info li {
    font-size: 14px;
    padding: 12px 0;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question h3 {
    font-size: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* ===========================
   Why Choose Us Section
   =========================== */
.why-choose-section {
  background-color: #f9f9f9;
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* min-height: 280px; */
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrapper {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(44, 95, 93, 0.1) 0%, rgba(44, 95, 93, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  transform: rotateY(180deg) scale(1.05);
  box-shadow: 0 6px 20px rgba(44, 95, 93, 0.3);
}

.feature-item:hover .feature-icon {
  color: white;
}

.feature-icon {
  font-size: 2.8rem;
  color: var(--primary-color);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.4;
}

.feature-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
  flex: 1;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-section {
  padding: 6rem 0;
  background-color: #333;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.position-relative {
  position: relative;
  z-index: 1;
}

.text-white {
  color: #fff !important;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.8rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  position: relative;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.testimonial-card.glass-effect {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.glass-effect .testimonial-text {
  color: rgba(255, 255, 255, 0.95);
}

.glass-effect .author-info h4 {
  color: #fff;
  font-weight: 600;
}

.glass-effect .quote-icon {
  color: rgba(255, 255, 255, 0.35);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.testimonial-card.glass-effect:hover {
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.3);
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.testimonial-card:hover .quote-icon {
  opacity: 0.6;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 15px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.glass-effect .testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.author-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(44, 95, 93, 0.15) 0%, rgba(44, 95, 93, 0.25) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent-color);
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.glass-effect .author-avatar {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--primary-color);
  font-weight: 600;
}

.rating {
  color: #f1c40f;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

/* ===========================
   Instagram Section
   =========================== */
.instagram-section {
  padding-bottom: 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 992px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.instagram-item {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 95, 93, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-overlay i {
  color: white;
  font-size: 2rem;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-item:hover img {
  transform: scale(1.1);
}
/* Gallery Showcase Section */
.gallery-showcase-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.section-description {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 15px auto 50px;
  line-height: 1.6;
}

.gallery-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.showcase-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.showcase-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.showcase-item.large .showcase-image {
  aspect-ratio: 1 / 1;
}

.showcase-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s;
}

.showcase-item:hover .showcase-overlay {
  opacity: 1;
}

.showcase-item:hover .showcase-image img {
  transform: scale(1.08);
}

.showcase-overlay h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform 0.4s;
}

.showcase-item:hover .showcase-overlay h3 {
  transform: translateY(0);
}

/* Responsive Gallery Showcase */
@media (max-width: 1024px) {
  .gallery-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .showcase-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
}

@media (max-width: 768px) {
  .gallery-showcase-section {
    padding: 60px 0;
  }

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

  .showcase-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .showcase-overlay h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .gallery-showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-item.large {
    grid-column: span 1;
  }
  
  .section-description {
    font-size: 14px;
  }
}
