/* ===== Serene Lotus Spa — Stylesheet ===== */

:root {
  --sage: #7C9885;
  --sage-light: #9CBBA0;
  --sage-pale: #E8EFE6;
  --cream: #FAF6EE;
  --gold: #C9A76D;
  --dark: #2F3E36;
  --text: #56655C;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(47, 62, 54, 0.08);
  --radius: 14px;
  --transition: 0.35s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-alt { background: var(--sage-pale); }

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

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-head h2 { font-size: 2.4rem; margin-bottom: 14px; }
.section-head p { font-size: 1.02rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

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

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

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--dark);
  transform: translateY(-3px);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(47,62,54,0.06);
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { width: 42px; height: 42px; }
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.brand-text span { color: var(--sage); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--sage); }

.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-cta .btn { padding: 11px 26px; font-size: 0.85rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  margin-top: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(47,62,54,0.72), rgba(47,62,54,0.35));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 24px;
  margin: 0 auto;
  width: 100%;
  color: var(--white);
  text-align: center;
}
.hero-content .section-tag { color: var(--sage-light); }
.hero-content h1 {
  color: var(--white);
  font-size: 3.4rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 34px;
  color: #EDEFE9;
}
.hero-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(47,62,54,0.68);
}
.page-hero-content { position: relative; z-index: 2; color: var(--white); }
.page-hero-content h1 { color: var(--white); font-size: 2.8rem; margin-bottom: 12px; }
.breadcrumb { color: var(--sage-light); letter-spacing: 1px; font-size: 0.9rem; }
.breadcrumb a { color: var(--white); font-weight: 600; }

/* ===== Highlights strip ===== */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: -70px;
  position: relative;
  z-index: 5;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.highlight-card:hover { transform: translateY(-8px); }
.highlight-card .icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
}
.highlight-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.highlight-card p { font-size: 0.9rem; }

/* ===== About / Split sections ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split-img { position: relative; }
.split-img img {
  border-radius: var(--radius);
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.split-img .float-img {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow);
}
.split-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.split-text p { margin-bottom: 16px; }
.checklist { margin-top: 24px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--dark);
}
.checklist li::before {
  content: '✓';
  background: var(--sage);
  color: var(--white);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Values / Icon grid ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); }
.value-card .icon { font-size: 2.2rem; margin-bottom: 18px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.value-card p { font-size: 0.92rem; }

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); }
.team-card img { width: 100%; height: 260px; object-fit: cover; }
.team-info { padding: 22px 16px; }
.team-info h4 { font-size: 1.05rem; margin-bottom: 4px; }
.team-info span { color: var(--gold); font-size: 0.85rem; font-weight: 600; }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(47,62,54,0.14); }
.service-img { position: relative; height: 220px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-price {
  position: absolute;
  bottom: 14px; right: 14px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}
.service-body { padding: 26px 24px; }
.service-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-body p { font-size: 0.9rem; margin-bottom: 16px; }
.service-body a { color: var(--sage); font-weight: 600; font-size: 0.88rem; }
.service-body a::after { content: ' →'; }

/* ===== Pricing table style list ===== */
.price-list { margin-top: 20px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(47,62,54,0.18);
}
.price-row:last-child { border-bottom: none; }
.price-row .name { font-weight: 600; color: var(--dark); font-size: 1.02rem; }
.price-row .desc { font-size: 0.85rem; color: var(--text); margin-top: 4px; }
.price-row .amount { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); font-weight: 700; white-space: nowrap; padding-left: 20px; }

/* ===== Gallery ===== */
.gallery-grid {
  columns: 4 260px;
  column-gap: 22px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(47,62,54,0.75), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: 0.95rem; }

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--sage-pale);
  background: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,26,22,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: 10px; }
.lightbox-close {
  position: absolute;
  top: 30px; right: 40px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none; border: none;
}

/* ===== Testimonials ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 34px;
  box-shadow: var(--shadow);
  height: 100%;
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-card p { font-style: italic; margin-bottom: 22px; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-person h5 { font-size: 0.95rem; color: var(--dark); }
.testi-person span { font-size: 0.8rem; color: var(--gold); }
.grid-3-testi { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(120deg, var(--dark), var(--sage));
  border-radius: var(--radius);
  padding: 70px 50px;
  text-align: center;
  color: var(--white);
  margin: 0 auto;
}
.cta-band h2 { color: var(--white); font-size: 2.1rem; margin-bottom: 14px; }
.cta-band p { color: #E3E9E2; margin-bottom: 30px; }

/* ===== Contact ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px 36px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 10px; }
.contact-info-card > p { color: #C9D2C7; margin-bottom: 30px; font-size: 0.92rem; }
.info-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.info-item .icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gold);
}
.info-item h5 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.info-item p { color: #C9D2C7; font-size: 0.88rem; }
.social-row { display: flex; gap: 12px; margin-top: 30px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: var(--white);
  font-size: 0.95rem;
}
.social-row a:hover { background: var(--gold); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--sage-pale);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  background: var(--cream);
  transition: var(--transition);
  color: var(--dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-msg { margin-top: 16px; font-size: 0.9rem; font-weight: 600; display: none; }
.form-msg.show { display: block; }
.form-msg.success { color: var(--sage); }
.form-msg.error { color: #B85C5C; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 60px;
}
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ===== FAQ ===== */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
}
.faq-question .plus { font-size: 1.4rem; color: var(--sage); transition: var(--transition); }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
  font-size: 0.92rem;
}
.faq-item.open .faq-answer { max-height: 220px; padding: 0 28px 24px; }

/* ===== Footer ===== */
.site-footer { background: var(--dark); color: #C9D2C7; padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand img { width: 38px; }
.footer-brand span { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--white); font-weight: 700; }
.footer-col h5 { color: var(--white); font-size: 1rem; margin-bottom: 22px; font-family: 'Playfair Display', serif; }
.footer-col ul li { margin-bottom: 12px; font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { font-size: 0.9rem; margin-bottom: 10px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); }
.footer-bottom {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--gold); }

/* ===== Scroll top ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 900;
  border: none;
  font-size: 1.1rem;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .highlights { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3-testi { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .gallery-grid { columns: 3 220px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    padding: 100px 34px;
    gap: 26px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  .hero-content h1 { font-size: 2.3rem; }
  .section { padding: 70px 0; }
  .highlights { grid-template-columns: 1fr; margin-top: 30px; }
  .grid-3 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 200px; }
  .page-hero-content h1 { font-size: 2.1rem; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .cta-band { padding: 50px 24px; }
}
