/* ============================================
   CAMPMOUNT - Premium Mountain Retreat CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --forest-green: #2F4F2F;
  --olive-green: #556B2F;
  --dark-earth: #2B2B2B;
  --mountain-beige: #DCC9A3;
  --sunset-orange: #E59B45;
  --mist-white: #F5F5F5;
  --white: #ffffff;
  --black: #000000;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-bg-dark: rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-earth);
  background: var(--mist-white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

section {
  position: relative;
}

.section-padding {
  padding: 100px 0;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--sunset-orange), var(--mountain-beige));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--mist-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-inner img {
  width: 150px;
  margin-bottom: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--sunset-orange);
  animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar-camp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.navbar-camp.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.navbar-camp .navbar-brand img {
  height: 55px;
  transition: var(--transition);
}

.navbar-camp.scrolled .navbar-brand img {
  height: 45px;
}

.navbar-camp .nav-link {
  color: var(--dark-earth) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 8px 18px !important;
  position: relative;
  transition: var(--transition);
}

.navbar-camp .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--sunset-orange);
  transition: var(--transition);
}

.navbar-camp .nav-link:hover::after,
.navbar-camp .nav-link.active::after {
  width: 60%;
}

.navbar-camp .nav-link:hover {
  color: var(--sunset-orange) !important;
}

.navbar-camp .btn-book-nav {
  background: var(--sunset-orange);
  color: var(--white);
  border: none;
  padding: 10px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.navbar-camp .btn-book-nav:hover {
  background: var(--forest-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 155, 69, 0.4);
}

.navbar-toggler {
  border: none !important;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: none !important;
  position: relative;
  width: 28px;
  height: 20px;
}

.navbar-toggler-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark-earth);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.navbar-toggler-icon span:first-child { top: 0; }
.navbar-toggler-icon span:nth-child(2) { top: 9px; }
.navbar-toggler-icon span:last-child { top: 18px; }

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    margin-top: 15px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-earth);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.hero-section:hover .hero-bg {
  transform: scale(1);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.hero-fog {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  z-index: 2;
}

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

.hero-content .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hero-content h1 span {
  color: var(--sunset-orange);
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons .btn {
  padding: 15px 40px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin: 0 10px;
  transition: var(--transition);
}

.btn-primary-camp {
  background: var(--sunset-orange);
  border: 2px solid var(--sunset-orange);
  color: var(--white);
}

.btn-primary-camp:hover {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(229, 155, 69, 0.4);
}

.btn-outline-camp {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline-camp:hover {
  background: var(--white);
  color: var(--dark-earth);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  text-align: center;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll i {
  font-size: 1.5rem;
  display: block;
}

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

/* Animated Birds */
.birds-container {
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
  overflow: hidden;
}

.bird {
  position: absolute;
  width: 30px;
  height: 10px;
  animation: flyBird linear infinite;
}

.bird::before,
.bird::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 2px;
  background: rgba(255,255,255,0.6);
  top: 50%;
}

.bird::before {
  left: 0;
  transform-origin: right;
  animation: flapLeft 0.4s ease-in-out infinite alternate;
}

.bird::after {
  right: 0;
  transform-origin: left;
  animation: flapRight 0.4s ease-in-out infinite alternate;
}

.bird:nth-child(1) { top: 20%; animation-duration: 18s; animation-delay: 0s; }
.bird:nth-child(2) { top: 35%; animation-duration: 22s; animation-delay: 3s; }
.bird:nth-child(3) { top: 15%; animation-duration: 20s; animation-delay: 6s; }
.bird:nth-child(4) { top: 45%; animation-duration: 25s; animation-delay: 2s; }
.bird:nth-child(5) { top: 25%; animation-duration: 19s; animation-delay: 8s; }

@keyframes flyBird {
  0% { left: -5%; }
  100% { left: 105%; }
}

@keyframes flapLeft {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-30deg); }
}

@keyframes flapRight {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(30deg); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-tag {
  display: inline-block;
  color: var(--sunset-orange);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--dark-earth);
  margin-bottom: 15px;
}

.section-header h2 span {
  color: var(--sunset-orange);
}

.section-header p {
  font-size: 1.1rem;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--sunset-orange);
  margin: 15px auto 0;
  border-radius: 3px;
}

/* Light section headers (for dark backgrounds) */
.section-header-light .section-tag {
  color: var(--mountain-beige);
}

.section-header-light h2 {
  color: var(--white);
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--white);
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--sunset-orange);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.about-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark-earth);
}

.about-content h3 span {
  color: var(--sunset-orange);
}

.about-content p {
  color: #666;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.about-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--dark-earth);
}

.about-features li i {
  color: var(--sunset-orange);
  margin-right: 12px;
  font-size: 1.2rem;
}

/* ============================================
   PACKAGES / CARDS
   ============================================ */
.packages-section {
  background: var(--mist-white);
}

.package-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: var(--transition);
  height: 100%;
}

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

.package-card-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.package-card-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--sunset-orange);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.package-card-price small {
  font-weight: 400;
  font-size: 0.7rem;
  opacity: 0.85;
}

.package-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--forest-green);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-card-body {
  padding: 25px;
}

.package-card-body h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-earth);
}

.package-card-body p {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.package-features li {
  display: flex;
  align-items: center;
  padding: 5px 0;
  font-size: 0.9rem;
  color: #555;
}

.package-features li i {
  color: var(--olive-green);
  margin-right: 10px;
  font-size: 0.8rem;
}

.btn-package {
  display: inline-block;
  background: var(--forest-green);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--forest-green);
  transition: var(--transition);
  width: 100%;
  text-align: center;
}

.btn-package:hover {
  background: transparent;
  color: var(--forest-green);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  background: var(--dark-earth);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%232F4F2F" fill-opacity="0.1" d="M0,160L48,170.7C96,181,192,203,288,186.7C384,171,480,117,576,112C672,107,768,149,864,176C960,203,1056,213,1152,202.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.why-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-8px);
  border-color: var(--sunset-orange);
}

.why-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--sunset-orange), var(--mountain-beige));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--white);
}

.why-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.why-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

/* ============================================
   ACTIVITIES
   ============================================ */
.activities-section {
  background: var(--white);
}

.activity-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

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

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

.activity-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  transition: var(--transition);
}

.activity-card-overlay i {
  font-size: 2rem;
  color: var(--sunset-orange);
  margin-bottom: 10px;
  display: block;
}

.activity-card-overlay h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.activity-card-overlay p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  background: var(--mist-white);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  background: transparent;
  border: 2px solid var(--dark-earth);
  color: var(--dark-earth);
  padding: 8px 25px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--dark-earth);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: span 2;
}

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

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

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-item-overlay i {
  color: var(--white);
  font-size: 2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--forest-green);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 35px;
  margin: 15px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}

.testimonial-stars {
  color: var(--sunset-orange);
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sunset-orange);
}

.testimonial-author h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ============================================
   COUNTERS
   ============================================ */
.counters-section {
  background: var(--white);
  padding: 60px 0;
}

.counter-item {
  text-align: center;
  padding: 20px;
}

.counter-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--sunset-orange);
  line-height: 1;
  margin-bottom: 5px;
}

.counter-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #777;
  font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 79, 47, 0.85);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.15rem;
  opacity: 0.8;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-section {
  background: var(--mist-white);
}

.booking-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  padding: 50px;
  box-shadow: var(--shadow-lg);
}

.booking-card .form-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark-earth);
  margin-bottom: 8px;
}

.booking-card .form-control,
.booking-card .form-select {
  background: var(--mist-white);
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
  border-color: var(--sunset-orange);
  box-shadow: 0 0 0 3px rgba(229, 155, 69, 0.15);
  background: var(--white);
}

.btn-book {
  background: var(--sunset-orange);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  transition: var(--transition);
}

.btn-book:hover {
  background: var(--forest-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(229, 155, 69, 0.3);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp:hover {
  background: #128C7E;
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  background: var(--dark-earth);
  color: var(--white);
}

.contact-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.contact-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
  border-color: var(--sunset-orange);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--sunset-orange), var(--mountain-beige));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
}

.contact-card h5 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin: 0;
}

.contact-form .form-control {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.contact-form .form-control::placeholder {
  color: rgba(255,255,255,0.4);
}

.contact-form .form-control:focus {
  border-color: var(--sunset-orange);
  box-shadow: 0 0 0 3px rgba(229, 155, 69, 0.15);
  background: rgba(255,255,255,0.08);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1a1a1a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 200"><path fill="%23111111" d="M0,200L0,140L120,120L240,150L360,100L480,130L600,90L720,120L840,80L960,110L1080,70L1200,100L1320,85L1440,110L1440,200Z"/></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.5;
}

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

.footer-brand img {
  height: 55px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--sunset-orange);
  border-color: var(--sunset-orange);
  transform: translateY(-3px);
}

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

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--sunset-orange);
  padding-left: 5px;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}

.footer-contact-info li i {
  color: var(--sunset-orange);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9998;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0.1); }
}

.floating-booking {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9998;
  background: var(--sunset-orange);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 25px rgba(229, 155, 69, 0.4);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-booking:hover {
  background: var(--forest-green);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-earth);
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.page-hero-content .breadcrumb {
  justify-content: center;
  margin: 0;
}

.page-hero-content .breadcrumb-item {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}

.page-hero-content .breadcrumb-item a {
  color: var(--sunset-orange);
}

.page-hero-content .breadcrumb-item.active {
  color: rgba(255,255,255,0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4) !important;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: var(--white);
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark-earth);
  padding: 20px 25px;
  background: var(--white);
}

.accordion-button:not(.collapsed) {
  background: var(--mist-white);
  color: var(--forest-green);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-size: 1rem;
}

.accordion-body {
  padding: 20px 25px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================
   INSTAGRAM FEED
   ============================================ */
.instagram-section {
  padding: 0;
  overflow: hidden;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

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

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

.instagram-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(229, 155, 69, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.instagram-item-overlay i {
  color: var(--white);
  font-size: 1.8rem;
}

/* ============================================
   MAP
   ============================================ */
.map-section {
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(0.3) contrast(1.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .hero-content h1 { font-size: 3.5rem; }
  .section-header h2 { font-size: 2.5rem; }
}

@media (max-width: 991px) {
  .section-padding { padding: 80px 0; }
  .hero-content h1 { font-size: 3rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .instagram-grid { grid-template-columns: repeat(4, 1fr); }
  .page-hero-content h1 { font-size: 2.8rem; }
}

@media (max-width: 767px) {
  .section-padding { padding: 60px 0; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  .hero-buttons .btn { padding: 12px 25px; font-size: 0.85rem; margin: 5px; }
  .section-header h2 { font-size: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .counter-number { font-size: 2.5rem; }
  .booking-card { padding: 30px 20px; }
  .cta-content h2 { font-size: 2rem; }
  .page-hero { height: 40vh; min-height: 300px; }
  .page-hero-content h1 { font-size: 2.2rem; }
  .floating-booking { display: none; }
  .about-image-wrapper img { height: 350px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .section-header h2 { font-size: 1.7rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-orange { color: var(--sunset-orange); }
.text-green { color: var(--forest-green); }
.bg-dark-earth { background: var(--dark-earth); }
.bg-forest { background: var(--forest-green); }
.bg-mist { background: var(--mist-white); }

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.img-rounded { border-radius: 20px; }
.overflow-hidden { overflow: hidden; }
