/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #FCFCFC;
  font-size: 16px;
  font-weight: 400;
}

/* Typography System - Manrope for Headings, Inter for Body */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 4rem; /* 64px */
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.75rem; /* 28px */
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* 16px */
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
}

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

/* ========================================
   LIQUID-GLASS NAVIGATION BAR
   ======================================== */

/* Liquid glass utility */
.liquid-glass {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: none;
  border-radius: 9999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Floating navbar wrapper */
.navbar {
  position: fixed;
  z-index: 1000;
  display: flex;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  top: 1.5rem;
  justify-content: center;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Pill container */
.navbar-pill {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.625rem 0.625rem;
  width: 660px !important;
  max-width: calc(100vw - 32px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  animation: navFadeInDown 0.5s ease both;
}

@media (max-width: 768px) {
  .navbar-pill {
    gap: 0.25rem;
    padding: 0.5rem 0.5rem;
    width: auto !important;
    max-width: calc(100vw - 24px);
  }
}

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

/* Brand link */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s;
}
.navbar-brand:hover { background: rgba(255, 255, 255, 0.05); }

@media (max-width: 768px) {
  .navbar-brand {
    gap: 0.5rem;
    padding: 0.4rem 0.7rem;
  }
}

.navbar-brand-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .navbar-brand-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.navbar-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 10;
  border-radius: 50%;
}
.navbar-brand-glow {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(135deg, #6fa88a, #4a7c6a);
  filter: blur(4px);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.navbar-brand:hover .navbar-brand-glow { opacity: 1; }

.navbar-brand-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: white;
  text-transform: uppercase;
  display: none;
  font-family: 'Manrope', sans-serif;
}
@media (min-width: 640px) { .navbar-brand-name { display: block; } }

/* Divider */
.navbar-divider {
  width: 1px;
  height: 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .navbar-divider {
    height: 0.9rem;
    margin: 0 0.25rem;
  }
}

/* Nav links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.navbar-links a {
  padding: 0.55rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 0.775rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.navbar-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .navbar-links {
    gap: 0.1rem;
  }
  .navbar-links a {
    padding: 0.4rem 0.6rem;
    font-size: 0.65rem;
  }
}

/* CTA button */
.navbar-cta { padding-left: 0.5rem; }
.navbar-cta a {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  background: white;
  color: black;
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}
.navbar-cta a:hover { background: #e4e4e7; }

@media (max-width: 768px) {
  .navbar-cta {
    padding-left: 0.25rem;
  }
  .navbar-cta a {
    padding: 0.45rem 0.9rem;
    font-size: 0.65rem;
  }
}

/* Hide old navbar elements */
.navbar-container { display: none !important; }
.hamburger { display: none !important; }
.navbar.scrolled { background: none !important; border: none !important; box-shadow: none !important; }



/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Slideshow container */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual slide */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

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

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

/* Dark overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8%;
  z-index: 10;
  color: white;
}

.hero-icon {
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-icon svg {
  stroke: white;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hero-content h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.03em;
}

.hero-btn {
  background-color: #FCFCFC;
  color: #1B1B1B;
  border: none;
  font-family: 'Inter', sans-serif;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn:hover {
  background-color: #A7BEB3;
  color: #FCFCFC;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* Hero Eyebrow Text */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  background: rgba(111, 168, 138, 0.2);
  border: 1px solid rgba(111, 168, 138, 0.4);
  padding: 10px 16px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.eyebrow-icon {
  width: 18px;
  height: 18px;
  stroke: #6fa88a;
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* Accent color for "Asri" */
.accent-green {
  color: #6fa88a;
  font-weight: 700;
}

/* Hero Description Text */
.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 500px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: 0;
}

/* Hero CTA Container */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Primary CTA Button */
.hero-btn.primary {
  background-color: #6fa88a;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-btn.primary:hover {
  background-color: #5a8970;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(111, 168, 138, 0.4);
}

/* Secondary CTA Button */
.hero-btn.secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 14px 32px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.play-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.hero-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 1);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Modern Feature Cards Grid */
.hero-features {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 8%;
  width: 100%;
  box-sizing: border-box;
}

.feature-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
}

.feature-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(111, 168, 138, 0.25);
  border-radius: 16px;
  border: 1px solid rgba(111, 168, 138, 0.4);
}

.feature-card-icon svg {
  width: 30px;
  height: 30px;
  stroke: #8fd4ad;
  stroke-width: 2.5;
  filter: drop-shadow(0 2px 6px rgba(111, 168, 138, 0.4));
}

.feature-card-content h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.feature-card-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Slide Indicators (Lines) */
.slide-indicators {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  gap: 10px;
  z-index: 10;
  padding: 0 50px;
}

.indicator {
  flex: 1;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: white;
  transition: width 0.3s ease;
}

.indicator.active {
  background-color: rgba(255, 255, 255, 0.4);
}

.indicator.active::before {
  width: 100%;
  animation: slideProgress 3s linear;
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

@keyframes slideProgress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* Remove old progress bar styles */
.slide-progress {
  display: none;
}

.progress-bar {
  display: none;
}

@keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* ========================================
   FEATURED SPOTS SECTION
   ======================================== */
.featured-section {
  padding: 100px 0 120px;
  background-color: #F0F5F2;
  position: relative;
}

.featured-header {
  text-align: center;
  margin-bottom: 70px;
}

.featured-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #aaa;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.featured-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #1B1B1B;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.featured-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #404040;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
  letter-spacing: 0;
}

.featured-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Featured Card */
.featured-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

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

.card-image {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

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

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

/* Status Badge */
.status-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #4CAF50;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 18px;
  border-radius: 20px;
  z-index: 5;
  text-transform: capitalize;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.card-content {
  padding: 32px 34px 28px;
  position: relative;
}

.card-content h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1B1B1B;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.card-description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  letter-spacing: 0;
  margin-bottom: 26px;
  min-height: 50px;
  max-height: 50px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  gap: 15px;
}

.card-price {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1B1B1B;
  letter-spacing: -0.01em;
  flex: 1;
  line-height: 1.3;
  white-space: nowrap;
}

.card-btn {
  background: #1B1B1B;
  border: none;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 13px 36px;
  border-radius: 24px;
  text-decoration: none;
  display: inline-block;
}

.card-btn:hover {
  background: #333333;
  transform: scale(1.05);
}

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

@media (max-width: 768px) {
  .featured-section {
    padding: 80px 0;
  }
  
  .featured-header h2 {
    font-size: 2.2rem;
    letter-spacing: -0.02em;
  }
  
  .featured-cards {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  
  .featured-card:hover {
    transform: translateY(-10px) scale(1.01);
  }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.about-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-content h2 svg {
  flex-shrink: 0;
  stroke: #6fa88a;
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
}

.about-content:hover h2 svg {
  stroke: #4a7359;
  transform: scale(1.1);
}

.about-content > p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 60px;
  line-height: 1.8;
  letter-spacing: 0;
}

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

.feature {
  text-align: center;
  padding: 25px 20px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: #6fa88a;
  stroke-width: 2;
  transition: all 0.3s ease;
}

.feature:hover .feature-icon {
  background: linear-gradient(135deg, #6fa88a 0%, #5a8970 100%);
  transform: scale(1.05);
}

.feature:hover .feature-icon svg {
  stroke: white;
  transform: scale(1.1);
}

.feature h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.feature p {
  font-family: 'Inter', sans-serif;
  color: #666;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

/* ========================================
   LOCATIONS SECTION
   ======================================== */
.locations-section {
  padding: 100px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.location-subtitle {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 50px;
  line-height: 1.7;
  letter-spacing: 0;
}

/* Google Maps Container */
.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 50px;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
}

/* Location Info Box Below Map */
.location-info-box {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.info-item:hover {
  background-color: #fff;
  border-color: #e0e0e0;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-item svg {
  flex-shrink: 0;
  stroke: #666;
}

.info-item h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.info-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  letter-spacing: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: #0A0E27;
  color: #FCFCFC;
  padding: 80px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand */
.footer-brand {
  max-width: 400px;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 32px;
  text-align: justify;
  letter-spacing: 0;
}

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

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:nth-child(1) {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.footer-social a:nth-child(2) {
  background: #1877f2;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.footer-social a:nth-child(3) {
  background: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.footer-social a svg {
  stroke: white;
  fill: none;
}

.footer-social a:nth-child(3) svg {
  fill: white;
  stroke: none;
}

.footer-social a:hover {
  transform: translateY(-4px) scale(1.05);
  filter: brightness(1.1);
}

/* Footer Columns */
.footer-column h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

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

.footer-column ul li {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-column ul li svg {
  flex-shrink: 0;
  opacity: 0.5;
  stroke: rgba(255, 255, 255, 0.6);
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 0;
}

.footer-column ul li a:hover {
  color: white;
  transform: translateX(3px);
}

/* Contact List */
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 20px;
  letter-spacing: 0;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0;
}

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

.footer-bottom-links .separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.3s ease;
  letter-spacing: 0;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 20px;
  }

  /* Hamburger Button */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
  }

  .hamburger span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
  }

  .navbar.scrolled .hamburger span {
    background: #000;
  }

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

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

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

  /* Hide nav items by default */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    margin-left: 0;
    margin-right: 0;
  }

  .nav.active {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .nav a {
    font-size: 1.2rem;
    color: white !important;
    letter-spacing: 0;
  }

  .book-now-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
  }

  .hero-content {
    left: 5%;
  }

  .hero-content h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    margin-bottom: 16px;
    padding: 8px 12px;
    gap: 6px;
  }

  .eyebrow-icon {
    width: 16px;
    height: 16px;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero-cta {
    gap: 12px;
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
    text-align: center;
    justify-content: center;
  }

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

  /* Mobile Hero Features - 2x2 grid on tablet, 1 column on mobile */
  .hero-features {
    position: static;
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
  }

  .feature-card {
    padding: 24px 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .feature-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    background: rgba(111, 168, 138, 0.3);
  }

  .feature-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: #8fd4ad;
    stroke-width: 2.5;
  }

  .feature-card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
  }

  .feature-card-content p {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
  }
}

/* Mobile - Single Column */
@media (max-width: 480px) {
  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 20px 16px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .feature-card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    background: rgba(111, 168, 138, 0.3);
  }

  .feature-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #8fd4ad;
    stroke-width: 2.5;
  }

  .feature-card-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
  }

  .feature-card-content p {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
  }

  .about-content h2,
  .section-title {
    font-size: 2rem;
    letter-spacing: -0.02em;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .map-container iframe {
    height: 400px;
  }
  
  .location-info-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .info-item {
    padding: 20px;
  }
}


/* ========================================
   KPR SIMULATION SECTION
   ======================================== */
.kpr-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #2a3152 100%);
}

/* Decorative Elements */
.kpr-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(167,190,179,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.kpr-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167,190,179,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.kpr-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.kpr-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #FCFCFC;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.kpr-header p {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  letter-spacing: 0;
}

.kpr-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* KPR Calculator Form */
.kpr-calculator {
  background: rgba(255, 255, 255, 0.98);
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.kpr-calculator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #A7BEB3 0%, #1B1B1B 100%);
}

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

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1B1B1B;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 15px;
  font-weight: 600;
  color: #404040;
  pointer-events: none;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid #E5E5E5;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1B1B1B;
  transition: all 0.3s ease;
  background-color: #FCFCFC;
  letter-spacing: 0;
}

.form-group input[type="number"],
.form-group select {
  padding-left: 15px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #A7BEB3;
  box-shadow: 0 0 0 4px rgba(167, 190, 179, 0.15);
  background-color: #fff;
}

.percentage-display {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #666;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #F0F5F2;
  border-radius: 6px;
}

.percentage-display span {
  font-weight: 700;
  color: #A7BEB3;
}

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

.calculate-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #1B1B1B 0%, #333 100%);
  color: #FCFCFC;
  border: none;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.calculate-btn:hover {
  background: linear-gradient(135deg, #000 0%, #1B1B1B 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.calculate-btn svg {
  stroke: #FCFCFC;
}

/* KPR Result */
.kpr-result {
  background: linear-gradient(135deg, #A7BEB3 0%, #667a71 50%, #1B1B1B 100%);
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  color: #FCFCFC;
  animation: slideInRight 0.5s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.kpr-result::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.result-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 30px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.result-main {
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}

.result-label {
  font-size: 0.88rem;
  opacity: 0.75;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-value {
  font-family: 'Manrope', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  line-height: 1.1;
}

.result-details {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 0.92rem;
  opacity: 0.8;
}

.detail-value {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.result-info {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 16px 18px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}

.result-info svg {
  flex-shrink: 0;
  opacity: 0.8;
  margin-top: 2px;
}

.result-info p {
  font-size: 0.87rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
  .kpr-container {
    grid-template-columns: 1fr;
  }

  .kpr-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .kpr-section {
    padding: 60px 0;
  }

  .kpr-header h2 {
    font-size: 2rem;
    letter-spacing: -0.02em;
  }

  .kpr-calculator,
  .kpr-result {
    padding: 30px 25px;
  }

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

  .result-value {
    font-size: 2.2rem;
    letter-spacing: -0.02em;
  }
}
.footer-description {
  text-align: justify;
}
.contact-icon {
  text-align: justify;
}

/* Range Slider Styles */
.range-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.range-wrapper input[type="range"] {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: #e0e0e0;
  outline: none;
  -webkit-appearance: none;
}

.range-wrapper input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1B1B1B;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.range-wrapper input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.range-wrapper input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1B1B1B;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.range-wrapper input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.range-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1B1B1B;
  min-width: 60px;
  text-align: right;
}
