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

:root {
  /* Colors */
  --color-primary: #0A3B2C; /* Deep Green */
  --color-primary-light: #165642;
  --color-accent: #D4AF37; /* Warm Gold */
  --color-accent-hover: #b8972e;
  --color-bg-light: #F2F5F4; /* Very subtle green/gray off-white for body */
  --color-white: #FFFFFF;
  --color-black: #111111;
  --color-text-main: #1F2937;
  --color-text-muted: #6B7280;
  --color-border: #E5E7EB;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 24px -4px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(0, 0, 0, 0.15);
  
  /* Radii */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px; /* For bento sections */
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-black);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 64px; }

/* Bento Container */
.bento-section {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  margin: 24px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .bento-section {
    padding: 40px 24px;
    margin: 16px;
    border-radius: var(--radius-lg);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.btn-primary {
  background-color: var(--color-black);
  color: var(--color-white);
}
.btn-primary:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}

/* Header & Nav */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: -0.03em;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--color-white);
  font-size: 0.95rem;
  opacity: 0.9;
}
.nav-link:hover {
  opacity: 1;
}

/* Hero Section */
.hero {
  height: auto;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  margin: 16px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding-bottom: 40px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 100px;
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  max-width: 600px;
  font-weight: 300;
}

/* Floating Booking Bar */
.floating-bar {
  background: var(--color-white);
  border-radius: 100px;
  padding: 12px 12px 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: -50px auto 40px;
  position: relative;
  z-index: 20;
  box-shadow: var(--shadow-lg);
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bar-item h4 {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-weight: 500;
}
.bar-item p {
  font-weight: 600;
  color: var(--color-black);
  font-size: 1rem;
}
.bar-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  margin: 0 24px;
}

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }

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

/* Sleek Cards */
.sleek-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.sleek-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.sleek-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.sleek-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  z-index: 2;
  color: white;
}
.sleek-card-content h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.sleek-card:hover img {
  transform: scale(1.05);
}

/* Icon Box */
.icon-box {
  padding: 32px;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.icon-box:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.icon-box i {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 24px;
  display: inline-block;
}

/* Testimonials Layout */
.grid-testimonials {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .grid-testimonials { grid-template-columns: 1fr; }
}

/* Video Testimonial Card */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  cursor: pointer;
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-card:hover img {
  transform: scale(1.05);
}
.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}
.video-card:hover::after {
  background: rgba(0,0,0,0.1);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 10;
  transition: all 0.3s ease;
}
.video-card:hover .play-btn {
  background: white;
  color: var(--color-primary);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: white;
  z-index: 10;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* Text Reviews */
.review-item {
  padding: 24px;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}
.stars {
  color: var(--color-accent);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.reviewer-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* FAQ Accordion */
.faq-details {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-summary {
  padding: 24px;
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-black);
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}
.faq-details[open] .faq-summary::after {
  transform: rotate(45deg);
}
.faq-content {
  padding: 0 24px 24px;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.faq-details[open] {
  background: white;
  box-shadow: var(--shadow-sm);
}

/* Form Styles */
.modern-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--color-bg-light);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.modern-input:focus {
  outline: none;
  background: white;
  border-color: var(--color-black);
}

/* Pricing Cards */
.pricing-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-25deg);
  transition: all 0.6s ease;
  z-index: 1;
  pointer-events: none;
}
.pricing-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  border-color: rgba(181, 142, 60, 0.3);
}
.pricing-card:hover::before {
  left: 200%;
}
.pricing-card-dark {
  background: var(--color-black) !important;
  color: white !important;
  transform: scale(1.05); /* Default scale for middle card */
}
.pricing-card-dark:hover {
  box-shadow: 0 25px 50px rgba(181, 142, 60, 0.2);
  border-color: var(--color-primary);
  transform: scale(1.08) translateY(-10px) !important;
}
.pricing-card i {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card:hover i {
  transform: scale(1.2) translateY(-5px);
  color: var(--color-primary);
}

/* --- MOTION & ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: all 0.3s ease;
}
.floating-whatsapp:hover { transform: scale(1.1); }

/* --- COMPREHENSIVE MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
  /* Fix Navigation for Mobile */
  .nav-container {
    padding: 12px 20px;
  }
  .nav-menu li:not(:last-child) {
    display: none; /* Hide standard links, keep the CTA button */
  }
  .nav-menu {
    gap: 0;
  }
  .logo-text {
    font-size: 1.25rem;
  }

  /* Fix Hero Section */
  .hero {
    min-height: auto;
    height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
    margin: 8px;
    align-items: flex-start;
  }
  .hero-content {
    padding-top: 60px;
  }
  .hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  /* Fix Booking Widget on Mobile */
  #heroBookingForm {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  #heroBookingForm > div {
    width: 100%;
  }

  /* Fix Typography */
  h2 {
    font-size: 2rem !important;
  }

  /* Fix Grids to 1 Column */
  .grid-2, .grid-3, .grid-4, .grid-testimonials {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  /* Fix Pricing Card Overlap & Horizontal Scroll */
  .pricing-card-dark {
    transform: scale(1) !important;
    z-index: 1;
  }
  .pricing-card-dark:hover {
    transform: translateY(-5px) scale(1.02) !important;
  }

  /* Fix Bento Sections */
  .bento-section {
    padding: 32px 20px;
    margin: 16px 0;
  }

  /* Form Layout */
  .contact-form .grid-2 {
    gap: 16px;
  }
  
  /* Feature List padding */
  ul {
    padding-left: 20px;
  }

  /* Fix Floating Booking Bar */
  .floating-bar {
    flex-direction: column;
    padding: 24px;
    margin: -30px 16px 24px;
    gap: 16px;
    align-items: flex-start;
  }
  .bar-divider {
    width: 100%;
    height: 1px;
    margin: 8px 0;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
}
