/* ===================================================
   D69 Day Spa — Main Stylesheet
   =================================================== */

/* ---- Custom Properties ---- */
:root {
  --gold: #c9a96e;
  --gold-dark: #a8823d;
  --gold-light: #e8c98a;
  --dark: #1a1a1a;
  --dark-2: #2a2a2a;
  --dark-3: #3a3a3a;
  --cream: #f9f5f0;
  --cream-2: #f2ebe0;
  --white: #ffffff;
  --text: #4a4a4a;
  --text-light: #7a7a7a;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Lato", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

/* ---- Typography Helpers ---- */
.gold {
  color: var(--gold);
}
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ---- 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;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn:hover::after {
  transform: translateX(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===================================================
   PRELOADER
   =================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
  color: var(--gold);
}
.lotus {
  width: 60px;
  height: 60px;
  border: 3px solid var(--gold);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}
.preloader-inner p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===================================================
   HEADER / NAV
   =================================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

#header.scrolled {
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
  border-radius: 8px;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.logo:hover .logo-icon,
.logo:focus-visible .logo-icon {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 10px 28px rgba(201, 169, 110, 0.45);
}

.logo:hover .logo-name,
.logo:focus-visible .logo-name {
  color: var(--gold-light);
}

.logo:hover .logo-tagline,
.logo:focus-visible .logo-tagline {
  color: var(--white);
  letter-spacing: 0.2em;
}

.logo-icon,
.logo-name,
.logo-tagline {
  transition: var(--transition);
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-book-btn {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.6);
}

.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(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1a1a 0%, #1a2e2a 40%, #2a1a0a 100%);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 26, 26, 0.85) 0%,
    rgba(26, 26, 26, 0.6) 60%,
    rgba(42, 26, 10, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleY(0.7);
  }
}

/* ===================================================
   MARQUEE STRIP
   =================================================== */
.marquee-strip {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.marquee-track {
  display: flex;
  gap: 50px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.marquee-track span i {
  color: var(--gold);
  font-size: 0.9rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a2e2a, #2a3e35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-placeholder,
.about-img-accent-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 169, 110, 0.4);
  font-size: 5rem;
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #2a3e35, #3a5040);
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-content {
}

.about-text {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-text:last-of-type {
  margin-bottom: 28px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark-3);
}
.feature-item i {
  font-size: 1rem;
}

/* ===================================================
   STATS
   =================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--dark), #1a2a20);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 30% 50%,
    rgba(201, 169, 110, 0.06) 0%,
    transparent 60%
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}
.stat-item:hover {
  border-color: rgba(201, 169, 110, 0.5);
  background: rgba(201, 169, 110, 0.05);
  transform: translateY(-4px);
}

.stat-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
}
.stat-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 8px;
}

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

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.14);
  border-color: rgba(201, 169, 110, 0.3);
}

.service-icon {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a2e2a, #2a4035);
  overflow: hidden;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-icon img {
  transform: scale(1.08);
}

.service-icon-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 169, 110, 0.5);
  font-size: 3rem;
}

.service-body {
  padding: 22px;
}
.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s ease;
}
.service-link:hover {
  gap: 10px;
}

.service-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
}
.service-btn-call {
  background: var(--gold);
  color: #fff;
}
.service-btn-call:hover {
  background: var(--gold-dark, #b8860b);
  transform: translateY(-2px);
}
.service-btn-enquire {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.service-btn-enquire:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

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

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

.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 70px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox img {
  width: min(100%, 980px);
  max-height: 88vh;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.2rem;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(201, 169, 110, 0.85);
}

/* ===================================================
   WHY US
   =================================================== */
.why-us {
  background: var(--cream);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-us-content > p {
  color: var(--text);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.why-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.why-us-visual {
  padding-bottom: 30px;
}

.why-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.why-visual-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.why-visual-fallback {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #1a2e2a, #2a4035);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(201, 169, 110, 0.5);
  font-size: 5rem;
}
.why-visual-fallback p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
}

.why-float-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.why-float-card i {
  font-size: 2rem;
  color: var(--gold);
}
.why-float-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--dark);
}
.why-float-card span {
  font-size: 0.78rem;
  color: var(--text-light);
}

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

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

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

.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 110, 0.15);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.contact-link {
  display: block;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.3s;
  margin-bottom: 8px;
}
.contact-link:hover {
  color: var(--gold);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
  transition: gap 0.3s;
}
.map-link:hover {
  gap: 10px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #25d366;
  color: var(--white);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 8px;
  transition: var(--transition);
}
.whatsapp-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.hours-time {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 1rem;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 110, 0.15);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 28px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form-group label {
  display: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-message {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  min-height: 20px;
}
.form-message.success {
  color: #2d9e6b;
}
.form-message.error {
  color: #e74c3c;
}

/* ===================================================
   MAP SECTION
   =================================================== */
.map-section {
  line-height: 0;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}
.map-section:hover {
  filter: none;
}
.map-section iframe {
  display: block;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: linear-gradient(135deg, #0d1a14, #1a1a1a);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.9rem;
  margin: 16px 0 24px;
  line-height: 1.7;
}

.footer-logo .logo-name {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}
.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===================================================
   FLOATING BUTTONS
   =================================================== */
.call-float {
  position: fixed;
  bottom: 168px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 25px rgba(201, 169, 110, 0.5);
  transition: var(--transition);
}
.call-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 35px rgba(201, 169, 110, 0.7);
}

.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.7);
}
@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow:
      0 6px 35px rgba(37, 211, 102, 0.8),
      0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 999;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.6);
}

/* ===================================================
   ONLOAD POPUP FORM
   =================================================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.popup-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-form-card {
  width: min(100%, 440px);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.26);
  padding: 26px 20px 20px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.popup-overlay.open .popup-form-card {
  transform: translateY(0) scale(1);
}

.popup-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 8px;
}

.popup-form-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f2f2f2;
  color: #444;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.popup-close:hover {
  background: #8b3777;
  color: #fff;
}

.popup-form-card .form-control {
  width: 100%;
  min-height: 46px;
  border: 1px solid #dadada;
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
}

.popup-form-card .form-control:focus {
  border-color: #8b3777;
  box-shadow: 0 0 0 3px rgba(139, 55, 119, 0.12);
}

.popup-submit-btn {
  width: 100%;
  min-height: 46px;
  border-radius: 10px;
  justify-content: center;
}

/* ===================================================
   REVEAL ANIMATIONS
   =================================================== */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal {
  transform: translateY(40px);
}
.reveal-left {
  transform: translateX(-50px);
}
.reveal-right {
  transform: translateX(50px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .about-grid,
  .why-us-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }
  .why-us-visual {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px;
    gap: 4px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(201, 169, 110, 0.2);
    z-index: 100;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-link {
    font-size: 0.95rem;
    padding: 12px 0;
    width: 100%;
  }
  .nav-book-btn {
    margin-top: 12px;
  }
  .hamburger {
    display: flex;
    z-index: 101;
  }

  .hero-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }

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

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

  .gallery-lightbox {
    padding: 18px 14px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .about-img-accent,
  .about-badge {
    right: 0;
  }

  .why-float-card {
    left: 12px;
    right: 12px;
  }
}

@media (max-width: 520px) {
  .popup-form-card {
    padding: 24px 14px 14px;
  }
  .popup-form-card h3 {
    font-size: 1.55rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   BRAND REFRESH OVERRIDES (2026)
   =================================================== */
:root {
  --gold: #0f766e;
  --gold-dark: #115e59;
  --gold-light: #5eead4;
  --dark: #15364a;
  --dark-2: #1d4d66;
  --dark-3: #2f5d72;
  --cream: #f4fbff;
  --cream-2: #e8f4fb;
  --white: #ffffff;
  --text: #274457;
  --text-light: #587789;
  --shadow: 0 10px 35px rgba(15, 118, 110, 0.14);
  --shadow-lg: 0 20px 55px rgba(16, 80, 107, 0.18);
  --font-serif: "Cinzel", Georgia, serif;
  --font-sans: "Mulish", "Trebuchet MS", sans-serif;
}

body {
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(94, 234, 212, 0.18),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(56, 189, 248, 0.14),
      transparent 36%
    ),
    linear-gradient(180deg, #f5fbff 0%, #eef8ff 52%, #f9fcff 100%);
}

#header {
  padding: 14px 0;
}

#header.scrolled {
  background: rgba(10, 44, 62, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(94, 234, 212, 0.3);
}

.navbar {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 94, 89, 0.14);
  box-shadow: 0 16px 35px rgba(10, 44, 62, 0.14);
  border-radius: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.logo-name {
  color: #0f3f53;
}

.logo-tagline {
  color: #0f766e;
}

.nav-link {
  color: #1f4d65;
  font-weight: 800;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(15, 118, 110, 0.1);
}

.nav-book-btn {
  border-radius: 12px;
  background: linear-gradient(135deg, #0f766e, #0d9488);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.35);
}

.hero {
  min-height: 94vh;
}

.hero-overlay {
  background: linear-gradient(
    120deg,
    rgba(8, 48, 70, 0.76) 0%,
    rgba(14, 116, 144, 0.62) 44%,
    rgba(6, 95, 70, 0.68) 100%
  );
}

/* Keep banner text readable even if reveal JS is delayed or blocked. */
.hero .reveal,
.hero .reveal-left,
.hero .reveal-right {
  opacity: 1;
  transform: none;
}

.hero-content {
  backdrop-filter: blur(2px);
}

.hero-sub {
  color: #b8fff1;
  text-shadow: 0 2px 10px rgba(4, 24, 31, 0.45);
}

.hero-title {
  color: #ffffff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(4, 24, 31, 0.45);
}

.hero-btns .btn {
  border-radius: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  box-shadow: 0 10px 26px rgba(15, 118, 110, 0.35);
}

.btn-outline {
  border-color: rgba(94, 234, 212, 0.8);
}

.marquee-strip {
  background: linear-gradient(90deg, #0e3b4f, #12506b, #0f766e);
}

.section {
  padding: 110px 0;
}

.about,
.services,
.contact {
  position: relative;
}

.about::before,
.services::before,
.contact::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(94, 234, 212, 0.24),
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

.about::before {
  top: -70px;
  right: 2%;
}

.services::before {
  top: -60px;
  left: 3%;
}

.contact::before {
  bottom: -80px;
  right: 4%;
}

.about .container,
.services .container,
.contact .container,
.why-us .container {
  position: relative;
  z-index: 1;
}

.about {
  background: linear-gradient(180deg, #f3faff 0%, #eaf7ff 100%);
}

.about-img-main,
.about-img-accent,
.why-visual-card,
.contact-form-wrap {
  border-radius: 22px;
}

.about-badge {
  border-radius: 14px;
  background: linear-gradient(135deg, #0f766e, #0891b2);
}

.stats-section {
  background: linear-gradient(120deg, #0b3f54, #125470);
}

.stat-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(94, 234, 212, 0.26);
  border-radius: 16px;
  padding: 24px 10px;
}

.stat-item p,
.stat-num,
.stat-plus {
  color: #d8f8f3;
}

.services {
  background: linear-gradient(180deg, #f8fdff 0%, #eef8ff 100%);
}

.service-card {
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(15, 118, 110, 0.22);
}

.service-icon {
  position: relative;
}

.service-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 65, 86, 0) 30%,
    rgba(10, 65, 86, 0.2) 100%
  );
}

.gallery {
  background: linear-gradient(180deg, #eaf7ff 0%, #f7fbff 100%);
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.18);
  box-shadow: 0 10px 25px rgba(11, 63, 84, 0.12);
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
}

.why-us {
  background: linear-gradient(180deg, #f7fdff 0%, #edf7ff 100%);
}

.why-us-inner {
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #f2fbff);
  border: 1px solid rgba(15, 118, 110, 0.14);
  padding: 34px;
  box-shadow: 0 18px 40px rgba(11, 63, 84, 0.12);
}

.why-icon {
  background: linear-gradient(135deg, #0d9488, #0891b2);
}

.why-float-card {
  border-radius: 14px;
}

.contact {
  background: linear-gradient(180deg, #f0f9ff 0%, #e8f6ff 100%);
}

.contact-card,
.contact-form-wrap {
  border: 1px solid rgba(15, 118, 110, 0.14);
  box-shadow: 0 12px 30px rgba(11, 63, 84, 0.1);
}

.contact-icon {
  background: linear-gradient(135deg, #0f766e, #0ea5a4);
}

.contact-form-wrap {
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.map-section {
  filter: saturate(1.04) contrast(1.04);
}

.footer {
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(45, 212, 191, 0.2),
      transparent 24%
    ),
    linear-gradient(135deg, #082b3d, #0e3a52 55%, #0f4f61 100%);
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.65);
}

.call-float {
  background: linear-gradient(135deg, #0f766e, #0ea5a4);
  box-shadow: 0 8px 26px rgba(14, 165, 164, 0.45);
}

.scroll-top {
  background: linear-gradient(135deg, #0e7490, #0f766e);
}

.popup-close:hover {
  background: #0f766e;
}

.popup-form-card .form-control:focus {
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

@keyframes brandFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}

.logo-icon {
  animation: brandFloat 3.4s ease-in-out infinite;
}

@media (max-width: 900px) {
  .navbar {
    border-radius: 14px;
  }

  .why-us-inner {
    padding: 22px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    background: rgba(7, 36, 50, 0.98);
    border-left: 1px solid rgba(94, 234, 212, 0.35);
  }

  .hero {
    min-height: 88vh;
  }
}
