:root {
  --pc-primary: #0c6f4a;
  --pc-primary-dark: #06422b;
  --pc-accent: #ffb703;
  --pc-light: #f5f7fa;
  --pc-dark: #111827;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  scroll-behavior: smooth;
  color: #111827;
}

/* Navbar */
.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background-color: rgba(17, 24, 39, 0.96) !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.4);
}
.navbar-brand span {
  font-weight: 700;
  letter-spacing: 0.03em;
}
.nav-link {
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.nav-link.active,
.nav-link:hover {
  color: var(--pc-accent) !important;
}

/* Hero */
.hero-section {
  min-height: 85vh;
  color: #f9fafb;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(8, 25, 16, 0.25),
    rgba(8, 25, 16, 0.55)
  );
  z-index: 1;
}

.hero-video {
  filter: brightness(1.15) contrast(1.1);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Hero Slideshow Controls */
.hero-slideshow-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 3;
}

.hero-slide-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #f9fafb;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-slide-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.hero-slide-indicators {
  display: flex;
  gap: 0.5rem;
}

.hero-slide-indicators .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slide-indicators .indicator.active {
  background: var(--pc-accent);
  width: 24px;
  border-radius: 5px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.18);
  border: 1px solid rgba(209, 250, 229, 0.25);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-highlight {
  color: var(--pc-accent);
}

.hero-subtitle {
  max-width: 540px;
  font-size: 1rem;
  color: #e5e7eb;
}

.hero-meta-pill {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #e5e7eb;
  flex-wrap: wrap;
}

.hero-meta-pill span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-meta-pill i {
  color: var(--pc-accent);
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--pc-accent), #ffd166);
  border: none;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 0.9rem 1.9rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.btn-cta-primary:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.btn-ghost-light {
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.6);
  color: #f9fafb;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stats {
  border-radius: 1.5rem;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(18px);
  padding: 1.1rem 1.4rem;
}

.hero-stat-number {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--pc-accent);
}

.hero-img-card {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.9);
  position: relative;
}

.hero-img-card img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transform: scale(1.03);
  transition: transform 2s ease;
}

.hero-img-card:hover img {
  transform: scale(1.08);
}

.floating-badge {
  position: absolute;
  bottom: 1.3rem;
  left: 1.3rem;
  background: rgba(15, 23, 42, 0.92);
  color: #f9fafb;
  padding: 0.6rem 0.9rem;
  border-radius: 1rem;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(12px);
}

.floating-badge span {
  font-weight: 700;
  color: var(--pc-accent);
}

/* Sections */
section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--pc-primary);
  font-weight: 700;
}

.section-title {
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--pc-dark);
}

.section-subtitle {
  color: #6b7280;
  max-width: 560px;
}

.bg-soft {
  background: linear-gradient(180deg, #f9fafb, #ecfeff);
}

.bg-soft-green {
  background: linear-gradient(180deg, #ecfdf3, #f5f7fa);
}

/* Cards */
.experience-card,
.stay-card,
.package-card {
  border: none;
  border-radius: 1.2rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  height: 100%;
  background-color: #ffffff;
}

.experience-card:hover,
.stay-card:hover,
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
  border-color: rgba(13, 148, 136, 0.5);
}

.experience-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(22, 163, 74, 0.08);
  color: var(--pc-primary);
  font-size: 1.1rem;
}

.badge-soft {
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--pc-primary);
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Dining */
.dining-tag {
  background-color: rgba(37, 99, 235, 0.06);
  color: #1d4ed8;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.dining-image {
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.35);
}

.dining-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 2.4s ease;
}

.dining-image:hover img {
  transform: scale(1.09);
}

.list-check {
  list-style: none;
  padding-left: 0;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.list-check i {
  color: var(--pc-primary);
  margin-top: 0.15rem;
}

/* Gallery */
.gallery-carousel img {
  height: 420px;
  object-fit: cover;
  border-radius: 1.4rem;
}

.gallery-grid .gallery-thumb {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.28);
  cursor: pointer;
}

.gallery-grid .gallery-thumb img {
  width: 100%;
  height: 100%;
  min-height: 130px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.15)
  );
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0.7rem 0.9rem;
  color: #f9fafb;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-thumb-overlay span {
  background-color: rgba(15, 23, 42, 0.75);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.gallery-grid .gallery-thumb:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Video Slideshow Section */
.video-slideshow-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.video-slideshow-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: #000;
}

.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  flex-direction: column;
}

.video-slide.active {
  opacity: 1;
  z-index: 2;
}

.video-embed-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.video-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-slide-caption {
  background: linear-gradient(135deg, rgba(12, 111, 74, 0.95), rgba(6, 66, 43, 0.95));
  padding: 1.5rem 2rem;
  color: #fff;
  border-radius: 0 0 16px 16px;
  backdrop-filter: blur(10px);
}

.video-slide-caption h5 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.video-slide-caption p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.95;
}

/* Video Slideshow Controls */
.video-slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  z-index: 10;
}

.video-slide-btn {
  background: rgba(12, 111, 74, 0.15);
  border: 2px solid rgba(12, 111, 74, 0.4);
  color: var(--pc-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 1.5rem;
}

.video-slide-btn:hover {
  background: rgba(12, 111, 74, 0.25);
  border-color: var(--pc-primary);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(12, 111, 74, 0.3);
}

.video-slide-btn:active {
  transform: scale(0.95);
}

.video-slide-indicators {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.video-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(12, 111, 74, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.video-indicator:hover {
  background: rgba(12, 111, 74, 0.5);
  transform: scale(1.2);
}

.video-indicator.active {
  background: var(--pc-primary);
  width: 32px;
  border-radius: 6px;
  border-color: var(--pc-primary);
  box-shadow: 0 2px 8px rgba(12, 111, 74, 0.4);
}

/* Responsive adjustments for video slideshow */
@media (max-width: 767.98px) {
  .video-slideshow-wrapper {
    border-radius: 12px;
  }

  .video-embed-wrapper {
    border-radius: 12px 12px 0 0;
  }

  .video-slide-caption {
    padding: 1rem 1.5rem;
    border-radius: 0 0 12px 12px;
  }

  .video-slide-caption h5 {
    font-size: 1.1rem;
  }

  .video-slide-caption p {
    font-size: 0.85rem;
  }

  .video-slide-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .video-slideshow-controls {
    gap: 1rem;
    margin-top: 1.5rem;
  }
}

/* Map */
.map-container {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

/* Contact */
.contact-card {
  border-radius: 1.6rem;
  border: none;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.form-control,
.form-select {
  border-radius: 0.8rem;
  border-color: #e5e7eb;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  font-size: 0.9rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--pc-primary);
  box-shadow: 0 0 0 0.15rem rgba(16, 185, 129, 0.18);
}

/* Footer */
footer {
  background-color: #020617;
  color: #9ca3af;
  padding-top: 2.8rem;
  padding-bottom: 1.2rem;
  font-size: 0.85rem;
}

.footer-brand {
  font-weight: 700;
  color: #e5e7eb;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(156, 163, 175, 0.45);
  color: #e5e7eb;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

.footer-social a:hover {
  background-color: #fbbf24;
  border-color: #fbbf24;
  color: #111827;
}

/* Utilities */
.pill {
  border-radius: 999px;
}

.tag-pill {
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  background-color: rgba(31, 41, 55, 0.08);
  color: #374151;
}

@media (max-width: 991.98px) {
  .hero-section {
    text-align: center;
  }

  .hero-meta-pill {
    justify-content: center;
  }

  .hero-img-card {
    margin-top: 2.5rem;
  }

  .hero-stats {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .gallery-carousel img {
    height: 260px;
  }

  .map-container iframe {
    height: 260px;
  }
}

/* Video Hero Section */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(8, 25, 16, 0.4),
    rgba(8, 25, 16, 0.75)
  );
  z-index: 1;
}

/* Enhanced Frontend Page Styles */

/* Card Hover Effects */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Experience Cards */
.experience-card {
  border-radius: 15px;
  overflow: hidden;
}

.experience-card img {
  transition: transform 0.5s ease;
}

.experience-card:hover img {
  transform: scale(1.1);
}

/* Button Animations */
.btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
  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, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* Form Input Focus Effects */
.form-control:focus,
.form-select:focus {
  border-color: #0c6f4a;
  box-shadow: 0 0 0 0.2rem rgba(12, 111, 74, 0.25);
}

/* Badge Animations */
.badge {
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: scale(1.05);
}

/* Image Overlay Effects */
.position-relative img {
  transition: transform 0.5s ease;
}

.position-relative:hover img {
  transform: scale(1.05);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #0c6f4a 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Spacing */
section {
  scroll-margin-top: 100px;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .display-4 {
    font-size: 2rem;
  }
  
  .display-5 {
    font-size: 1.75rem;
  }
  
  .lead {
    font-size: 1rem;
  }
}

/* Gallery Item Hover */
.gallery-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1 !important;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  backdrop-filter: blur(2px);
}

/* Package Card Styles */
.package-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.featured-package {
  border: 3px solid #ffc107 !important;
}

.package-icon-wrapper {
  transition: transform 0.3s ease;
}

.package-card:hover .package-icon-wrapper {
  transform: scale(1.1);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #0c6f4a 0%, #06422b 100%);
}

/* Quick Booking Bar Styles */
.quick-booking-bar {
  position: relative;
  z-index: 1;
}

.quick-booking-bar .card {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-booking-bar .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.quick-booking-bar .card-header {
  background: linear-gradient(135deg, #0c6f4a 0%, #06422b 100%);
  border: none;
}

.quick-booking-bar .form-select-lg,
.quick-booking-bar .form-control-lg {
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.quick-booking-bar .form-select-lg:focus,
.quick-booking-bar .form-control-lg:focus {
  border-color: #0c6f4a;
  box-shadow: 0 0 0 0.25rem rgba(12, 111, 74, 0.15);
}

.quick-booking-bar .btn-lg {
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.quick-booking-bar .btn-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#availabilityResult {
  min-height: 50px;
}

#availabilityResult .alert {
  border-radius: 10px;
  border: none;
  padding: 1rem 1.25rem;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

