/* =============================================
   Let's Relax Spa — Main Stylesheet
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9a7a2e;
  --dark: #1a1209;
  --dark-2: #251b0c;
  --dark-3: #2f2210;
  --text: #e8d9b8;
  --text-muted: #a8956e;
  --white: #fff;
  --cream: #fdf6e3;
  --section-bg: #0f0c06;
  --section-alt: #16110a;
  --font-head: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
  --transition: 0.35s ease;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

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

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

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

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

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

.section-pad {
  padding: 90px 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  font-weight: 700;
}
.btn-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ---- Section Labels & Headings ---- */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 18px;
}
.section-title span {
  color: var(--gold);
}

.section-sub {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(15, 10, 4, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:not(.btn):hover {
  color: var(--gold);
}
.nav-links a:not(.btn):hover::after {
  transform: scaleX(1);
}
.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.85rem !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO BANNER SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

/* Individual slides */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  /* push center up so stats bar (bottom) doesn't cover content */
  padding-bottom: 80px;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
.slide.leaving {
  opacity: 0;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 7, 2, 0.8) 0%,
    rgba(15, 10, 4, 0.65) 50%,
    rgba(10, 7, 2, 0.75) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 80px;
  width: 100%;
}

/* Slide text animations */
.slide-content [data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.slide.active .slide-content [data-animate]:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.slide.active .slide-content [data-animate]:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.slide.active .slide-content [data-animate]:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
.slide.active .slide-content [data-animate]:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero-title span {
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  max-width: 580px;
  margin: 0 auto 36px;
  color: rgba(232, 217, 184, 0.88);
  font-size: 1.05rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Prev / Next buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(6px);
}
.slider-btn:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-50%) scale(1.1);
}
.slider-prev {
  left: 24px;
}
.slider-next {
  right: 24px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}
.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.6);
}

/* Stats bar at bottom of slider */
.slider-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(10, 7, 2, 0.82);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 18px 0;
}
.slider-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.stat strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.stat span {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(201, 168, 76, 0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(201, 168, 76, 0.7);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll-hint i {
  font-size: 0.85rem;
}

/* =============================================
   ANNOUNCEMENT STRIP
   ============================================= */
.announcement-strip {
  background: linear-gradient(
    90deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-dark)
  );
  padding: 12px 0;
  overflow: hidden;
}
.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.3px;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  background: var(--section-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-box {
  position: relative;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/4.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: none;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-big-icon {
  font-size: 10rem;
  color: rgba(201, 168, 76, 0.18);
}
.about-badge-pill {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-content .section-label {
  display: block;
}
.about-text {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-checks {
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.about-checks li i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  background: var(--section-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: linear-gradient(145deg, var(--dark-2), var(--dark-3));
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 168, 76, 0.15);
}

.service-card.featured {
  border-color: rgba(201, 168, 76, 0.3);
  background: linear-gradient(145deg, #2a1e0a, #1f1608);
}
.service-card.featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.4),
    transparent,
    rgba(201, 168, 76, 0.2)
  );
  z-index: -1;
}

/* Service card image */
.service-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 13px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Card body (below image) */
.service-body {
  padding: 24px 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 46px;
  height: 46px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 14px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(201, 168, 76, 0.2);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.service-btns {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition:
    background var(--transition),
    color var(--transition),
    transform 0.2s;
  white-space: nowrap;
}
.service-btn:hover {
  transform: translateY(-2px);
}
.service-btn-call {
  background: var(--gold);
  color: var(--dark);
}
.service-btn-call:hover {
  background: var(--gold-light);
}
.service-btn-enquire {
  background: transparent;
  color: #25d366;
  border: 1px solid #25d366;
}
.service-btn-enquire:hover {
  background: #25d366;
  color: #fff;
}

/* =============================================
   FEATURES / WHY US
   ============================================= */
.features {
  background: var(--section-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: linear-gradient(145deg, var(--dark-2), var(--dark-3));
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.15),
    rgba(201, 168, 76, 0.05)
  );
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 22px;
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.25),
    rgba(201, 168, 76, 0.1)
  );
  transform: rotateY(360deg);
  transition:
    transform 0.7s ease,
    background 0.35s ease;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
}

/* =============================================
   OFFERS BANNER
   ============================================= */
.offers-banner {
  background:
    linear-gradient(
      135deg,
      rgba(26, 17, 8, 0.88) 0%,
      rgba(42, 28, 8, 0.82) 50%,
      rgba(26, 17, 8, 0.88) 100%
    ),
    url("../images/banner-3.jpg") center/cover no-repeat;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 60px 0;
}

.offers-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 0;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 60px;
}
.offer-percent {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.offer-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.offer-divider {
  width: 1px;
  height: 80px;
  background: rgba(201, 168, 76, 0.25);
}
.offer-cta {
  padding: 0 60px;
  text-align: center;
}
.offer-cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.4s ease;
  will-change: transform;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.55);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.45);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  transform: scale(0.7);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.15);
  transform: scale(0.88);
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  display: block;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-family: var(--font-body);
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(201, 168, 76, 0.3);
  transform: scale(1.1) rotate(90deg);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
  z-index: 10001;
}

.lightbox-nav:hover {
  background: rgba(201, 168, 76, 0.3);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  font-family: var(--font-body);
  letter-spacing: 1px;
  z-index: 10001;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: var(--section-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(145deg, var(--dark-2), var(--dark-3));
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color var(--transition);
}
.contact-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-card p a {
  color: var(--text);
  transition: color var(--transition);
}
.contact-card p a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}

.contact-map {
  position: relative;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  filter: invert(90%) hue-rotate(180deg);
}

.map-overlay-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0a0804;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 18px 0 24px;
  line-height: 1.7;
}
.footer-logo {
  margin-bottom: 0;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}
.footer-links ul li a,
.footer-services ul li a {
  font-size: 0.86rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.footer-links ul li a i,
.footer-services ul li a i {
  font-size: 0.65rem;
  color: var(--gold);
}
.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact ul li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact ul li a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-contact ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.7rem;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: all var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover {
  background: #20ba5a;
  transform: scale(1.1);
  animation: none;
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark-2);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.wa-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark-2);
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

/* =============================================
   CALL FLOAT
   ============================================= */
.call-float {
  position: fixed;
  bottom: 102px;
  right: 32px;
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
  transition: all var(--transition);
  animation: pulse-gold 2.5s infinite;
}
.call-float:hover {
  background: var(--gold-light);
  transform: scale(1.1);
  animation: none;
}
.call-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark-2);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  border: 1px solid rgba(201,168,76,0.2);
}
.call-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark-2);
}
.call-float:hover .call-tooltip { opacity: 1; }

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 6px 24px rgba(201,168,76,0.45); }
  50%       { box-shadow: 0 6px 36px rgba(201,168,76,0.7), 0 0 0 12px rgba(201,168,76,0.1); }
}

/* =============================================
   FLOATING ENQUIRE BUTTON
   ============================================= */
.float-enquire {
  position: fixed;

  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 12px 22px;
  border-radius: 8px 8px 0 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 998;
  box-shadow: -4px 0 20px rgba(201, 168, 76, 0.35);
  transition:
    right 0.35s ease,
    background 0.2s;
  right: 18px;
}
.float-enquire:hover {
  background: var(--gold-light);
  right: 0px;
}
.float-enquire i {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .float-enquire {
    font-size: 0.75rem;
    padding: 10px 16px;
  }
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 999;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

/* =============================================
   ENQUIRY POPUP
   ============================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  padding: 16px;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-modal {
  background: linear-gradient(160deg, #1a1108 0%, #2a1c08 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 18px;
  padding: 40px 36px 36px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(201, 168, 76, 0.1);
  transform: scale(0.88) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.popup-overlay.active .popup-modal {
  transform: scale(1) translateY(0);
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition:
    background 0.2s,
    transform 0.2s;
}
.popup-close:hover {
  background: rgba(201, 168, 76, 0.3);
  transform: scale(1.1) rotate(90deg);
}

.popup-header {
  text-align: center;
  margin-bottom: 28px;
}
.popup-logo-icon {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.popup-header h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.popup-header h3 span {
  color: var(--gold);
}
.popup-header p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
}

.popup-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.popup-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-size: 0.92rem;
  font-family: var(--font-body);
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.popup-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.popup-input:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
}
.popup-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background 0.25s,
    transform 0.2s;
}
.popup-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .popup-modal {
    padding: 32px 22px 28px;
  }
  .popup-header h3 {
    font-size: 1.3rem;
  }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow:
      0 6px 36px rgba(37, 211, 102, 0.75),
      0 0 0 12px rgba(37, 211, 102, 0.12);
  }
}

/* scroll-reveal animation */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-right"] {
  transform: translateX(-30px);
}
[data-aos="fade-right"].aos-visible {
  transform: translateX(0);
}
[data-aos="fade-left"] {
  transform: translateX(30px);
}
[data-aos="fade-left"].aos-visible {
  transform: translateX(0);
}
[data-aos="zoom-in"] {
  transform: scale(0.9);
}
[data-aos="zoom-in"].aos-visible {
  transform: scale(1);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map {
    height: 380px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 64px 0;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .lightbox-nav {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .lightbox-prev {
    left: 8px;
  }
  .lightbox-next {
    right: 8px;
  }

  /* ---- Navbar mobile ---- */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 8, 4, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 88px 32px 40px;
    gap: 24px;
    transition: right var(--transition);
    border-left: 1px solid rgba(201, 168, 76, 0.15);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    font-size: 1rem;
  }
  .hamburger {
    display: flex;
  }

  /* ---- Slider mobile fixes ---- */

  /* Give slide extra bottom padding so stats bar doesn't overlap content */
  .slide {
    padding-bottom: 130px;
  }

  /* Hide scroll hint — no room on mobile */
  .hero-scroll-hint {
    display: none;
  }

  /* Slider arrow buttons — small & close to edges */
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
    top: 42%;
  }
  .slider-prev {
    left: 8px;
  }
  .slider-next {
    right: 8px;
  }

  /* Stats bar: 2×2 grid, hide dividers */
  .slider-stats-bar {
    padding: 10px 0;
  }
  .slider-stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-divider {
    display: none;
  }
  .stat {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  }
  .stat:nth-child(odd) {
    border-right: 1px solid rgba(201, 168, 76, 0.12);
  }
  .stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .stat strong {
    font-size: 1rem;
  }
  .stat span {
    font-size: 0.62rem;
  }

  /* Move dots just above stats bar */
  .slider-dots {
    bottom: 138px;
    gap: 8px;
  }

  /* Slide content: reduce all spacing */
  .slide-content {
    padding-top: 70px;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 14px;
    margin-bottom: 12px;
  }
  .hero-title {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
    margin-bottom: 12px;
    line-height: 1.15;
  }
  .hero-desc {
    font-size: 0.85rem;
    margin-bottom: 20px;
    padding: 0 8px;
  }
  .hero-btns {
    gap: 10px;
  }
  .hero-btns .btn {
    padding: 11px 20px;
    font-size: 0.82rem;
  }

  /* ---- Other sections ---- */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .offers-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .offer-item {
    padding: 0 20px;
    flex-direction: column;
    gap: 8px;
  }
  .offer-divider {
    width: 80px;
    height: 1px;
  }
  .offer-cta {
    padding: 0 20px;
  }

  .about-checks {
    grid-template-columns: 1fr;
  }

  .call-float     { bottom: 88px; right: 20px; width: 50px; height: 50px; font-size: 1.3rem; }
  .whatsapp-float { bottom: 28px; right: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
  .back-to-top {
    bottom: 86px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  /* Slider */
  .slide {
    padding-bottom: 120px;
  }
  .slide-content {
    padding-top: 65px;
  }
  .hero-badge {
    font-size: 0.68rem;
    padding: 5px 12px;
    margin-bottom: 10px;
  }
  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 10px;
  }
  .hero-desc {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }
  .hero-btns .btn {
    padding: 10px 16px;
    font-size: 0.78rem;
  }

  /* Stats bar */
  .slider-stats-bar {
    padding: 8px 0;
  }
  .stat strong {
    font-size: 0.95rem;
  }
  .stat span {
    font-size: 0.58rem;
  }
  .slider-dots {
    bottom: 126px;
    gap: 7px;
  }
  .dot {
    width: 8px;
    height: 8px;
  }
  .dot.active {
    width: 22px;
  }

  .contact-map {
    height: 280px;
  }
}
