/* ===================================
   KIRANYA HOMESTAY - MAIN STYLESHEET
   Beautiful Animations & Transitions
   =================================== */

/* ========== CSS Variables ========== */
:root {
  --primary-color: #2c5f2d;
  --secondary-color: #97bc62;
  --accent-color: #ff6b35;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --text-dark: #333;
  --text-light: #666;
  --white: #ffffff;
  
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-md: 0 5px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.3);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Global Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

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

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

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

/* ========== Innovative Animated Navigation ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.95), rgba(44, 95, 45, 0.98));
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 20px rgba(44, 95, 45, 0.3);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: navSlideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 2px solid rgba(151, 188, 98, 0.3);
  transform: translateY(0) !important;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

.navbar *,
.navbar *:focus,
.navbar *:active {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  outline: none;
}

@keyframes navSlideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(151, 188, 98, 0.1) 25%, 
    rgba(151, 188, 98, 0.15) 50%, 
    rgba(151, 188, 98, 0.1) 75%, 
    transparent 100%);
  animation: navShimmer 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes navShimmer {
  0%, 100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.98), rgba(44, 95, 45, 1));
  box-shadow: 0 8px 32px rgba(44, 95, 45, 0.4);
  border-bottom: 3px solid var(--secondary-color);
}

.navbar.scrolled::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), #d4af37, var(--secondary-color));
  animation: progressBar 3s ease-in-out infinite;
}

@keyframes progressBar {
  0%, 100% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  51% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  transition: padding 0.4s ease;
}

.navbar.scrolled .nav-container {
  padding: 0.7rem 2.5rem;
}

/* ========== Animated Logo ========== */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  cursor: pointer;
  z-index: 10;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  text-decoration: none;
}


.logo::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(44, 95, 45, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.logo:hover::before {
  opacity: 1;
  animation: logoPulse 1.5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.2),
              0 4px 15px rgba(44, 95, 45, 0.1);
  position: relative;
  z-index: 1;
}

.navbar.scrolled .logo img {
  width: 45px;
  height: 45px;
}

.logo:hover img {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 0 0 5px rgba(44, 95, 45, 0.3),
              0 8px 25px rgba(44, 95, 45, 0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  position: relative;
}

.logo-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Playfair Display', serif;
  transition: all 0.3s ease;
  position: relative;
}

.logo:hover .logo-title {
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.logo:hover .logo-sub {
  color: #d4af37;
  opacity: 1;
  transform: translateX(3px);
}

/* ========== Innovative Nav Menu ========== */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  animation: menuFadeIn 0.8s ease-out 0.3s both;
}

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

.nav-menu li {
  position: relative;
}

.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  padding: 0.7rem 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
}

/* Animated Background on Hover */
.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 188, 98, 0.3), rgba(255, 255, 255, 0.2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: 12px;
}

.nav-link:hover::before {
  transform: scaleX(1);
}

/* Bottom Border Animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, var(--secondary-color));
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
}

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

.nav-link:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.nav-link.active {
  color: #ffffff;
  background: rgba(151, 188, 98, 0.25);
}

/* Book Now Button with Special Animation */
.btn-book {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
  color: var(--white) !important;
  padding: 0.7rem 1.8rem !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  box-shadow: 0 5px 15px rgba(44, 95, 45, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  animation: bookButtonPulse 2s ease-in-out infinite;
}

@keyframes bookButtonPulse {
  0%, 100% {
    box-shadow: 0 5px 15px rgba(44, 95, 45, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.5);
  }
}

.btn-book::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-book:hover::before {
  width: 300px;
  height: 300px;
}

.btn-book:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 10px 30px rgba(44, 95, 45, 0.4) !important;
}

/* Mobile Toggle with Animation */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #d4af37);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
  background: #d4af37;
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
  background: #d4af37;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  z-index: 1001;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(44, 95, 45, 0.5);
}

/* ========== Buttons ========== */
.btn-book,
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-book,
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary::before,
.btn-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before,
.btn-book:hover::before {
  left: 100%;
}

.btn-primary:hover,
.btn-book:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--accent-color);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #e55a2a;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* ========== Hero Slider ========== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease, transform 1s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  animation: kenBurns 10s ease-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(44, 95, 45, 0.3) 0%,
    rgba(151, 188, 98, 0.2) 50%,
    rgba(44, 95, 45, 0.35) 100%
  );
  animation: overlayShift 15s ease-in-out infinite;
}

@keyframes overlayShift {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.5;
  }
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  width: 90%;
  max-width: 800px;
  z-index: 2;
}

/* Slide 1 - Text at Top */
.slide-content-top {
  top: 25%;
  transform: translate(-50%, -50%);
}

/* Slide 2 - Text at Middle (default) */
.slide-content-middle {
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Slide 3 - Text at Bottom */
.slide-content-bottom {
  top: 75%;
  transform: translate(-50%, -50%);
}

.slide.active .slide-content * {
  animation-fill-mode: both;
}

.slide.active [data-animation="fadeInUp"] {
  animation: fadeInUp 1s ease-out;
}

.slide.active [data-animation="fadeInUp"][data-delay="200"] {
  animation-delay: 0.2s;
}

.slide.active [data-animation="fadeInUp"][data-delay="400"] {
  animation-delay: 0.4s;
}

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

.slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.slide-text {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 10;
  animation: fadeIn 1s ease 0.5s both;
}

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

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.slider-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
}

.slider-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition-normal);
}

.slider-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.slider-dot.active::before {
  opacity: 1;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

.slide-counter {
  display: none;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== Quick Features Section ========== */
.quick-features {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.quick-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255,255,255,1), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg);
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== Welcome Section - Innovative Design ========== */
.welcome-section-new {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.welcome-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(44, 95, 45, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(151, 188, 98, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Header with Animated Lines */
.welcome-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.animated-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  margin: 0 auto 20px;
  animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.2);
  }
}

.section-label-new {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title-new {
  font-size: 3.5rem;
  color: var(--dark-color);
  margin: 20px 0;
  line-height: 1.2;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Main Grid Layout */
.welcome-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

/* Image Stack with Premium Card Fan Animation */
.welcome-images-new {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
}

.image-stack {
  position: relative;
  width: 100%;
  max-width: 330px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-card {
  position: absolute;
  width: 240px;
  height: 310px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  left: 30%;
  top: 50%;
  transform-origin: bottom center;
  opacity: 0;
}

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

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

.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: left 0.8s ease;
  z-index: 1;
}

.stack-card:hover .card-shine {
  left: 100%;
}

/* Default State - Cards Stacked (Before Scroll) */
.card-1 {
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: 3;
  transition-delay: 0.2s;
}

.card-2 {
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: 2;
  transition-delay: 0.4s;
}

.card-3 {
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: 1;
  transition-delay: 0.6s;
}

/* Animated State - Cards Fan Out (On Scroll) */
.welcome-section-new.cards-visible .card-1 {
  transform: translate(-50%, -50%) translate(-80px, -20px) rotate(-20deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  opacity: 1;
  z-index: 3;
}

.welcome-section-new.cards-visible .card-2 {
  transform: translate(-50%, -50%) translate(80px, -30px) rotate(-2deg);
  box-shadow: 0 25px 70px rgba(0,0,0,0.3);
  opacity: 1;
  z-index: 4;
}

.welcome-section-new.cards-visible .card-3 {
  transform: translate(-50%, -50%) translate(240px, -15px) rotate(15deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  opacity: 1;
  z-index: 3;
}

/* Individual Card Hover - Lift Effect */
.stack-card:hover {
  transform: translate(-50%, -50%) translateY(-40px) scale(1.05) !important;
  z-index: 10 !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35) !important;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: white;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.badge-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 40px;
  left: -30px;
  animation-delay: 1.5s;
}

.badge-icon {
  font-size: 1.8rem;
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Content Area */
.welcome-content-new {
  padding: 20px 0;
}

.content-intro {
  margin-bottom: 40px;
}

.intro-paragraph {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-light);
}

.highlight-text {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0.3;
}

/* Feature Cards Grid */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05), rgba(151, 188, 98, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: var(--primary-color);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(10deg) scale(1.1);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-card h4 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* CTA Button */
.welcome-cta {
  text-align: left;
}

.btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.btn-discover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-discover:hover::before {
  left: 100%;
}

.btn-discover:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(44, 95, 45, 0.4);
}

.btn-discover svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-discover:hover svg {
  transform: translateX(5px);
}

/* Bottom Highlights Bar */
.welcome-highlights-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.highlight-bar-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.highlight-bar-item:hover {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05), rgba(151, 188, 98, 0.05));
  transform: translateY(-5px);
}

.bar-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.bar-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-color);
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .welcome-images-new {
    height: 500px;
    order: 2;
    justify-content: center;
    padding-left: 0;
  }

  .welcome-content-new {
    order: 1;
  }

  .section-title-new {
    font-size: 2.8rem;
  }

  .feature-cards-grid {
    grid-template-columns: 1fr;
  }

  .welcome-highlights-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stack-card {
    width: 320px;
    height: 400px;
    left: 50%;
  }

  .welcome-section-new.cards-visible .card-1 {
    transform: translate(-50%, -50%) translate(-40px, -15px) rotate(-15deg);
  }

  .welcome-section-new.cards-visible .card-2 {
    transform: translate(-50%, -50%) translate(100px, -25px) rotate(0deg);
  }

  .welcome-section-new.cards-visible .card-3 {
    transform: translate(-50%, -50%) translate(240px, -15px) rotate(15deg);
  }
}

@media (max-width: 768px) {
  .welcome-section-new {
    padding: 80px 0;
  }

  .section-title-new {
    font-size: 2.2rem;
  }

  .welcome-images-new {
    height: 350px;
  }

  .stack-card {
    width: 260px;
    height: 340px;
  }

  .floating-badge {
    padding: 12px 16px;
  }

  .badge-icon {
    font-size: 1.5rem;
  }

  .badge-number {
    font-size: 1.1rem;
  }

  .welcome-highlights-bar {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .intro-paragraph {
    font-size: 1.05rem;
  }

  .welcome-section-new.cards-visible .card-1 {
    transform: translate(-50%, -50%) translate(0px, -10px) rotate(-12deg);
  }

  .welcome-section-new.cards-visible .card-2 {
    transform: translate(-50%, -50%) translate(100px, -20px) rotate(0deg);
  }

  .welcome-section-new.cards-visible .card-3 {
    transform: translate(-50%, -50%) translate(200px, -10px) rotate(12deg);
  }
}

@media (max-width: 480px) {
  .section-title-new {
    font-size: 1.8rem;
  }

  .welcome-grid {
    gap: 40px;
  }

  .feature-card {
    padding: 25px;
  }

  .btn-discover {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .welcome-images-new {
    height: 350px;
  }

  .image-stack {
    max-width: 100%;
  }

  .stack-card {
    width: 200px;
    height: 260px;
    left: 50%;
  }

  .welcome-section-new.cards-visible .card-1 {
    transform: translate(-50%, -50%) translate(-110px, -10px) rotate(-12deg);
  }

  .welcome-section-new.cards-visible .card-2 {
    transform: translate(-50%, -50%) translate(0px, -20px) rotate(0deg);
  }

  .welcome-section-new.cards-visible .card-3 {
    transform: translate(-50%, -50%) translate(110px, -10px) rotate(12deg);
  }

  .floating-badge {
    padding: 10px 14px;
  }

  .badge-1 {
    top: 10px;
    right: -10px;
  }

  .badge-2 {
    bottom: 20px;
    left: -15px;
  }
}

/* ========== CTA Section ========== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

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

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

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

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

.cta-section .btn-primary:hover {
  background: var(--light-color);
}

.cta-section .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.cta-section .btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* ========== Footer ========== */
.footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.footer-logo h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin: 0;
}

.footer-logo p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-light);
  transition: var(--transition-normal);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-info svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--secondary-color);
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--secondary-color);
  transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  color: var(--text-light);
}

.footer-bottom p {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

/* ========== Premium Booking Modal ========== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

.modal.show {
  display: flex;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  animation: backdropFade 0.4s ease;
}

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

.modal-content-premium {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 0;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  position: relative;
  z-index: 2001;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalSlideUp {
  from {
    transform: translateY(50px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: none;
  font-size: 0;
}

.modal-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--dark-color);
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--accent-color);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.modal-close:hover svg {
  stroke: white;
}

.modal-header-premium {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 30px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.modal-header-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: headerPulse 4s ease-in-out infinite;
}

@keyframes headerPulse {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, 10px) scale(1.1); }
}

.modal-icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  position: relative;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.modal-icon-circle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.modal-icon-circle svg {
  width: 30px;
  height: 30px;
  stroke: white;
  stroke-width: 2;
}

.modal-header-premium h2 {
  color: white;
  font-size: 1.6rem;
  margin: 0 0 8px;
  font-weight: 600;
  position: relative;
}

.modal-header-premium p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.9rem;
  position: relative;
}

.booking-form-premium {
  padding: 25px 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group-premium {
  position: relative;
}

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

.form-group-premium label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.form-group-premium label svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary-color);
  flex-shrink: 0;
}

.form-group-premium input,
.form-group-premium select,
.form-group-premium textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.form-group-premium input:focus,
.form-group-premium select:focus,
.form-group-premium textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(44, 95, 45, 0.1);
  transform: translateY(-2px);
}

.form-group-premium input:hover,
.form-group-premium select:hover,
.form-group-premium textarea:hover {
  border-color: var(--secondary-color);
}

/* Date input styling */
.form-group-premium input[type="date"] {
  position: relative;
  cursor: pointer;
}

.form-group-premium input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  padding: 5px;
}

.form-group-premium input[type="date"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
  transform: scale(1.1);
}

/* Select dropdown styling */
.form-group-premium select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c5f2d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-group-premium select:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2397bc62' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.form-group-premium select option {
  padding: 10px;
  background: white;
  color: var(--dark-color);
}

/* Room type dropdown specific styling */
.room-type-dropdown {
  font-weight: 500;
}

.room-type-dropdown option {
  padding: 15px;
}

/* Submit Button */
.btn-submit-premium {
  width: 100%;
  padding: 14px 25px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.btn-submit-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-submit-premium:hover::before {
  left: 100%;
}

.btn-submit-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(44, 95, 45, 0.3);
}

.btn-submit-premium:active {
  transform: translateY(-1px);
}

.btn-submit-premium .btn-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
  animation: checkBounce 1s ease-in-out infinite;
}

@keyframes checkBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content-premium {
    max-width: 95%;
    margin: 10px;
  }
  
  .modal-header-premium {
    padding: 25px 20px;
  }
  
  .modal-header-premium h2 {
    font-size: 1.3rem;
  }
  
  .booking-form-premium {
    padding: 20px 15px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .modal-icon-circle {
    width: 50px;
    height: 50px;
  }
  
  .modal-icon-circle svg {
    width: 25px;
    height: 25px;
  }
}

/* Old Modal Styles for Compatibility */
.modal-content {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.modal-content h2 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

.modal-content p {
  color: var(--text-light);
  margin-bottom: 30px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44,95,45,0.1);
}

/* ========== AOS Animations ========== */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

[data-aos-delay="100"] {
  transition-delay: 0.1s;
}

[data-aos-delay="200"] {
  transition-delay: 0.2s;
}

[data-aos-delay="300"] {
  transition-delay: 0.3s;
}

/* ========== Responsive Design ========== */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.98), rgba(44, 95, 45, 0.95));
    backdrop-filter: blur(20px) saturate(180%);
    flex-direction: column;
    padding: 40px 20px;
    gap: 0;
    transition: left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: inset 0 10px 30px rgba(0,0,0,0.2);
    overflow-y: auto;
  }
  
  .nav-menu::before {
    display: none;
  }
  
  .nav-menu.active {
    left: 0;
    animation: menuSlideIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  @keyframes menuSlideIn {
    0% {
      left: -100%;
      opacity: 0;
    }
    100% {
      left: 0;
      opacity: 1;
    }
  }
  
  .nav-menu li {
    width: 100%;
    opacity: 0;
    transform: translateX(-50px);
    animation: menuItemSlide 0.5s ease forwards;
  }
  
  .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu.active li:nth-child(2) { animation-delay: 0.15s; }
  .nav-menu.active li:nth-child(3) { animation-delay: 0.2s; }
  .nav-menu.active li:nth-child(4) { animation-delay: 0.25s; }
  .nav-menu.active li:nth-child(5) { animation-delay: 0.3s; }
  .nav-menu.active li:nth-child(6) { animation-delay: 0.35s; }
  .nav-menu.active li:nth-child(7) { animation-delay: 0.4s; }
  
  @keyframes menuItemSlide {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .nav-link {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 15px;
    margin-bottom: 0.5rem;
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.95);
  }
  
  .nav-link:hover {
    background: rgba(151, 188, 98, 0.3);
    border-color: var(--secondary-color);
    transform: translateX(10px);
    color: #ffffff;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .btn-book {
    width: 90%;
    margin: 1rem auto;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
  }
  
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .nav-container {
    padding: 1rem 1.5rem;
  }
  
  .logo img {
    width: 45px;
    height: 45px;
  }
  
  .logo-title {
    font-size: 1.3rem;
  }
  
  .logo-sub {
    font-size: 0.75rem;
  }
}

@media (max-width: 640px) {
  .nav-container {
    padding: 0.8rem 1rem;
  }
  
  .logo img {
    width: 40px;
    height: 40px;
  }
  
  .logo-title {
    font-size: 1.2rem;
  }
  
  .logo-text {
    gap: 2px;
  }
  
  .nav-toggle span {
    width: 24px;
  }
  
  .nav-link {
    padding: 1rem 1.2rem;
    font-size: 1rem;
  }
  
  .btn-book {
    padding: 0.9rem 1.5rem !important;
    font-size: 1rem !important;
  }
}

/* ========== Navbar Animations on Load ========== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* ========== Smooth Transitions ========== */
.navbar,
.nav-link,
.logo img,
.btn-book {
  will-change: transform;
}

/* ========== Performance Optimization ========== */
.navbar {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ========== Accessibility ========== */
.nav-link:focus,
.btn-book:focus,
.nav-toggle:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 3px;
}

/* ========== Dark Mode Support (Optional) ========== */
@media (prefers-color-scheme: dark) {
  .navbar {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(40, 40, 40, 0.95));
    border-bottom-color: rgba(151, 188, 98, 0.2);
  }
  
  .nav-link {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .nav-link:hover {
    color: var(--secondary-color);
  }
}


/* ========== Additional Premium Animations ========== */

/* Floating Animation for Images */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.float-animation {
  animation: floatSlow 6s ease-in-out infinite;
}

/* Gradient Text Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

/* Ripple Effect */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.ripple-effect {
  position: relative;
  overflow: hidden;
}

.ripple-effect::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 1s ease-out;
}

/* Glow Effect */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(44, 95, 45, 0.5),
                0 0 10px rgba(44, 95, 45, 0.3),
                0 0 15px rgba(44, 95, 45, 0.2);
  }
  50% {
    box-shadow: 0 0 10px rgba(44, 95, 45, 0.8),
                0 0 20px rgba(44, 95, 45, 0.5),
                0 0 30px rgba(44, 95, 45, 0.3);
  }
}

.glow-effect:hover {
  animation: glow 2s ease-in-out infinite;
}

/* Bounce In Animation */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.bounce-in {
  animation: bounceIn 0.6s ease-out;
}

/* Slide In From Bottom */
@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-bottom {
  animation: slideInBottom 0.6s ease-out;
}

/* Rotate In Animation */
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-200deg) scale(0);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

.rotate-in {
  animation: rotateIn 0.6s ease-out;
}

/* Heartbeat Animation */
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  10%, 30% {
    transform: scale(0.9);
  }
  20%, 40%, 60%, 80% {
    transform: scale(1.1);
  }
  50%, 70% {
    transform: scale(1.05);
  }
}

.heartbeat {
  animation: heartbeat 1.5s ease-in-out infinite;
}

/* Shake Animation */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

.shake:hover {
  animation: shake 0.5s ease-in-out;
}

/* Zoom In Out Animation */
@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.zoom-in-out {
  animation: zoomInOut 3s ease-in-out infinite;
}

/* Typing Effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.typing-effect {
  overflow: hidden;
  border-right: 3px solid var(--primary-color);
  white-space: nowrap;
  animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
}

/* Fade In Scale */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-scale {
  animation: fadeInScale 0.6s ease-out;
}

/* Swing Animation */
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.swing:hover {
  transform-origin: top center;
  animation: swing 1s ease-in-out;
}

/* Background Gradient Animation */
@keyframes gradientBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animated-gradient {
  background: linear-gradient(270deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  background-size: 600% 600%;
  animation: gradientBackground 15s ease infinite;
}

/* Particle Effect */
@keyframes particle {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(50px) scale(0);
    opacity: 0;
  }
}

.particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: particle 3s ease-out infinite;
}

/* Neon Glow Effect */
@keyframes neonGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(44, 95, 45, 0.8),
                 0 0 20px rgba(44, 95, 45, 0.6),
                 0 0 30px rgba(44, 95, 45, 0.4);
  }
  50% {
    text-shadow: 0 0 20px rgba(44, 95, 45, 1),
                 0 0 30px rgba(44, 95, 45, 0.8),
                 0 0 40px rgba(44, 95, 45, 0.6);
  }
}

.neon-text {
  animation: neonGlow 2s ease-in-out infinite;
}

/* Enhanced Button Hover Effects */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-book {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-secondary::after,
.btn-outline::after,
.btn-book::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after,
.btn-secondary:hover::after,
.btn-outline:hover::after,
.btn-book:hover::after {
  width: 300px;
  height: 300px;
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Loading Spinner */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(44, 95, 45, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Hover Lift Effect */
.hover-lift {
  transition: all var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

/* Underline Animation */
.animated-underline {
  position: relative;
  display: inline-block;
}

.animated-underline::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.4s ease;
}

.animated-underline:hover::after {
  width: 100%;
}

/* Perspective Card Effect */
.perspective-card {
  perspective: 1000px;
  transition: transform 0.6s ease;
}

.perspective-card:hover {
  transform: rotateY(10deg) rotateX(5deg);
}

/* Glitch Effect */
@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

.glitch:hover {
  animation: glitch 0.3s ease-in-out;
}

/* Smooth Reveal on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

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

/* Enhanced Shadow on Hover */
.shadow-hover {
  transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}


/* ========== Enhanced Welcome Section ========== */
.intro-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 4px solid var(--primary-color);
}

.welcome-highlights {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 40px 0;
}

.highlight-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  transition: all var(--transition-smooth);
  border-left: 4px solid transparent;
}

.highlight-item:hover {
  border-left-color: var(--primary-color);
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  font-size: 3rem;
  flex-shrink: 0;
  animation: bounce 2s ease-in-out infinite;
}

.highlight-item:hover .highlight-icon {
  animation: none;
  transform: scale(1.2) rotate(360deg);
  transition: var(--transition-smooth);
}

.highlight-text h4 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.highlight-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== Experience Section ========== */
.experience-section {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
              url('../images/toursim.jpg') center/cover fixed;
  position: relative;
  overflow: hidden;
}

.experience-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(151, 188, 98, 0.15) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
}

.experience-section .section-header {
  color: white;
}

.experience-section .section-label {
  color: #d4af37;
}

.experience-section .section-title {
  color: white;
}

.experience-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.experience-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-smooth);
}

.experience-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.experience-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.experience-tag {
  background: linear-gradient(135deg, var(--accent-color), #ff8556);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.experience-content {
  padding: 35px;
}

.experience-content h3 {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  transition: var(--transition-normal);
}

.experience-card:hover .experience-content h3 {
  color: var(--primary-color);
}

.experience-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.experience-features {
  list-style: none;
  padding: 0;
}

.experience-features li {
  color: var(--text-dark);
  padding: 8px 0;
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.experience-features li:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

/* ========== Activities Section ========== */
.activities-section {
  padding: 100px 0;
  background: var(--white);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.activity-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border-top: 5px solid transparent;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

.activity-card:hover::before {
  transform: scaleX(1);
}

.activity-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: var(--transition-smooth);
}

.activity-card:hover .activity-icon {
  transform: scale(1.2) rotate(360deg);
}

.activity-card h3 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  transition: var(--transition-normal);
}

.activity-card:hover h3 {
  color: var(--primary-color);
}

.activity-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ========== Perfect For Section ========== */
.perfect-for-section {
  padding: 100px 0;
  background: #f8f9fa;
  color: var(--dark-color);
  position: relative;
  overflow: hidden;
}

.perfect-for-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.4;
}

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

.perfect-for-section .section-label {
  color: rgba(255,255,255,0.9);
}

.perfect-for-section .section-title {
  color: var(--white);
}

.perfect-for-section .section-header p {
  color: rgba(255,255,255,0.9);
}

.perfect-for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.perfect-card {
  display: flex;
  gap: 25px;
  padding: 35px;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-smooth);
}

.perfect-card:hover {
  transform: translateX(10px);
  background: var(--white);
  box-shadow: var(--shadow-xl);
}

.perfect-number {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.perfect-card:hover .perfect-number {
  transform: scale(1.2);
}

.perfect-content h3 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.perfect-content p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ========== Perfect For Section Ultra - Asymmetric Masonry Layout ========== */
.perfect-for-section-ultra {
  padding: 120px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.section-header-ultra {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 20px;
}

.section-badge {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title-ultra {
  font-size: 3.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-desc-ultra {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.perfect-grid-ultra {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  align-items: start;
  max-width: 100%;
  width: 100%;
}

.perfect-column-left,
.perfect-column-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.perfect-item-ultra {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: none;
  border: none;
  position: relative;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 0;
  transform: translateY(60px) scale(0.95);
}

.perfect-for-section-ultra.visible .perfect-item-ultra {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.perfect-item-ultra:nth-child(1) { transition-delay: 0.1s; }
.perfect-item-ultra:nth-child(2) { transition-delay: 0.3s; }
.perfect-item-ultra:nth-child(3) { transition-delay: 0.5s; }

.perfect-column-right .perfect-item-ultra:nth-child(1) { transition-delay: 0.2s; }
.perfect-column-right .perfect-item-ultra:nth-child(2) { transition-delay: 0.4s; }
.perfect-column-right .perfect-item-ultra:nth-child(3) { transition-delay: 0.6s; }

.perfect-item-ultra.large {
  min-height: 280px;
}

.perfect-item-ultra.small {
  min-height: 280px;
}

/* Three-Color Gradients for Each Card */
.perfect-item-ultra[data-category="families"] {
  background: linear-gradient(135deg, #2c5f2d 0%, #4a7c59 50%, #97bc62 100%);
  animation: floatCard1 6s ease-in-out infinite;
}

.perfect-item-ultra[data-category="spiritual"] {
  background: linear-gradient(135deg, #1e4620 0%, #2c5f2d 50%, #4a7c59 100%);
  animation: floatCard2 7s ease-in-out infinite;
}

.perfect-item-ultra[data-category="nature"] {
  background: linear-gradient(135deg, #4a7c59 0%, #6b9b6e 50%, #97bc62 100%);
  animation: floatCard3 8s ease-in-out infinite;
}

.perfect-item-ultra[data-category="weekend"] {
  background: linear-gradient(135deg, #2c5f2d 0%, #5a8c5e 50%, #8fb891 100%);
  animation: floatCard1 6.5s ease-in-out infinite;
}

.perfect-item-ultra[data-category="culture"] {
  background: linear-gradient(135deg, #3d6b3f 0%, #5a8c5e 50%, #7ea881 100%);
  animation: floatCard2 7.5s ease-in-out infinite;
}

.perfect-item-ultra[data-category="photography"] {
  background: linear-gradient(135deg, #5a8c5e 0%, #7ea881 50%, #a3c9a6 100%);
  animation: floatCard3 8.5s ease-in-out infinite;
}

.perfect-item-ultra:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  z-index: 10;
}

.item-content-ultra {
  padding: 40px;
  position: relative;
  z-index: 1;
}

.item-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.perfect-item-ultra:hover .item-badge {
  transform: rotate(360deg) scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.item-icon-ultra {
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.perfect-item-ultra:hover .item-icon-ultra {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(-10deg) scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.item-icon-ultra svg {
  width: 34px;
  height: 34px;
  color: white;
  transition: color 0.3s ease;
}

.perfect-item-ultra:hover .item-icon-ultra svg {
  color: white;
}

.item-content-ultra h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 12px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.perfect-item-ultra:hover .item-content-ultra h3 {
  color: rgba(255, 255, 255, 0.9);
}

.item-content-ultra p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.perfect-item-ultra[data-category="families"] {
  animation: floatCard1 6s ease-in-out infinite;
}

.perfect-item-ultra[data-category="spiritual"] {
  animation: floatCard2 7s ease-in-out infinite;
}

.perfect-item-ultra[data-category="nature"] {
  animation: floatCard3 8s ease-in-out infinite;
}

.perfect-item-ultra[data-category="weekend"] {
  animation: floatCard1 6.5s ease-in-out infinite;
}

.perfect-item-ultra[data-category="culture"] {
  animation: floatCard2 7.5s ease-in-out infinite;
}

.perfect-item-ultra[data-category="photography"] {
  animation: floatCard3 8.5s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatCard2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatCard3 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1024px) {
  .perfect-grid-ultra {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-title-ultra {
    font-size: 2.8rem;
  }

  .perfect-item-ultra.large,
  .perfect-item-ultra.small {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .perfect-for-section-ultra {
    padding: 80px 0;
  }

  .section-title-ultra {
    font-size: 2.2rem;
  }

  .section-desc-ultra {
    font-size: 1rem;
  }

  .item-content-ultra {
    padding: 40px;
  }

  .item-icon-ultra {
    width: 65px;
    height: 65px;
  }

  .item-icon-ultra svg {
    width: 32px;
    height: 32px;
  }

  .item-content-ultra h3 {
    font-size: 1.5rem;
  }

  .item-content-ultra p {
    font-size: 1rem;
  }

  .perfect-item-ultra.large,
  .perfect-item-ultra.small {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .section-title-ultra {
    font-size: 1.8rem;
  }

  .item-content-ultra {
    padding: 35px;
  }

  .item-badge {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    top: 25px;
    right: 25px;
  }

  .perfect-item-ultra.large,
  .perfect-item-ultra.small {
    min-height: 260px;
  }

  .item-content-ultra h3 {
    font-size: 1.3rem;
  }

  .item-content-ultra p {
    font-size: 0.95rem;
  }
}

/* ========== Responsive for New Sections ========== */
@media (max-width: 968px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .activities-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .perfect-for-grid {
    grid-template-columns: 1fr;
  }

  .perfect-card {
    flex-direction: column;
    text-align: center;
  }

  .perfect-number {
    font-size: 3rem;
  }

  .welcome-highlights {
    gap: 20px;
  }

  .highlight-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .intro-text {
    font-size: 1rem;
    padding-left: 15px;
  }

  .highlight-icon {
    font-size: 2.5rem;
  }

  .activity-icon {
    font-size: 3rem;
  }

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


/* ========== Floating Action Buttons ========== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
  animation: floatIn 0.6s ease-out;
}

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

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.floating-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.floating-btn:hover::before {
  transform: scale(1);
}

.floating-btn:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 35px rgba(44, 95, 45, 0.5);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

.floating-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-btn.phone {
  background: linear-gradient(135deg, var(--accent-color), #ff8556);
}

.floating-btn.scroll-top {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.floating-btn.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Tooltip for floating buttons */
.floating-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 70px;
  background: var(--dark-color);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-btn:hover::after {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@media (max-width: 640px) {
  .floating-actions {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  
  .floating-btn svg {
    width: 24px;
    height: 24px;
  }
  
  .floating-btn::after {
    display: none;
  }
}

/* ========== Navbar Notification Badge ========== */
.nav-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  animation: notificationPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
}

@keyframes notificationPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
  }
}

/* ========== Navbar Search (Optional) ========== */
.nav-search {
  position: relative;
  display: none; /* Enable if needed */
}

.nav-search input {
  padding: 0.6rem 2.5rem 0.6rem 1rem;
  border: 2px solid rgba(44, 95, 45, 0.2);
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.nav-search input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
  background: var(--white);
}

.nav-search button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.5rem;
}


/* ========== Premium Rooms Showcase Section ========== */
.rooms-showcase-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
  position: relative;
  overflow: hidden;
}

.rooms-showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.rooms-showcase-section .section-header {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.rooms-showcase-section .section-label {
  color: rgba(255, 255, 255, 0.8);
}

.rooms-showcase-section .section-title {
  color: var(--white);
}

.rooms-showcase-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.rooms-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.room-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.room-showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.room-showcase-card.reverse {
  direction: rtl;
}

.room-showcase-card.reverse > * {
  direction: ltr;
}

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

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

.room-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  transform: scale(1);
}

.room-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.room-slide.prev {
  opacity: 0;
  transform: scale(1);
}

.room-slide.next {
  opacity: 0;
  transform: scale(1);
}

.room-showcase-card:hover .room-slide.active {
  transform: scale(1);
}

.room-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.3), rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

.room-showcase-card:hover .room-image-overlay {
  opacity: 0;
}

.room-dots {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.room-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

.room-dots .dot::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.room-dots .dot.active {
  background: #d4af37;
  border-color: #d4af37;
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.room-dots .dot.active::before {
  border-color: rgba(212, 175, 55, 0.4);
  transform: scale(1.5);
}

.room-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.room-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.room-dots .dot.active {
  background: var(--white);
  width: 30px;
  border-radius: 6px;
}

.room-showcase-content {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(52, 73, 94, 0.95), rgba(44, 62, 80, 0.95));
}

.room-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-family: 'Playfair Display', serif;
  position: relative;
  display: inline-block;
}

.room-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f4e5a1);
  transition: width 0.4s ease;
}

.room-showcase-card:hover .room-title::after {
  width: 120px;
}

.room-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1rem;
}

.room-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.room-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 8px;
}

.room-feature:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.room-feature svg {
  color: #d4af37;
  flex-shrink: 0;
}

.room-booking-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 30px;
}

.room-book-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-radius: 0;
  font-family: 'Poppins', sans-serif;
}

.room-book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #f4e5a1);
  transition: left 0.4s ease;
  z-index: -1;
}

.room-book-btn:hover::before {
  left: 0;
}

.room-book-btn:hover {
  color: #2c3e50;
  border-color: #f4e5a1;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.room-book-btn svg {
  transition: transform 0.3s ease;
}

.room-book-btn:hover svg {
  transform: translateX(5px);
}

.room-pricing {
  display: flex;
  gap: 30px;
}

.price-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.price-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.price-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
}

/* ========== Responsive Design for Rooms ========== */
@media (max-width: 1200px) {
  .room-showcase-content {
    padding: 50px 40px;
  }
  
  .room-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 968px) {
  .room-showcase-card,
  .room-showcase-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  
  .room-showcase-image {
    height: 400px;
  }
  
  .room-showcase-content {
    padding: 40px 30px;
  }
  
  .room-title {
    font-size: 1.6rem;
  }
  
  .room-features-grid {
    grid-template-columns: 1fr;
  }
  
  .room-booking-info {
    flex-direction: column;
    align-items: stretch;
  }
  
  .room-book-btn {
    width: 100%;
    justify-content: center;
  }
  
  .room-pricing {
    justify-content: space-between;
    width: 100%;
  }
  
  .price-item {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .rooms-showcase-section {
    padding: 60px 0;
  }
  
  .room-showcase-image {
    height: 300px;
  }
  
  .room-showcase-content {
    padding: 30px 20px;
  }
  
  .room-title {
    font-size: 1.4rem;
  }
  
  .room-description {
    font-size: 0.95rem;
  }
  
  .room-feature {
    font-size: 0.9rem;
  }
  
  .room-book-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .price-value {
    font-size: 1.1rem;
  }
  
  .room-pricing {
    gap: 15px;
  }
}

/* ========== Room Card Animations ========== */
@keyframes roomCardSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.room-showcase-card {
  animation: roomCardSlideIn 0.8s ease-out both;
}

.room-showcase-card:nth-child(1) {
  animation-delay: 0.1s;
}

.room-showcase-card:nth-child(2) {
  animation-delay: 0.2s;
}

.room-showcase-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* ========== Hover Effects ========== */
.room-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.room-showcase-card:hover::before {
  opacity: 1;
}

/* ========== Gold Accent Animations ========== */
@keyframes goldShimmer {
  0%, 100% {
    background-position: -200% center;
  }
  50% {
    background-position: 200% center;
  }
}

.room-title::after {
  background: linear-gradient(90deg, transparent, #d4af37, #f4e5a1, #d4af37, transparent);
  background-size: 200% 100%;
  animation: goldShimmer 3s ease-in-out infinite;
}


/* ========== Newsletter Section ========== */
.newsletter-section {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa552 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  animation: fireGradient 8s ease-in-out infinite;
}

@keyframes fireGradient {
  0%, 100% {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa552 100%);
  }
  25% {
    background: linear-gradient(135deg, #ff8c42 0%, #ffa552 50%, #ff6b35 100%);
  }
  50% {
    background: linear-gradient(135deg, #ffa552 0%, #ff6b35 50%, #ff8c42 100%);
  }
  75% {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa552 50%, #ff8c42 100%);
  }
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: fireFlicker 4s ease-in-out infinite;
}

@keyframes fireFlicker {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

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

.newsletter-text h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.newsletter-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.input-group {
  display: flex;
  gap: 10px;
  background: white;
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.input-group input {
  flex: 1;
  border: none;
  padding: 15px 25px;
  font-size: 1rem;
  border-radius: 50px;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

.newsletter-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(44, 95, 45, 0.4);
}

.newsletter-btn svg {
  transition: transform 0.3s ease;
}

.newsletter-btn:hover svg {
  transform: translateX(5px);
}

/* ========== Innovative Footer ========== */
.footer-innovative {
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #e0e0e0;
  overflow: hidden;
  margin: 0 !important;
  padding-bottom: 0 !important;
}

/* Animated Background with Fire Effect */
.footer-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(44, 95, 45, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(151, 188, 98, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%);
  animation: bgPulse 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bgPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-column {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.footer-column.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Logo Section */
.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(44, 95, 45, 0.5);
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(44, 95, 45, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(151, 188, 98, 0.8);
  }
}

.footer-logo-text h3 {
  font-size: 1.5rem;
  color: white;
  margin: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #999;
  margin: 0;
}

.footer-description {
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

/* Social Icons with Fire Effect */
.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.social-icon.facebook::before {
  background: #1877f2;
}

.social-icon.instagram::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.whatsapp::before {
  background: #25d366;
}

.social-icon.phone::before {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.social-icon:hover::before {
  width: 100%;
  height: 100%;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.social-icon:hover svg {
  color: white;
  transform: rotate(360deg);
}

/* Footer Titles */
.footer-title {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
  animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(44, 95, 45, 0.5);
  }
  50% {
    box-shadow: 0 0 15px rgba(151, 188, 98, 0.8);
  }
}

/* Footer Links */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b0b0b0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--secondary-color);
}

.footer-links a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Contact */
.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--secondary-color);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Footer Illustration */
.footer-illustration {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(26, 26, 26, 1) 0%, rgba(44, 95, 45, 0.2) 100%);
}

.footer-illustration svg {
  width: 100%;
  height: 100%;
}

.hill-1, .hill-2 {
  animation: hillFloat 8s ease-in-out infinite;
}

.hill-2 {
  animation-delay: 1s;
}

@keyframes hillFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Realistic Tree Swaying Animation */
.trees g {
  transform-origin: bottom center;
}

/* Each tree group sways independently */
.trees > g:nth-child(1) {
  animation: treeGroupSway1 4.5s ease-in-out infinite;
}

.trees > g:nth-child(2) {
  animation: treeGroupSway2 5s ease-in-out infinite;
}

.trees > g:nth-child(3) {
  animation: treeGroupSway3 4.2s ease-in-out infinite;
}

.trees > g:nth-child(4) {
  animation: treeGroupSway4 4.8s ease-in-out infinite;
}

.trees > g:nth-child(5) {
  animation: treeGroupSway5 4.3s ease-in-out infinite;
}

@keyframes treeGroupSway1 {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(2.5deg); }
  40% { transform: rotate(-1.5deg); }
  60% { transform: rotate(3deg); }
  80% { transform: rotate(-1deg); }
}

@keyframes treeGroupSway2 {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-2deg); }
  50% { transform: rotate(2.5deg); }
  75% { transform: rotate(-1.5deg); }
}

@keyframes treeGroupSway3 {
  0%, 100% { transform: rotate(0deg); }
  30% { transform: rotate(2deg); }
  60% { transform: rotate(-2.5deg); }
  90% { transform: rotate(1deg); }
}

@keyframes treeGroupSway4 {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-2.5deg); }
  45% { transform: rotate(2deg); }
  70% { transform: rotate(-1.5deg); }
}

@keyframes treeGroupSway5 {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(2.5deg); }
  50% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
}

/* Individual leaf layers move with wind */
.trees ellipse {
  animation: leavesWind 3.5s ease-in-out infinite;
  transform-origin: center center;
}

.trees g:nth-child(1) ellipse:nth-child(2) { animation-delay: 0s; }
.trees g:nth-child(1) ellipse:nth-child(3) { animation-delay: 0.2s; }
.trees g:nth-child(1) ellipse:nth-child(4) { animation-delay: 0.4s; }
.trees g:nth-child(1) ellipse:nth-child(5) { animation-delay: 0.6s; }

.trees g:nth-child(2) ellipse:nth-child(2) { animation-delay: 0.3s; }
.trees g:nth-child(2) ellipse:nth-child(3) { animation-delay: 0.5s; }
.trees g:nth-child(2) ellipse:nth-child(4) { animation-delay: 0.7s; }
.trees g:nth-child(2) ellipse:nth-child(5) { animation-delay: 0.9s; }
.trees g:nth-child(2) ellipse:nth-child(6) { animation-delay: 1.1s; }

.trees g:nth-child(3) ellipse:nth-child(2) { animation-delay: 0.4s; }
.trees g:nth-child(3) ellipse:nth-child(3) { animation-delay: 0.6s; }
.trees g:nth-child(3) ellipse:nth-child(4) { animation-delay: 0.8s; }
.trees g:nth-child(3) ellipse:nth-child(5) { animation-delay: 1s; }

.trees g:nth-child(4) ellipse:nth-child(2) { animation-delay: 0.5s; }
.trees g:nth-child(4) ellipse:nth-child(3) { animation-delay: 0.7s; }
.trees g:nth-child(4) ellipse:nth-child(4) { animation-delay: 0.9s; }
.trees g:nth-child(4) ellipse:nth-child(5) { animation-delay: 1.1s; }

.trees g:nth-child(5) ellipse:nth-child(2) { animation-delay: 0.6s; }
.trees g:nth-child(5) ellipse:nth-child(3) { animation-delay: 0.8s; }
.trees g:nth-child(5) ellipse:nth-child(4) { animation-delay: 1s; }
.trees g:nth-child(5) ellipse:nth-child(5) { animation-delay: 1.2s; }

/* Realistic wind-blown leaves animation */
@keyframes leavesWind {
  0%, 100% {
    transform: rotate(0deg) scale(1) translateX(0);
    opacity: 0.85;
  }
  10% {
    transform: rotate(2deg) scale(1.02) translateX(1px);
    opacity: 0.9;
  }
  20% {
    transform: rotate(-1.5deg) scale(0.98) translateX(-0.5px);
    opacity: 0.88;
  }
  30% {
    transform: rotate(3deg) scale(1.03) translateX(2px);
    opacity: 0.92;
  }
  40% {
    transform: rotate(-2deg) scale(0.99) translateX(-1px);
    opacity: 0.9;
  }
  50% {
    transform: rotate(2.5deg) scale(1.01) translateX(1.5px);
    opacity: 0.95;
  }
  60% {
    transform: rotate(-1deg) scale(1) translateX(-0.5px);
    opacity: 0.93;
  }
  70% {
    transform: rotate(2deg) scale(1.02) translateX(1px);
    opacity: 0.9;
  }
  80% {
    transform: rotate(-1.5deg) scale(0.99) translateX(-1px);
    opacity: 0.88;
  }
  90% {
    transform: rotate(1.5deg) scale(1.01) translateX(0.5px);
    opacity: 0.9;
  }
}

/* Tree trunk swaying */
.trees rect {
  animation: trunkSway 4.5s ease-in-out infinite;
  transform-origin: center bottom;
}

.trees g:nth-child(1) rect { animation-delay: 0s; }
.trees g:nth-child(2) rect { animation-delay: 0.3s; }
.trees g:nth-child(3) rect { animation-delay: 0.6s; }
.trees g:nth-child(4) rect { animation-delay: 0.9s; }
.trees g:nth-child(5) rect { animation-delay: 1.2s; }

@keyframes trunkSway {
  0%, 100% {
    transform: rotate(0deg) translateX(0);
  }
  20% {
    transform: rotate(1deg) translateX(0.5px);
  }
  40% {
    transform: rotate(-0.8deg) translateX(-0.3px);
  }
  60% {
    transform: rotate(1.2deg) translateX(0.7px);
  }
  80% {
    transform: rotate(-0.5deg) translateX(-0.2px);
  }
}

.sun-moon {
  animation: sunMoonGlow 3s ease-in-out infinite;
}

@keyframes sunMoonGlow {
  0%, 100% {
    opacity: 0.6;
    fill: rgba(255, 193, 7, 0.6);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    fill: rgba(255, 193, 7, 0.9);
    transform: scale(1.1);
  }
}

.star {
  animation: starTwinkle 2s ease-in-out infinite;
}

.star-1 { animation-delay: 0s; }
.star-2 { animation-delay: 0.4s; }
.star-3 { animation-delay: 0.8s; }
.star-4 { animation-delay: 1.2s; }
.star-5 { animation-delay: 1.6s; }

@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

/* Add homestay building animation */
.footer-illustration::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 60px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(101, 67, 33, 0.8));
  border-radius: 5px 5px 0 0;
  animation: homestayGlow 4s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.footer-illustration::before {
  content: '';
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 40px solid rgba(139, 69, 19, 0.9);
  animation: roofShine 5s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.2));
}

@keyframes homestayGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.6), 0 0 60px rgba(255, 193, 7, 0.4);
  }
}

@keyframes roofShine {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.5));
  }
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: #999;
  font-size: 0.9rem;
  margin: 0;
}

.footer-love {
  display: flex;
  align-items: center;
  gap: 5px;
}

.heart {
  color: #ff6b35;
  animation: heartBeat 1.5s ease-in-out infinite;
  display: inline-block;
}

@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
  }
  10%, 30% {
    transform: scale(1.2);
  }
  20%, 40% {
    transform: scale(1);
  }
}

/* ========== Responsive Footer ========== */
@media (max-width: 968px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .newsletter-text h2 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-column:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-logo-section {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-text h2 {
    font-size: 1.8rem;
  }
  
  .input-group {
    flex-direction: column;
    border-radius: 15px;
  }
  
  .input-group input {
    border-radius: 10px;
  }
  
  .newsletter-btn {
    border-radius: 10px;
    justify-content: center;
  }
  
  .footer-main {
    padding: 60px 0 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-column:first-child {
    grid-column: 1;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-illustration {
    height: 150px;
  }
}

/* ========== Floating Actions Styles ========== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  animation: floatBounce 3s ease-in-out infinite;
}

.floating-text {
  position: absolute;
  right: 70px;
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.floating-text::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid rgba(0,0,0,0.85);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.floating-btn:hover .floating-text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  color: white;
}

.floating-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  animation-delay: 0s;
}

.floating-btn.phone {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  animation-delay: 0.2s;
}

.floating-btn.scroll-top {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  opacity: 0;
  pointer-events: none;
  animation-delay: 0.4s;
}

.floating-btn.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

@keyframes floatBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 640px) {
  .floating-actions {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }
  
  .floating-btn {
    width: 55px;
    height: 55px;
  }
  
  .floating-btn svg {
    width: 22px;
    height: 22px;
  }
  
  .floating-text {
    display: none;
  }
}


/* ========== Perfect For Section - Ultra Creative Glassmorphism Design ========== */
.perfect-for-section-creative {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.creative-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/charming-villages.jpg') center/cover fixed;
  filter: brightness(0.75);
  z-index: 0;
}

.perfect-for-section-creative::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.perfect-for-section-creative .container {
  position: relative;
  z-index: 2;
}

/* Header */
.section-header-creative {
  text-align: center;
  margin-bottom: 70px;
}

.creative-badge {
  display: inline-block;
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.creative-title {
  font-size: 4rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.creative-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

/* Cards Grid */
.creative-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.creative-card {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.creative-card:hover {
  transform: translateY(-15px) scale(1.03);
}

/* Glassmorphism Card */
.card-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px) saturate(180%);
  border-radius: 25px;
  padding: 45px 35px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.card-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.creative-card:hover .card-glass::before {
  left: 100%;
}

.creative-card:hover .card-glass {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Large Number Background */
.card-number-bg {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  font-family: 'Playfair Display', serif;
  pointer-events: none;
}

/* Icon */
.card-icon-creative {
  width: 70px;
  height: 70px;
  background: rgba(100, 100, 100, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Different animations for each card */
.creative-card:nth-child(1) .card-icon-creative {
  animation: iconBounce 2s ease-in-out infinite;
}

.creative-card:nth-child(2) .card-icon-creative {
  animation: iconSpin 3s linear infinite;
}

.creative-card:nth-child(3) .card-icon-creative {
  animation: iconPulse 2.5s ease-in-out infinite;
}

.creative-card:nth-child(4) .card-icon-creative {
  animation: iconSwing 2s ease-in-out infinite;
}

.creative-card:nth-child(5) .card-icon-creative {
  animation: iconFloat 3s ease-in-out infinite;
}

.creative-card:nth-child(6) .card-icon-creative {
  animation: iconShake 2.5s ease-in-out infinite;
}

/* Animation 1: Bounce */
@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Animation 2: Spin */
@keyframes iconSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Animation 3: Pulse with Ring */
@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(150, 150, 150, 0.5);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 20px rgba(150, 150, 150, 0);
  }
}

/* Animation 4: Swing */
@keyframes iconSwing {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  75% {
    transform: rotate(-15deg);
  }
}

/* Animation 5: Float */
@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  33% {
    transform: translateY(-8px) scale(1.05);
  }
  66% {
    transform: translateY(8px) scale(0.95);
  }
}

/* Animation 6: Shake */
@keyframes iconShake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px) rotate(-5deg);
  }
  75% {
    transform: translateX(5px) rotate(5deg);
  }
}

.creative-card:hover .card-icon-creative {
  background: rgba(150, 150, 150, 0.5);
  transform: rotate(360deg) scale(1.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: none;
}

.card-icon-creative svg {
  width: 36px;
  height: 36px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Text */
.card-glass h3 {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}

.card-glass p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

/* Responsive */
@media (max-width: 1024px) {
  .creative-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .creative-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .perfect-for-section-creative {
    padding: 80px 0;
  }

  .creative-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .creative-title {
    font-size: 2.5rem;
  }

  .creative-subtitle {
    font-size: 1.1rem;
  }

  .card-glass {
    padding: 35px 30px;
    min-height: 280px;
  }

  .card-icon-creative {
    width: 60px;
    height: 60px;
  }

  .card-icon-creative svg {
    width: 30px;
    height: 30px;
  }

  .card-glass h3 {
    font-size: 1.4rem;
  }

  .card-glass p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .creative-title {
    font-size: 2rem;
  }

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


/* ========== Enhanced Form Input Styling ========== */
/* Date input styling */
.form-group-premium input[type="date"] {
  position: relative;
  cursor: pointer;
}

.form-group-premium input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  padding: 5px;
}

.form-group-premium input[type="date"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
  transform: scale(1.1);
}

/* Select dropdown styling */
.form-group-premium select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c5f2d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-group-premium select:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2397bc62' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.form-group-premium select option {
  padding: 10px;
  background: white;
  color: var(--dark-color);
}

.form-group-premium select option:hover {
  background: rgba(44, 95, 45, 0.1);
}

/* Room type dropdown specific styling */
.room-type-dropdown {
  font-weight: 500;
}

.room-type-dropdown option {
  padding: 15px;
}
