/* ============================================
   GREEN PINE BEACH HOTEL - Main Stylesheet
   Tropical Camp Theme - Fun & Playful
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&family=Quicksand:wght@400;500;600;700&display=swap');

/* CSS Variables - Fresh & Fun Theme (Flat Colors) */
:root {
  /* Colors - Flat & Vibrant */
  --primary-green: rgb(40, 133, 26);
  --primary-green-dark: rgb(30, 100, 20);
  --primary-green-light: rgb(60, 160, 45);
  --turquoise: rgb(61, 155, 233);
  --turquoise-dark: rgb(45, 130, 200);
  --turquoise-light: rgb(90, 175, 240);
  --yellow: rgb(249, 198, 32);
  --yellow-dark: rgb(220, 170, 20);
  --yellow-light: rgb(255, 215, 80);
  --orange: #FF9800;
  --orange-dark: #F57C00;
  --white: #FFFFFF;
  --cream: #FAFAFA;
  --black: #333333;
  --gray-dark: #424242;
  --gray: #757575;
  --gray-light: #BDBDBD;
  --gray-lighter: #E0E0E0;
  --sand: #F5F5F5;
  --sand-dark: #EEEEEE;
  --sand-light: #FAFAFA;

  /* Typography */
  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Quicksand', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Shadows - Clean & Subtle */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-colored: 0 4px 20px rgba(76, 175, 80, 0.2);

  /* Border Radius - Clean & Modern */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
  --radius-blob: 50%;

  /* Container */
  --container-max: 1400px;
  --container-narrow: 900px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-dark);
  background-color: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-green);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--space-sm);
}

/* Accent text style */
.text-accent {
  font-family: var(--font-accent);
  color: var(--accent-green);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* Buttons - Clean & Bold */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
}

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

.btn-secondary:hover {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-turquoise {
  background-color: var(--turquoise);
  color: var(--white);
}

.btn-turquoise:hover {
  background-color: var(--turquoise-dark);
}

.btn-yellow {
  background-color: var(--yellow);
  color: var(--primary-green);
  font-weight: 700;
}

.btn-yellow:hover {
  background-color: var(--yellow-dark);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-green);
}

.btn-white:hover {
  background-color: var(--sand);
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
}

.header.scrolled .nav-link {
  color: var(--gray-dark);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--primary-orange);
}

.header.scrolled .logo-light {
  display: none;
}

.header.scrolled .logo-dark {
  display: block;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  transition: padding var(--transition-normal);
}

.header.scrolled .header-inner {
  padding: var(--space-xs) 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
  transition: height var(--transition-normal);
}

.header.scrolled .logo img {
  height: 55px;
}

.logo-dark {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  padding: var(--space-xs) var(--space-sm);
  position: relative;
  transition: all var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--turquoise);
  border-radius: 2px;
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--turquoise);
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.2);
  transition: all var(--transition-bounce);
}

.nav-phone span {
  display: none;
}

.header.scrolled .nav-phone {
  background-color: var(--turquoise);
  color: var(--white);
}

.nav-phone svg {
  width: 20px;
  height: 20px;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: all var(--transition-bounce);
}

.header.scrolled .nav-social a {
  background-color: var(--turquoise);
  color: var(--white);
}

.nav-social a:hover,
.nav-phone:hover {
  background-color: var(--primary-green);
  transform: scale(1.15) rotate(5deg);
}

.nav-phone:hover {
  color: var(--white);
}

.nav-social svg {
  width: 20px;
  height: 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-xs);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.header.scrolled .menu-toggle span {
  background-color: var(--primary-green);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 var(--space-md);
}

.hero-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-lg);
  background-color: var(--turquoise);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-md);
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-title span {
  font-family: var(--font-accent);
  color: var(--yellow);
  display: block;
  font-size: 0.6em;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  margin-bottom: var(--space-xl);
  opacity: 0.95;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-12px);
  }

  60% {
    transform: translateX(-50%) translateY(-6px);
  }
}

/* Hero Slider Dots */
.hero-dots {
  position: absolute;
  bottom: calc(var(--space-3xl) + 60px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: var(--space-sm);
}

.hero-dot {
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-bounce);
  border: 2px solid transparent;
}

.hero-dot.active,
.hero-dot:hover {
  background-color: var(--turquoise);
  border-color: var(--white);
  transform: scale(1.3);
}

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(76, 175, 80, 0.85);
}

/* Colored Page Headers */
.page-header.page-header-turquoise::before {
  background: rgba(61, 155, 233, 0.85);
}

.page-header.page-header-yellow::before {
  background: rgba(200, 160, 20, 0.85);
}

.page-header.page-header-green::before {
  background: rgba(40, 133, 26, 0.85);
}

.page-header-content {
  position: relative;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.breadcrumb a {
  color: var(--sand-light);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-sm {
  padding: var(--space-xl) 0;
}

.section-lg {
  padding: var(--space-3xl) 0;
}

.section-sand {
  background-color: var(--sand);
}

.section-cream {
  background-color: var(--cream);
}

.section-green {
  background-color: var(--primary-green);
  color: var(--white);
}

.section-green h2,
.section-green h3 {
  color: var(--white);
}

.section-turquoise {
  background-color: var(--turquoise);
  color: var(--white);
}

.section-turquoise h2,
.section-turquoise h3 {
  color: var(--white);
}

.section-yellow {
  background-color: var(--yellow);
  color: var(--black);
}

.section-yellow h2,
.section-yellow h3 {
  color: var(--black);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.section-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background-color: var(--primary-green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.section-green .section-badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section-badge.badge-turquoise {
  background-color: var(--turquoise);
  color: var(--white);
}

.section-badge.badge-yellow {
  background-color: var(--yellow);
  color: var(--black);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--gray);
  line-height: 1.8;
}

.section-green .section-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Wave Decorations */
.wave-top,
.wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-top {
  top: 0;
  transform: rotate(180deg);
}

.wave-bottom {
  bottom: 0;
}

.wave-top svg,
.wave-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

/* ============================================
   FEATURES / WHY US
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Colored circle icons - like original site */
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: var(--space-md);
  transition: all var(--transition-bounce);
}

/* Color variations for feature icons */
.feature-icon.icon-green {
  background-color: var(--primary-green);
}

.feature-icon.icon-turquoise {
  background-color: var(--turquoise);
}

.feature-icon.icon-yellow {
  background-color: var(--yellow);
}

.feature-icon.icon-orange {
  background-color: var(--orange);
}

/* Default color */
.feature-icon:not(.icon-green):not(.icon-turquoise):not(.icon-yellow):not(.icon-orange) {
  background-color: var(--primary-green);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon svg {
  width: 50px;
  height: 50px;
  color: var(--white);
  stroke-width: 1.5;
}

/* White line-drawing style icons */
.feature-icon svg path {
  fill: none;
  stroke: var(--white);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--gray-dark);
}

.feature-card p {
  color: var(--gray);
  margin-bottom: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform var(--transition-normal);
}

.about-img-main:hover {
  transform: rotate(0deg);
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 60%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--white);
  transform: rotate(3deg);
  transition: transform var(--transition-normal);
}

.about-img-secondary:hover {
  transform: rotate(0deg);
}

.about-content {
  padding-left: var(--space-lg);
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-content p {
  color: var(--gray);
  margin-bottom: var(--space-md);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background-color: var(--sand);
  border-radius: var(--radius-lg);
}

.stat-item {
  text-align: center;
  padding: var(--space-sm);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--turquoise);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: var(--space-xs);
}

/* ============================================
   ROOMS SECTION
   ============================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.rooms-carousel-wrapper {
  position: relative;
}

.rooms-carousel {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: var(--space-md);
  margin: 0 calc(-1 * var(--space-md));
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  cursor: grab;
}

.rooms-carousel.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.rooms-carousel.dragging .room-card {
  pointer-events: none;
}

.carousel-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: var(--white);
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  cursor: pointer;
  z-index: 10;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.carousel-arrow:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
  background-color: var(--white);
  color: var(--primary-green);
  transform: translateY(-50%);
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

.carousel-arrow-left {
  left: 0;
}

.carousel-arrow-right {
  right: 0;
}

@media (min-width: 1024px) {
  .carousel-arrow {
    display: flex;
  }

  .rooms-carousel-wrapper {
    padding: 0 70px;
  }

  .carousel-arrow-left {
    left: 0;
  }

  .carousel-arrow-right {
    right: 0;
  }
}

@media (min-width: 1200px) {
  .rooms-carousel-wrapper {
    padding: 0 80px;
  }
}

.rooms-carousel::-webkit-scrollbar {
  height: 8px;
}

.rooms-carousel::-webkit-scrollbar-track {
  background: var(--sand);
  border-radius: 4px;
}

.rooms-carousel::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}

.rooms-carousel .room-card {
  flex: 0 0 400px;
  scroll-snap-align: start;
}

.room-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.room-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.room-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  background-color: var(--turquoise);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.room-content {
  padding: var(--space-lg);
}

.room-content h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-sm);
  color: var(--gray-dark);
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.room-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--gray);
}

.room-feature svg {
  width: 18px;
  height: 18px;
  color: var(--primary-green);
}

.room-capacity {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  background-color: var(--sand);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-bottom: var(--space-md);
}

.room-capacity svg {
  width: 20px;
  height: 20px;
  color: var(--primary-green);
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 2px dashed var(--gray-lighter);
}

.room-price {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gray);
}

.room-price span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Room Detail Page */
.room-detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-2xl);
}

.room-gallery {
  display: grid;
  gap: var(--space-md);
}

.room-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.room-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.room-gallery-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: all var(--transition-fast);
  border: 3px solid transparent;
}

.room-gallery-thumb:hover,
.room-gallery-thumb.active {
  opacity: 1;
  border-color: var(--turquoise);
}

.room-info {
  position: sticky;
  top: 120px;
}

.room-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background-color: var(--sand);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.amenity-item:hover {
  background-color: var(--primary-green);
  color: var(--white);
}

.amenity-item svg {
  width: 22px;
  height: 22px;
  color: var(--primary-green);
  transition: color var(--transition-fast);
}

.amenity-item:hover svg {
  color: var(--white);
}

/* ============================================
   CONCEPT SECTION
   ============================================ */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.concept-card {
  position: relative;
  padding: var(--space-xl);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-bounce);
}

.concept-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.concept-card h3 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--gray-dark);
}

.concept-card h3 svg {
  width: 32px;
  height: 32px;
  color: var(--primary-green);
}

.concept-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.concept-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--gray);
}

.concept-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--turquoise);
  border-radius: var(--radius-full);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-bounce);
}

.gallery-item::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-normal);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(76, 175, 80, 0.7);
}

.gallery-item-overlay svg {
  width: 48px;
  height: 48px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.5) rotate(-10deg);
  transition: all var(--transition-bounce);
}

.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Gallery item sizes for masonry effect */
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(45, 45, 45, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--turquoise);
  border-radius: var(--radius-full);
  color: var(--white);
  transition: all var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(0, 172, 193, 0.3);
}

.lightbox-close:hover {
  transform: scale(1.1) rotate(90deg);
}

.lightbox-close svg {
  width: 28px;
  height: 28px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-green);
  border-radius: var(--radius-full);
  color: var(--white);
  transition: all var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: var(--space-lg);
}

.lightbox-next {
  right: var(--space-lg);
}

/* ============================================
   HONEYMOON / SPECIAL OFFERS
   ============================================ */
.honeymoon-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.honeymoon-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(76, 175, 80, 0.9);
}

.honeymoon-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.honeymoon-text {
  color: var(--white);
}

.honeymoon-text h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.honeymoon-text p {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: var(--space-lg);
}

.honeymoon-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.honeymoon-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.honeymoon-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-blob);
  flex-shrink: 0;
  transition: all var(--transition-bounce);
}

.honeymoon-feature:hover .honeymoon-feature-icon {
  background-color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.honeymoon-feature-icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
  transition: color var(--transition-fast);
}

.honeymoon-feature:hover .honeymoon-feature-icon svg {
  color: var(--primary-green);
}

.honeymoon-feature-text h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.honeymoon-feature-text p {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.honeymoon-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(3deg);
  transition: transform var(--transition-normal);
}

.honeymoon-image:hover {
  transform: rotate(0deg);
}

/* ============================================
   LOCATION / MAP SECTION
   ============================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.location-info h3 {
  margin-bottom: var(--space-md);
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.location-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--sand);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all var(--transition-bounce);
}

.location-item:hover .location-item-icon {
  background-color: var(--primary-green);
  transform: scale(1.1);
}

.location-item-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary-green);
  transition: color var(--transition-fast);
}

.location-item:hover .location-item-icon svg {
  color: var(--white);
}

.location-item-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--gray-dark);
}

.location-item-text p {
  font-size: 0.9375rem;
  color: var(--gray);
  margin-bottom: 0;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
  border: 4px solid var(--white);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
}

.contact-info {
  padding: var(--space-xl);
  background-color: var(--primary-green);
  border-radius: var(--radius-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: transparent;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.contact-info>p {
  opacity: 0.95;
  margin-bottom: var(--space-xl);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all var(--transition-bounce);
}

.contact-item:hover .contact-item-icon {
  background-color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
  transition: color var(--transition-fast);
}

.contact-item:hover .contact-item-icon svg {
  color: var(--primary-green);
}

.contact-item-text h4 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
  font-size: 1.0625rem;
  margin-bottom: 0;
}

.contact-item-text a:hover {
  color: var(--sand-light);
}

.contact-social {
  display: flex;
  gap: var(--space-sm);
  position: relative;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  transition: all var(--transition-bounce);
}

.contact-social a:hover {
  background-color: var(--turquoise);
  transform: scale(1.15) rotate(10deg);
}

.contact-social svg {
  width: 22px;
  height: 22px;
}

/* Contact Form */
.contact-form {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: var(--space-lg);
  color: var(--gray-dark);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem var(--space-md);
  font-family: inherit;
  font-size: 1rem;
  color: var(--gray-dark);
  background-color: var(--sand-light);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  background-color: #fdf2f2;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background-color: var(--turquoise);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 200%;
  background: transparent;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(100%, 0) rotate(360deg);
  }
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  position: relative;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-size: 1.75rem;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 0;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

/* ============================================
   FOOTER BANNER
   ============================================ */
.footer-banner {
  display: flex;
}

.footer-banner-green {
  flex: 1;
  background-color: var(--primary-green);
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  align-items: center;
}

.footer-banner-green p {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.footer-banner-yellow {
  flex: 1;
  background-color: var(--yellow);
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-banner-yellow a {
  color: var(--primary-green);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: underline;
}

.footer-banner-yellow a:hover {
  text-decoration: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-xl);
  position: relative;
}

.footer.footer-light {
  background-color: var(--white);
  color: var(--gray-dark);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2xl);
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  height: 80px;
  margin-bottom: var(--space-sm);
}

.footer-social {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.footer.footer-light .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--gray-dark);
  transition: all var(--transition-fast);
}

.footer.footer-light .footer-social a:hover {
  color: var(--primary-green);
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.footer.footer-light .footer-contact-info a,
.footer.footer-light .footer-contact-info span {
  color: var(--gray-dark);
}

.footer.footer-light .footer-contact-info a:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--primary-green);
  margin: 0;
}

.footer-nav-section {
  display: flex;
  gap: var(--space-3xl);
}

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

.footer.footer-light .footer-links a {
  color: var(--gray-dark);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer.footer-light .footer-links a:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

.footer.footer-light .footer-legal a {
  color: var(--gray);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--turquoise);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-bounce);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  animation: none;
}

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

/* RS-Widget / Reservation Widget */
#rs-widget,
rc-widget {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 999;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease forwards;
}

/* Scroll animations (triggered by JS) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   OTEL KONSEPT SECTION - Yellow Background
   ============================================ */
.konsept-section {
  background-color: var(--yellow);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.konsept-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 5 L32 25 L30 30 L28 25 Z' fill='%23ffffff15'/%3E%3C/svg%3E") repeat;
  opacity: 0.3;
}

.konsept-section .section-header {
  position: relative;
  z-index: 1;
}

.konsept-section .section-title {
  color: var(--primary-green);
}

.konsept-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.konsept-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  position: relative;
}

.konsept-box-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.konsept-box-icon.icon-green {
  background-color: var(--primary-green);
  color: var(--white);
}

.konsept-box-icon.icon-turquoise {
  background-color: var(--turquoise);
  color: var(--white);
}

.konsept-box-icon.icon-yellow {
  background-color: var(--yellow);
  color: var(--primary-green);
}

.konsept-box-icon svg {
  width: 28px;
  height: 28px;
}

.konsept-box h3 {
  font-size: 1.25rem;
  color: var(--primary-green);
  margin-bottom: var(--space-sm);
}

.konsept-box p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.konsept-box ul {
  margin: 0;
  padding: 0;
}

.konsept-box ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
  color: var(--gray-dark);
  font-size: 0.9rem;
}

.konsept-box ul li::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: bold;
  flex-shrink: 0;
}

.konsept-deco {
  position: absolute;
  z-index: 0;
  opacity: 0.15;
}

.konsept-deco-left {
  left: -50px;
  bottom: 20%;
  width: 200px;
}

.konsept-deco-right {
  right: -30px;
  top: 20%;
  width: 180px;
}

/* ============================================
   VIZYON / MISYON GRID SECTION
   ============================================ */
.vizyon-misyon-section {
  padding: var(--space-3xl) 0;
  background-color: var(--cream);
}

.vizyon-misyon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-md);
  min-height: 500px;
}

.vm-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.vm-box-text {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: var(--white);
}

.vm-box-turquoise {
  background-color: var(--turquoise);
}

.vm-box-green {
  background-color: var(--primary-green);
}

.vm-box h3 {
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.vm-box h3 svg {
  width: 32px;
  height: 32px;
}

.vm-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.vm-box-image {
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.vm-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* Tablet */
@media (max-width: 1024px) {
  .header-inner {
    padding: var(--space-sm) 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, var(--white), var(--sand-light));
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-xl);
    gap: var(--space-lg);
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-xl);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--gray-dark);
    font-size: 1.25rem;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-orange);
  }

  .nav-contact {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-right: var(--space-sm);
  }

  .nav-phone {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all var(--transition-fast);
  }

  .header.scrolled .nav-phone {
    background-color: var(--sand);
    color: var(--primary-green);
  }

  .nav-phone span {
    display: none;
  }

  .nav-phone svg {
    width: 18px;
    height: 18px;
  }

  .nav-social {
    gap: var(--space-xs);
  }

  .nav-social a {
    width: 38px;
    height: 38px;
  }

  .nav-social svg {
    width: 18px;
    height: 18px;
  }

  .menu-toggle {
    display: flex;
  }

  .about-grid,
  .honeymoon-content,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-img-secondary {
    position: static;
    width: 100%;
    margin-top: var(--space-md);
  }

  .about-content {
    padding-left: 0;
  }

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

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

  .room-detail-grid {
    grid-template-columns: 1fr;
  }

  .room-info {
    position: static;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

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

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

  .form-group.full-width {
    grid-column: span 1;
  }

  .page-header {
    height: 40vh;
    min-height: 300px;
    background-attachment: scroll;
  }

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

  .konsept-grid-3 {
    grid-template-columns: 1fr;
  }

  .vizyon-misyon-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .vm-box-text {
    padding: var(--space-lg);
  }

  .vm-box h3 {
    font-size: 1.5rem;
  }

  .honeymoon-section {
    background-attachment: scroll;
  }

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

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

  .room-gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .whatsapp-float {
    bottom: var(--space-md);
    right: var(--space-md);
    width: 56px;
    height: 56px;
  }

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

/* Small Mobile */
@media (max-width: 480px) {
  :root {
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 3rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.375rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .contact-info {
    padding: var(--space-lg);
  }

  .contact-form {
    padding: var(--space-lg);
  }
}

/* Print Styles */
@media print {

  .header,
  .footer,
  .whatsapp-float,
  .hero-scroll {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: var(--space-xl) 0;
  }

  .section {
    padding: var(--space-lg) 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .whatsapp-float {
    animation: none;
  }
}

/* Focus styles for accessibility - only show on keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary-green);
  outline-offset: 3px;
}

/* Remove outline on mouse click */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background-color: var(--primary-green);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  z-index: 10000;
  transition: top var(--transition-fast);
  border-radius: 0 0 var(--radius-md) 0;
  font-family: var(--font-heading);
}

.skip-link:focus {
  top: 0;
}

/* Selection styles */
::selection {
  background-color: var(--turquoise);
  color: var(--white);
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--sand);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-green);
  border-radius: 6px;
  border: 2px solid var(--sand);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--turquoise);
}

/* ============================================
   TROPICAL DECORATIVE ELEMENTS
   ============================================ */
.tropical-leaf {
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
}

.tropical-leaf-1 {
  top: 10%;
  left: -5%;
  width: 200px;
  transform: rotate(-15deg);
}

.tropical-leaf-2 {
  bottom: 10%;
  right: -5%;
  width: 180px;
  transform: rotate(15deg);
}

/* Decorative dots pattern */
.dots-pattern {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--turquoise) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.15;
}

/* Fun border styles */
.fun-border {
  border: 3px dashed var(--primary-green);
  border-radius: var(--radius-lg);
}

/* Highlighted text */
.highlight {
  background-color: rgba(255, 193, 7, 0.3);
  padding: 0 4px;
}

/* Badge styles */
.badge {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
}

.badge-green {
  background-color: var(--primary-green);
  color: var(--white);
}

.badge-turquoise {
  background-color: var(--turquoise);
  color: var(--white);
}

.badge-yellow {
  background-color: var(--yellow);
  color: var(--black);
}

.badge-sand {
  background-color: var(--sand);
  color: var(--gray-dark);
}

/* ============================================
   COLORFUL INFO BOXES (Like Original Site)
   ============================================ */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.info-box {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
}

/* Turquoise box with white text */
.info-box-turquoise {
  background-color: var(--turquoise);
  color: var(--white);
}

.info-box-turquoise h3,
.info-box-turquoise h4 {
  color: var(--white);
}

/* Yellow box with green text */
.info-box-yellow {
  background-color: var(--yellow);
  color: var(--primary-green);
}

.info-box-yellow h3,
.info-box-yellow h4 {
  color: var(--primary-green);
}

/* Green box with white text */
.info-box-green {
  background-color: var(--primary-green);
  color: var(--white);
}

.info-box-green h3,
.info-box-green h4 {
  color: var(--white);
}

/* White box with green text */
.info-box-white {
  background-color: var(--white);
  color: var(--gray-dark);
  box-shadow: var(--shadow-sm);
}

.info-box-white h3,
.info-box-white h4 {
  color: var(--primary-green);
}

/* Colorful section title bar */
.section-title-bar {
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title-bar.bar-green {
  background-color: var(--primary-green);
}

.section-title-bar.bar-turquoise {
  background-color: var(--turquoise);
}

.section-title-bar.bar-yellow {
  background-color: var(--yellow);
}

/* ============================================
   HIGHLIGHT CARDS (Like Original Site)
   ============================================ */
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--space-2xl);
}

.highlight-card {
  padding: var(--space-lg) var(--space-md);
  text-align: left;
}

.highlight-card.highlight-green {
  background-color: var(--primary-green);
  color: var(--yellow);
}

.highlight-card.highlight-blue {
  background-color: var(--turquoise);
  color: var(--white);
}

.highlight-card.highlight-yellow {
  background-color: var(--yellow);
  color: var(--primary-green);
}

.highlight-image {
  margin-bottom: var(--space-md);
}

.highlight-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.highlight-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.highlight-card.highlight-green h3 {
  color: var(--yellow);
}

.highlight-card.highlight-blue h3 {
  color: var(--white);
}

.highlight-card.highlight-yellow h3 {
  color: var(--primary-green);
}

.highlight-card ul {
  list-style: disc;
  padding-left: var(--space-sm);
  line-height: 1.7;
  margin: 0;
}

.highlight-card ul li {
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.highlight-card.highlight-green ul li {
  color: var(--yellow);
}

.highlight-card.highlight-blue ul li {
  color: var(--white);
}

.highlight-card.highlight-yellow ul li {
  color: var(--primary-green);
}

@media (max-width: 992px) {
  .highlight-cards {
    grid-template-columns: 1fr;
  }

  .highlight-image img {
    height: 200px;
  }
}

.section-title-bar h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title-bar.bar-yellow h2 {
  color: var(--primary-green);
}

/* ============================================
   NEW ABOUT SECTION DESIGN
   ============================================ */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-decor {
  position: absolute;
  color: var(--primary-green);
  pointer-events: none;
  z-index: 0;
}

.about-decor-left {
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}

.about-grid-new {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-content {
  padding-right: var(--space-lg);
}

.about-stats-new {
  display: flex;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.stat-item-new {
  text-align: center;
  padding: var(--space-md);
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  border-radius: var(--radius-lg);
  flex: 1;
}

.stat-number-new {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label-new {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: var(--space-xs);
}

.about-gallery {
  position: relative;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-md);
  height: 450px;
}

.about-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-gallery-item:hover img {
  transform: scale(1.05);
}

.about-gallery-main {
  grid-row: span 2;
}

.about-gallery-small-1,
.about-gallery-small-2 {
  grid-column: 2;
}

@media (max-width: 992px) {
  .about-grid-new {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding-right: 0;
  }

  .about-gallery-grid {
    height: 350px;
  }

  .about-stats-new {
    flex-wrap: wrap;
  }

  .stat-item-new {
    min-width: 120px;
  }
}

/* ============================================
   MEAL CARDS (Concept Section)
   ============================================ */
.meal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.meal-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.meal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.meal-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.meal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.meal-card:hover .meal-card-image img {
  transform: scale(1.05);
}

.meal-card-content {
  padding: var(--space-lg);
  flex: 1;
}

.meal-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.meal-card-header svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  stroke-width: 1.5;
}

.meal-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.meal-time {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

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

.meal-list li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
  color: var(--gray);
}

.meal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* Yellow Card */
.meal-card-yellow .meal-card-content {
  background-color: var(--yellow);
}

.meal-card-yellow .meal-card-content h3,
.meal-card-yellow .meal-card-header svg {
  color: var(--primary-green);
}

.meal-card-yellow .meal-time {
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--primary-green);
}

.meal-card-yellow .meal-list li {
  color: var(--gray-dark);
}

.meal-card-yellow .meal-list li::before {
  background-color: var(--primary-green);
}

/* Turquoise Card */
.meal-card-turquoise .meal-card-content {
  background-color: var(--turquoise);
}

.meal-card-turquoise .meal-card-content h3,
.meal-card-turquoise .meal-card-header svg {
  color: var(--white);
}

.meal-card-turquoise .meal-time {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.meal-card-turquoise .meal-list li {
  color: var(--white);
}

.meal-card-turquoise .meal-list li::before {
  background-color: var(--white);
}

/* Green Card */
.meal-card-green .meal-card-content {
  background-color: var(--primary-green);
}

.meal-card-green .meal-card-content h3,
.meal-card-green .meal-card-header svg {
  color: var(--white);
}

.meal-card-green .meal-time {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.meal-card-green .meal-list li {
  color: var(--white);
}

.meal-card-green .meal-list li::before {
  background-color: var(--yellow);
}

@media (max-width: 992px) {
  .meal-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============================================
   IMPROVED HEADER
   ============================================ */
.header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}

.header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 75px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.header.scrolled .logo img {
  height: 60px;
  filter: none;
}

.nav-link {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header.scrolled .nav-link {
  text-shadow: none;
}

/* ============================================
   IMPROVED FOOTER
   ============================================ */
.footer-banner {
  flex-wrap: wrap;
}

.footer-banner-green {
  padding: var(--space-lg) var(--space-xl);
  justify-content: center;
  text-align: center;
}

.footer-banner-green p {
  font-size: 1.1rem;
}

.footer-banner-yellow {
  padding: var(--space-lg) var(--space-xl);
}

.footer-banner-yellow a {
  font-size: 1.3rem;
}

.footer.footer-light {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
  border-top: 4px solid var(--primary-green);
}

.footer-grid {
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 90px;
  margin-bottom: var(--space-md);
}

.footer-social {
  margin-bottom: var(--space-md);
}

.footer.footer-light .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.footer.footer-light .footer-social a:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: scale(1.1);
}

.footer-contact-info {
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-nav-section {
  gap: var(--space-2xl);
}

.footer-links {
  gap: var(--space-xs);
}

.footer.footer-light .footer-links a {
  font-size: 0.95rem;
  padding: 4px 0;
  position: relative;
}

.footer.footer-light .footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-green);
  transition: width var(--transition-fast);
}

.footer.footer-light .footer-links a:hover::after {
  width: 100%;
}

.footer-copyright {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--gray-lighter);
  font-size: 0.85rem;
  color: var(--gray);
}

@media (max-width: 768px) {
  .footer-banner {
    flex-direction: column;
  }

  .footer-banner-green,
  .footer-banner-yellow {
    padding: var(--space-md);
  }

  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-nav-section {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }

  .footer-links {
    align-items: center;
  }
}

/* ============================================
   SVG DECORATIVE ELEMENTS
   ============================================ */
.section-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}

.decor-palm {
  color: var(--primary-green);
}

.decor-wave {
  color: var(--turquoise);
}

/* Tropical pattern for backgrounds */
.tropical-bg {
  position: relative;
}

.tropical-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(40, 133, 26, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(61, 155, 233, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   COLORFUL IMAGE GALLERY - NEW DESIGN
   ============================================ */
.colorful-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: stretch;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.gallery-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--yellow), var(--turquoise), var(--primary-green));
}

.gallery-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.gallery-side-item {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gallery-side-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 190px;
}

.gallery-side-item:first-child {
  border: 4px solid var(--turquoise);
}

.gallery-side-item:last-child {
  border: 4px solid var(--yellow);
}

@media (max-width: 768px) {
  .colorful-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-main img {
    min-height: 250px;
  }

  .gallery-side {
    flex-direction: row;
  }

  .gallery-side-item img {
    min-height: 150px;
  }
}

/* ============================================
   ACTIVITY CARDS WITH PHOTOS
   ============================================ */
.activity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.activity-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  height: 320px;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.activity-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  color: var(--white);
}

.activity-card-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-sm);
}

.activity-card-badge.badge-yellow {
  background-color: var(--yellow);
  color: var(--black);
}

.activity-card-badge.badge-turquoise {
  background-color: var(--turquoise);
  color: var(--white);
}

.activity-card-badge.badge-green {
  background-color: var(--primary-green);
  color: var(--white);
}

.activity-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--white);
}

.activity-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .activity-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .activity-cards {
    grid-template-columns: 1fr;
  }

  .activity-card {
    height: 280px;
  }
}

/* ============================================
   COLORFUL SECTION BACKGROUNDS
   ============================================ */
.section-turquoise {
  background-color: var(--turquoise);
  color: var(--white);
}

.section-turquoise .section-badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section-turquoise .section-title,
.section-turquoise .section-desc {
  color: var(--white);
}

.section-yellow {
  background-color: var(--yellow);
  color: var(--black);
}

.section-yellow .section-badge {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--black);
}

/* ============================================
   COLORFUL FEATURE CARDS
   ============================================ */
.feature-card.feature-turquoise {
  background-color: var(--turquoise);
  color: var(--white);
}

.feature-card.feature-turquoise .feature-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.feature-card.feature-turquoise h3,
.feature-card.feature-turquoise p {
  color: var(--white);
}

.feature-card.feature-yellow {
  background-color: var(--yellow);
  color: var(--black);
}

.feature-card.feature-yellow .feature-icon {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--black);
}

.feature-card.feature-yellow h3 {
  color: var(--black);
}

/* Section-green feature cards */
.section-green .feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-green .feature-card h3 {
  color: var(--white);
}

.section-green .feature-card p {
  color: rgba(255, 255, 255, 0.9);
}

/* Feature cards with colored accents */
.feature-card.accent-turquoise {
  border-left: 4px solid var(--turquoise);
}

.feature-card.accent-turquoise .feature-icon {
  background-color: var(--turquoise);
  color: var(--white);
}

.feature-card.accent-turquoise h3 {
  color: var(--turquoise);
}

.feature-card.accent-yellow {
  border-left: 4px solid var(--yellow);
}

.feature-card.accent-yellow .feature-icon {
  background-color: var(--yellow);
  color: var(--black);
}

.feature-card.accent-yellow h3 {
  color: var(--yellow-dark);
}

.feature-card.accent-green {
  border-left: 4px solid var(--primary-green);
}

.feature-card.accent-green .feature-icon {
  background-color: var(--primary-green);
  color: var(--white);
}

.feature-card.accent-green h3 {
  color: var(--primary-green);
}

.section-green .feature-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Colorful feature cards on green background */
.section-green .feature-card.card-turquoise {
  background-color: var(--turquoise);
}

.section-green .feature-card.card-turquoise .feature-icon {
  background-color: rgba(255, 255, 255, 0.25);
}

.section-green .feature-card.card-yellow {
  background-color: var(--yellow);
}

.section-green .feature-card.card-yellow h3,
.section-green .feature-card.card-yellow p {
  color: var(--black);
}

.section-green .feature-card.card-yellow .feature-icon {
  background-color: rgba(0, 0, 0, 0.1);
}

.section-green .feature-card.card-yellow .feature-icon svg {
  color: var(--black);
}

.section-green .feature-card.card-white {
  background-color: var(--white);
}

.section-green .feature-card.card-white h3 {
  color: var(--primary-green);
}

.section-green .feature-card.card-white p {
  color: var(--gray);
}

.section-green .feature-card.card-white .feature-icon {
  background-color: var(--primary-green);
}

.section-green .feature-card.card-white .feature-icon svg {
  color: var(--white);
}

.section-green .feature-icon svg {
  color: var(--white);
}

/* Colored Titles */
.title-turquoise {
  color: var(--turquoise) !important;
}

.title-yellow {
  color: var(--yellow) !important;
}

.title-green {
  color: var(--primary-green) !important;
}

/* Colored Buttons */
.btn-turquoise {
  background-color: var(--turquoise);
  color: var(--white);
}

.btn-turquoise:hover {
  background-color: #1a9a9a;
  transform: translateY(-2px);
}

.btn-yellow {
  background-color: var(--yellow);
  color: var(--black);
}

.btn-yellow:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.btn-green {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-green:hover {
  background-color: var(--primary-green-dark);
  transform: translateY(-2px);
}

/* Colored Slider Nav */
.room-slider.slider-turquoise .room-slider-nav svg {
  color: var(--turquoise);
}

.room-slider.slider-turquoise .room-slider-dot.active {
  background-color: var(--turquoise);
  border-color: var(--turquoise);
}

.room-slider.slider-yellow .room-slider-nav svg {
  color: var(--yellow);
}

.room-slider.slider-yellow .room-slider-dot.active {
  background-color: var(--yellow);
  border-color: var(--yellow);
}

.room-slider.slider-green .room-slider-nav svg {
  color: var(--primary-green);
}

.room-slider.slider-green .room-slider-dot.active {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

/* Photo gallery section */
.photo-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.photo-showcase-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}

.photo-showcase-item.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.photo-showcase-item.tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2;
}

.photo-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.photo-showcase-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .photo-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-showcase-item.wide {
    grid-column: span 2;
  }

  .photo-showcase-item.tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }
}

/* ============================================
   ROOM IMAGE GALLERY - COLORFUL BORDERS
   ============================================ */
.room-images-colorful {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.room-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.room-img-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.room-img-box:hover img {
  transform: scale(1.05);
}

.room-img-box.border-yellow {
  border: 4px solid var(--yellow);
}

.room-img-box.border-turquoise {
  border: 4px solid var(--turquoise);
}

.room-img-box.border-green {
  border: 4px solid var(--primary-green);
}

/* ============================================
   COLORFUL STATS
   ============================================ */
.colorful-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.stat-card {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card.stat-yellow {
  background-color: var(--yellow);
  color: var(--black);
}

.stat-card.stat-turquoise {
  background-color: var(--turquoise);
  color: var(--white);
}

.stat-card.stat-green {
  background-color: var(--primary-green);
  color: var(--white);
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-card.stat-yellow .stat-number {
  color: var(--black);
}

.stat-card.stat-turquoise .stat-number,
.stat-card.stat-green .stat-number {
  color: var(--white);
}

.stat-card .stat-label {
  font-size: 0.875rem;
  font-weight: 600;
}

.stat-card.stat-yellow .stat-label {
  color: var(--black);
}

.stat-card.stat-turquoise .stat-label,
.stat-card.stat-green .stat-label {
  color: var(--white);
}

@media (max-width: 576px) {
  .colorful-stats {
    grid-template-columns: 1fr;
    max-width: 250px;
    margin: 0 auto;
  }
}

/* ============================================
   ROOM IMAGE SLIDER
   ============================================ */
.room-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: var(--sand);
}

.room-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.room-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.room-slide {
  min-width: 100%;
  height: 100%;
}

.room-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.room-slider-nav:hover {
  background-color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.room-slider-nav svg {
  width: 20px;
  height: 20px;
  color: var(--primary-green);
}

.room-slider-prev {
  left: var(--space-md);
}

.room-slider-next {
  right: var(--space-md);
}

.room-slider-dots {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-xs);
  z-index: 10;
}

.room-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.room-slider-dot.active {
  background-color: var(--turquoise);
  border-color: var(--turquoise);
}

.room-slider-dot:hover {
  background-color: var(--white);
}

/* Color accent bar under slider */
.room-slider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow), var(--turquoise), var(--primary-green));
}

@media (max-width: 768px) {
  .room-slider-nav {
    width: 36px;
    height: 36px;
  }

  .room-slider-nav svg {
    width: 16px;
    height: 16px;
  }

  .room-slider-prev {
    left: var(--space-sm);
  }

  .room-slider-next {
    right: var(--space-sm);
  }
}