/* ==========================================================================
   SERAYA SPA - Global Stylesheet
   ========================================================================== */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  /* Color Palette */
  --color-primary: #7C9885;
  /* Sage Green */
  --color-primary-dark: #637F6C;
  --color-secondary: #4A3B32;
  /* Natural Wood Brown */
  --color-accent: #C5A880;
  /* Gold Accent */
  --color-accent-hover: #b3956d;

  --color-bg-main: #F9F6F0;
  /* Soft Cream */
  --color-bg-card: #FFFFFF;
  --color-bg-overlay: rgba(34, 40, 36, 0.7);

  --color-text-dark: #2c2a29;
  --color-text-muted: #6b6661;
  --color-text-light: #F9F6F0;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* --- Reset & Base Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-main);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-weight: 600;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* --- Utilities --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-text-light);
}

.btn-outline:hover {
  background-color: var(--color-text-light);
  color: var(--color-secondary);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-text-light);
}

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

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hide logo image by default (hero/transparent navbar) */
.logo img {
  height: 40px;
  width: auto;
  display: none;
  transition: all var(--transition-normal);
}

/* Show logo image + change text color when navbar becomes solid */
.navbar.scrolled .logo {
  color: var(--color-secondary);
}

.navbar.scrolled .logo img {
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-light);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--color-text-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* --- Navbar Booking CTA Button --- */
.nav-booking {
  background: var(--color-primary);
  color: white !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  border: 2px solid var(--color-primary);
  white-space: nowrap;
}

.nav-booking::after {
  display: none !important;
}

.nav-booking:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(124, 152, 133, 0.4);
}

.navbar.scrolled .nav-booking {
  color: white !important;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--color-text-light);
  transition: all var(--transition-fast);
}

.navbar.scrolled .hamburger span {
  background-color: var(--color-secondary);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: var(--color-text-light);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  color: var(--color-text-light);
  font-size: 4rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
  color: var(--color-text-light);
  font-size: 2rem;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-20px) translateX(-50%);
  }

  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.about-image img {
  width: 100%;
  transition: transform var(--transition-slow);
}

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

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.feature-item span {
  font-weight: 500;
  color: var(--color-secondary);
}

/* --- Stats / Highlight Section --- */
.stats {
  background-color: var(--color-primary);
  padding: 60px 0;
  color: var(--color-text-light);
}

.stats .container {
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item h4 {
  font-size: 3rem;
  color: var(--color-text-light);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background: var(--color-bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item i {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-top: 5px;
}

.info-item h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.info-item p {
  color: var(--color-text-muted);
}

.contact-form {
  background: var(--color-bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* --- Footer --- */
.footer {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-col p {
  opacity: 0.8;
  margin-bottom: 15px;
}

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

.footer-col ul li a {
  opacity: 0.8;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--color-accent);
}

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

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

.social-links a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
  font-size: 0.9rem;
}

/* --- Floating Elements --- */
.floating-wa {
  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: 2rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transition: transform var(--transition-fast);
}

.floating-wa:hover {
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 35px;
  background-color: var(--color-primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-primary-dark);
}

/* --- Common Components (Services & Blog) --- */
.page-header {
  padding: 150px 0 80px;
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  text-align: center;
}

.page-header h1 {
  color: var(--color-text-light);
  font-size: 3rem;
  margin-bottom: 15px;
}

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-content p {
  color: var(--color-text-muted);
  margin-bottom: 15px;
}

.card-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 20px;
}

/* --- Service Details Page --- */
.detail-banner {
  height: 60vh;
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.detail-banner h1 {
  color: white;
  font-size: 3.5rem;
  z-index: 1;
  text-align: center;
}

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

.detail-main h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.detail-sidebar {
  background: var(--color-bg-card);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.sidebar-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--color-text-muted);
}

.sidebar-item p {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.detail-sidebar .btn {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 40px;
}

.gallery-grid img {
  border-radius: var(--radius-sm);
  height: 200px;
  object-fit: cover;
}

/* --- Blog Page --- */
.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.search-box {
  position: relative;
  width: 300px;
}

.search-box input {
  width: 100%;
  padding: 12px 20px;
  padding-right: 40px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-family: var(--font-body);
}

.search-box i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
}

.categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cat-btn {
  padding: 8px 16px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cat-btn.active,
.cat-btn:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* --- FAQ Accordion --- */
.faq {
  background: var(--color-bg-card);
  padding: 80px 0;
}

.faq-item {
  background: var(--color-bg-main);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 1.05rem;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(124, 152, 133, 0.08);
}

.faq-question i {
  transition: transform var(--transition-normal);
  color: var(--color-primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 25px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 25px 20px;
}

/* --- Testimonial Slider --- */
.testimonials {
  background: linear-gradient(135deg, var(--color-bg-main) 0%, #f0ede7 100%);
  padding: 80px 0;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-item {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-item .stars {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-item blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-item .author {
  font-weight: 600;
  color: var(--color-primary-dark);
}

.testimonial-item .author span {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition-fast);
  border: none;
}

.testimonial-dots .dot.active {
  background: var(--color-primary);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-bg-card);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  z-index: 2;
}

.testimonial-nav:hover {
  background: var(--color-primary);
  color: white;
}

.testimonial-nav.prev {
  left: 0;
}

.testimonial-nav.next {
  right: 0;
}

/* --- Brand Timeline --- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 40px auto 0;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-primary);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 35px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid var(--color-bg-main);
}

.timeline-item h4 {
  color: var(--color-primary);
  margin-bottom: 5px;
  font-size: 1rem;
}

.timeline-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* --- CTA Premium Section --- */
.cta-section {
  background-image: url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: var(--color-text-light);
}

.cta-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 40, 36, 0.75);
}

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

.cta-content h2 {
  font-size: 2.8rem;
  color: var(--color-text-light);
  margin-bottom: 15px;
}

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

/* --- Spa Gallery Section --- */
.spa-gallery {
  padding: 80px 0;
}

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

.gallery-masonry .gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
}

.gallery-masonry .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

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

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

/* --- Related Services --- */
.related-services {
  padding: 60px 0;
  background: var(--color-bg-main);
}

/* --- Price List Section --- */
.price-list {
  padding: 80px 0;
  background: var(--color-bg-card);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-category-label {
  grid-column: 1 / -1;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(124, 152, 133, 0.1) 0%, rgba(124, 152, 133, 0.05) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-sm);
  margin-top: 10px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-category-label:first-child {
  margin-top: 0;
}

.price-category-label i {
  font-size: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--color-bg-main);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.price-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.price-item-info h4 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.price-item-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.price-item-cost {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1rem;
  white-space: nowrap;
}

.price-cta {
  text-align: center;
  margin-top: 35px;
}

/* --- WhatsApp Chat Widget --- */
.wa-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

.wa-toggle {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  border: none;
  color: white;
  font-size: 1.8rem;
}

.wa-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.wa-popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transform: scale(0.5) translateY(20px);
  opacity: 0;
  transform-origin: bottom right;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.wa-widget.open .wa-popup {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.wa-widget.open .wa-toggle .fa-whatsapp {
  display: none;
}

.wa-widget.open .wa-toggle .fa-xmark {
  display: inline;
}

.wa-toggle .fa-xmark {
  display: none;
}

.wa-header {
  background: #075E54;
  color: white;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-header-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.wa-header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wa-header-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: white;
}

.wa-header-info p {
  font-size: 0.75rem;
  opacity: 0.8;
  color: #d1f1d9;
}

.wa-body {
  padding: 20px;
  background: #e5ddd5;
  min-height: 80px;
}

.wa-message {
  background: white;
  padding: 12px 16px;
  border-radius: 0 12px 12px 12px;
  font-size: 0.88rem;
  color: #303030;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  max-width: 85%;
}

.wa-message small {
  display: block;
  text-align: right;
  color: #999;
  font-size: 0.72rem;
  margin-top: 5px;
}

.wa-footer {
  padding: 12px 15px;
  display: flex;
  gap: 8px;
  background: white;
}

.wa-footer a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 12px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.wa-footer a:hover {
  background: #128C7E;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .about-grid,
  .contact-grid,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    color: var(--color-text-dark);
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

  .stats .container {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-content h2 {
    font-size: 2rem;
  }

  .testimonial-nav {
    display: none;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .search-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    width: 100%;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .wa-popup {
    width: 290px;
    right: -5px;
  }

  .nav-booking {
    padding: 8px 18px;
    font-size: 0.8rem !important;
  }
}