/* ===================================
   AMBIENCE SPA & SALON — styles.css
   =================================== */

/* --- Variables --- */
:root {
  --gold: #b8975a;
  --gold-light: #d4b483;
  --gold-dark: #8a6d35;
  --cream: #faf6f0;
  --dark: #1a1a1a;
  --dark-2: #2d2d2d;
  --text: #444;
  --text-light: #777;
  --white: #fff;
  --green: #5a7a5a;
  --green-light: #e8f0e8;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 16px 50px rgba(0, 0, 0, 0.18);
  --radius: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Lato", system-ui, sans-serif;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span {
  color: var(--gold);
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 151, 90, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 20px 0;
  transition: var(--transition);
  background-color: black;
}
.navbar.scrolled {
  background: var(--cream);
  backdrop-filter: none;
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.navbar.scrolled .logo-text {
  color: var(--dark);
}
.navbar.scrolled .logo-text em {
  color: var(--gold);
}
.navbar.scrolled .nav-links a:not(.nav-btn) {
  color: var(--dark);
}
.navbar.scrolled .nav-links a:not(.nav-btn):hover {
  color: var(--gold);
}
.navbar.scrolled .hamburger span {
  background: var(--dark);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.logo-text em {
  color: var(--gold-light);
  font-style: italic;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.nav-btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:not(.nav-btn):hover {
  color: var(--gold-light);
}
.nav-links a:not(.nav-btn):hover::after {
  width: 100%;
}
.nav-btn {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
}
.nav-btn:hover {
  background: var(--gold-dark) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}
.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);
}

/* =========================
   BANNER SLIDER
   ========================= */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

/* --- Track --- */
.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* --- Individual Slides --- */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}
.slide.exit {
  opacity: 0;
  transform: scale(0.97);
}

/* --- Overlays --- */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.78) 0%,
    rgba(90, 122, 90, 0.38) 60%,
    rgba(184, 151, 90, 0.28) 100%
  );
}
.slide-overlay--green {
  background: linear-gradient(
    135deg,
    rgba(20, 40, 20, 0.8) 0%,
    rgba(60, 100, 60, 0.5) 60%,
    rgba(184, 151, 90, 0.25) 100%
  );
}
.slide-overlay--dark {
  background: linear-gradient(
    160deg,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(40, 30, 20, 0.6) 70%,
    rgba(184, 151, 90, 0.2) 100%
  );
}
.slide-overlay--warm {
  background: linear-gradient(
    135deg,
    rgba(30, 15, 5, 0.82) 0%,
    rgba(100, 60, 20, 0.55) 60%,
    rgba(184, 151, 90, 0.3) 100%
  );
}

/* --- Slide Content --- */
.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 820px;
}
.slide-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s 0.2s ease,
    transform 0.7s 0.2s ease;
}
.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s 0.38s ease,
    transform 0.7s 0.38s ease;
}
.slide-title span {
  color: var(--gold-light);
  display: block;
}
.slide-subtitle {
  font-size: clamp(0.98rem, 2.2vw, 1.18rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s 0.54s ease,
    transform 0.7s 0.54s ease;
}
.slide-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s 0.68s ease,
    transform 0.7s 0.68s ease;
}

/* Animate content in on active slide */
.slide.active .slide-label,
.slide.active .slide-title,
.slide.active .slide-subtitle,
.slide.active .slide-btns {
  opacity: 1;
  transform: translateY(0);
}

/* --- Arrow Buttons --- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition:
    background var(--transition),
    transform var(--transition),
    border-color var(--transition);
}
.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}
.slider-arrow--prev {
  left: 28px;
}
.slider-arrow--next {
  right: 28px;
}

/* --- Dots --- */
.slider-dots {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    width var(--transition),
    border-radius var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* --- Progress Bar --- */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 10;
}
.slider-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  transition: width linear;
}

/* --- Slide Counter --- */
.slide-counter {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.slide-counter span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}
.slide-counter .current-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
.slide-counter .total-num {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* --- Scroll Indicator --- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.hero-scroll-indicator span {
  display: block;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollBob 1.5s infinite;
}

/* Responsive arrows */
@media (max-width: 600px) {
  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
  }
  .slider-arrow--prev {
    left: 12px;
  }
  .slider-arrow--next {
    right: 12px;
  }
  .slider-dots {
    bottom: 56px;
  }
}

/* =========================
   MARQUEE STRIP
   ========================= */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  flex-shrink: 0;
  padding: 0 32px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.marquee-track span i {
  font-size: 0.75rem;
  opacity: 0.75;
}

/* =========================
   ABOUT
   ========================= */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-main:hover img {
  transform: scale(1.03);
}
.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}
.about-img-accent img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.about-badge i {
  font-size: 1.6rem;
}
.about-badge span {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.about-text {
  padding-bottom: 40px;
}
.about-desc {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-features {
  margin: 32px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-item i {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.feature-item strong {
  display: block;
  color: var(--dark);
  font-size: 0.95rem;
}
.feature-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* =========================
   SERVICES
   ========================= */
.services {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.services-bg-decor {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(184, 151, 90, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

/* --- Card shell --- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

/* --- Image area --- */
.service-img {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.07);
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 45%,
    rgba(26, 26, 26, 0.55) 100%
  );
  transition: opacity var(--transition);
}
.service-card:hover .service-img-overlay {
  opacity: 0.7;
}

/* --- Text body --- */
.service-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
  position: relative;
}
.service-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover .service-body::before {
  transform: scaleX(1);
}
.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.service-link {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    gap var(--transition),
    color var(--transition);
  align-self: flex-start;
}
.service-link:hover {
  gap: 10px;
  color: var(--gold-dark);
}
.service-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}
.service-btn--call {
  background: var(--gold);
  color: var(--white);
}
.service-btn--call:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(184, 151, 90, 0.35);
}
.service-btn--enquire {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.service-btn--enquire:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================
   WHY CHOOSE US
   ========================= */
.why-us {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(184, 151, 90, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(90, 122, 90, 0.1) 0%,
      transparent 60%
    );
}
.why-us .section-label {
  color: var(--gold-light);
}
.why-us .section-title {
  color: var(--white);
}
.why-us .section-title span {
  color: var(--gold);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(184, 151, 90, 0.1);
  border-color: rgba(184, 151, 90, 0.3);
  transform: translateY(-6px);
}
.why-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(184, 151, 90, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

/* =========================
   GALLERY
   ========================= */
.gallery {
  background: var(--cream);
}

/* Filter buttons */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.gfilter-btn {
  padding: 9px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(184, 151, 90, 0.35);
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
}
.gfilter-btn:hover,
.gfilter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Masonry-style grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  grid-row: span 1;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  transition:
    opacity 0.55s ease,
    transform var(--transition),
    box-shadow var(--transition);
}
.gallery-item.tall {
  grid-row: span 1;
}
.gallery-item.wide {
  grid-column: span 1;
}

/* Stagger reveal on scroll */
.gallery-item.gallery-reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
}
.gallery-item.gallery-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.72) 0%,
    rgba(184, 151, 90, 0.18) 60%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:focus-within .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transform: translateY(10px);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-info {
  transform: translateY(0);
}
.gallery-item:focus-within .gallery-info {
  transform: translateY(0);
}
.gallery-info i {
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.gallery-info span {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Hidden items (filtered out) */
.gallery-item.hidden {
  display: none;
}

/* =========================
   LIGHTBOX
   ========================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 5, 5, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
  padding: 20px 80px;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

/* Wrapper holds image + caption, centered */
.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: auto;
}

/* Image — natural size, only shrinks if wider/taller than viewport */
.lightbox-content img {
  display: block;
  max-width: calc(100vw - 180px);
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.75);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox.open .lightbox-content img {
  transform: scale(1);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

/* Counter — top centre */
.lightbox-counter {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 18px;
  border-radius: 50px;
  z-index: 10;
}

/* ── Close button ── large, top-right, always visible */
.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2010;
  width: 52px;
  height: 52px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(184, 151, 90, 0.55);
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.lightbox-close:hover {
  background: #c0392b;
  box-shadow: 0 6px 24px rgba(192, 57, 43, 0.5);
  transform: rotate(90deg) scale(1.1);
}
.lightbox-close i {
  pointer-events: none;
}

/* ── Arrow buttons ── */
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2010;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}
.lightbox-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.lightbox-prev {
  left: 16px;
}
.lightbox-prev:hover {
  transform: translateY(-50%) translateX(-3px);
}
.lightbox-next {
  right: 16px;
}
.lightbox-next:hover {
  transform: translateY(-50%) translateX(3px);
}

/* Gallery responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
  .gallery-item.tall {
    grid-row: span 2;
  }
}
@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .lightbox-arrow {
    display: none;
  }
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials {
  background: linear-gradient(180deg, #fff 0%, #faf6f0 100%);
}
.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-window {
  overflow: hidden;
  border-radius: var(--radius);
}
.testimonial-track {
  display: flex;
  transition: transform 0.55s ease;
}
.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(184, 151, 90, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 36px 34px;
  text-align: center;
}
.testimonial-stars {
  color: var(--gold);
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.testimonial-quote {
  color: var(--text);
  font-size: 1.03rem;
  line-height: 1.9;
  margin-bottom: 24px;
}
.testimonial-author h4 {
  font-family: var(--font-serif);
  color: var(--dark);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.testimonial-author span {
  color: var(--text-light);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(184, 151, 90, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 3;
}
.testimonial-arrow:hover {
  background: var(--gold-dark);
}
.testimonial-arrow--prev {
  left: -24px;
}
.testimonial-arrow--next {
  right: -24px;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.tdot {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: rgba(184, 151, 90, 0.35);
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition);
}
.tdot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* =========================
   CONTACT
   ========================= */
/* =========================
   FAQ
   ========================= */
.faq {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1.5px solid rgba(184, 151, 90, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(184, 151, 90, 0.12);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition:
    color var(--transition),
    background var(--transition);
}
.faq-item.open .faq-question {
  color: var(--gold);
  background: rgba(184, 151, 90, 0.06);
}
.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition:
    transform var(--transition),
    background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-dark);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.8;
  border-top: 1px solid rgba(184, 151, 90, 0.15);
  padding-top: 16px;
}

/* =========================
   CONTACT
   ========================= */
.contact {
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}
.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.contact-details h4 {
  font-family: var(--font-serif);
  color: var(--dark);
  font-size: 0.98rem;
  margin-bottom: 6px;
}
.contact-details p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.55;
}
.contact-details a {
  color: var(--gold);
}
.contact-details a:hover {
  color: var(--gold-dark);
}

/* --- Contact Form --- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e0d8cc;
  border-radius: 10px;
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--dark);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group textarea {
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 151, 90, 0.12);
}
.form-group label {
  position: absolute;
  top: -9px;
  left: 14px;
  background: var(--cream);
  padding: 0 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  pointer-events: none;
  display: none;
}
.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label {
  display: block;
}
.form-success {
  display: none;
  margin-top: 16px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  padding: 12px;
  background: var(--green-light);
  border-radius: 10px;
}
.form-success.show {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* =========================
   FOOTER
   ========================= */
.footer {
  background: var(--dark-2);
}
.footer-top {
  padding: 72px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 2fr;
  gap: 40px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.7;
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}
.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}
.footer-links a,
.footer-services a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition:
    color var(--transition),
    padding-left var(--transition);
}
.footer-links a:hover,
.footer-services a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}
.footer-contact p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.87rem;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.footer-contact a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

/* =========================
   BACK TO TOP
   ========================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 998;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(184, 151, 90, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
}
.back-to-top.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* =========================
   FLOATING CALL BUTTONS
   ========================= */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.float-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  animation: floatPop 0.5s ease both;
}
.float-btn:nth-child(1) {
  animation-delay: 0.1s;
}
.float-btn:nth-child(2) {
  animation-delay: 0.22s;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

/* WhatsApp */
.float-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.float-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: ripplePulse 2s ease-out infinite;
}

/* Call */
.float-call {
  background: linear-gradient(135deg, #4f8ef7, #1a56db);
}
.float-call::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(79, 142, 247, 0.35);
  animation: ripplePulse 2s ease-out infinite 0.4s;
}

/* Icon sits above the ripple */
.float-btn i {
  position: relative;
  z-index: 1;
}

/* Tooltip */
.float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  transform: translateY(-50%) translateX(6px);
}
.float-tooltip::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
}
.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes ripplePulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
@keyframes floatPop {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* =========================
   ONLOAD POPUP FORM
   ========================= */
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lead-popup.show {
  opacity: 1;
  pointer-events: auto;
}
.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 12, 6, 0.72);
  backdrop-filter: blur(2px);
}
.lead-popup-dialog {
  position: relative;
  z-index: 2;
  width: min(92vw, 460px);
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px 24px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  animation: popupIn 0.3s ease;
}
.lead-popup-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  color: #4b5563;
  cursor: pointer;
}
.lead-popup h3 {
  font-family: var(--font-serif);
  color: var(--dark);
  margin-bottom: 6px;
  font-size: 1.5rem;
}
.lead-popup p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 0.92rem;
}
.lead-popup .form-control {
  width: 100%;
  height: 46px;
  border: 1.5px solid #d8d4cc;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 0.92rem;
  outline: none;
}
.lead-popup .form-control:focus {
  border-color: #8b3777;
  box-shadow: 0 0 0 3px rgba(139, 55, 119, 0.15);
}
.lead-popup-submit {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  font-weight: 700;
}
.lead-popup-success {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.lead-popup-success.show {
  display: flex;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollBob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0.3;
  }
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Scroll reveal */
[data-aos] {
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-aos="fade-right"] {
  transform: translateX(-36px);
}
[data-aos="fade-left"] {
  transform: translateX(36px);
}
[data-aos].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
  .about-grid {
    gap: 48px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 210px;
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(80vw, 320px);
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 40px;
    transition: right var(--transition);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    font-size: 1.1rem;
  }
  .navbar.scrolled .nav-links a:not(.nav-btn) {
    color: rgba(255, 255, 255, 0.9);
  }
  .navbar.scrolled .nav-links a:not(.nav-btn):hover {
    color: var(--gold-light);
  }
  .hamburger {
    display: flex;
  }
  .hamburger.active span,
  .nav-links.open + .hamburger span {
    background: rgba(255, 255, 255, 0.95) !important;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img-accent {
    right: 0;
    bottom: -24px;
  }
  .about-badge {
    left: -12px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .testimonial-card {
    padding: 28px 22px;
  }
  .testimonial-quote {
    font-size: 0.96rem;
  }
  .testimonial-arrow {
    width: 40px;
    height: 40px;
  }
  .testimonial-arrow--prev {
    left: -8px;
  }
  .testimonial-arrow--next {
    right: -8px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
  }
  .gallery-item.tall {
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .about-img-accent {
    display: none;
  }
  .about-badge {
    left: 12px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: 10px;
  }
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-overlay {
    padding: 16px;
  }
  .testimonial-arrow {
    display: none;
  }
}
