/* ===================================================
   Blush & Bloom Unisex Saloon — Main Stylesheet
   =================================================== */

/* ---- Custom Properties ---- */
:root {
  --rose: #d4547a;
  --rose-dark: #b03a5e;
  --rose-light: #f0a8bc;
  --gold: #c89b5a;
  --gold-dark: #a67c3e;
  --gold-light: #e8c98a;
  --dark: #2a1520;
  --dark-2: #3d2030;
  --dark-3: #522a3e;
  --cream: #fdf7f4;
  --cream-2: #faeef0;
  --white: #ffffff;
  --text: #5a3a45;
  --text-light: #9a7080;
  --shadow: 0 8px 40px rgba(180, 50, 100, 0.1);
  --shadow-lg: 0 20px 60px rgba(180, 50, 100, 0.16);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Poppins", 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;
  background:
    radial-gradient(
      ellipse at 8% 10%,
      rgba(212, 84, 122, 0.08),
      transparent 38%
    ),
    radial-gradient(
      ellipse at 92% 6%,
      rgba(200, 155, 90, 0.09),
      transparent 34%
    ),
    linear-gradient(180deg, #fff9f7 0%, #fdf4f6 50%, #fffaf8 100%);
}

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

/* ---- Typography Helpers ---- */
.gold {
  color: var(--rose);
}
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
  padding: 4px 14px;
  background: rgba(212, 84, 122, 0.08);
  border-radius: 50px;
  border: 1px solid rgba(212, 84, 122, 0.18);
}

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

.section-desc {
  font-size: 1rem;
  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: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  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.12);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn:hover::after {
  transform: translateX(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(212, 84, 122, 0.38);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 84, 122, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  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(--rose-light);
}
.lotus {
  width: 60px;
  height: 60px;
  border: 3px solid var(--rose-light);
  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.3rem;
  letter-spacing: 0.18em;
  color: var(--rose-light);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

#header.scrolled {
  background: rgba(42, 21, 32, 0.94);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(212, 84, 122, 0.25);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(212, 84, 122, 0.15);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(180, 50, 100, 0.12);
  backdrop-filter: blur(12px);
}

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

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

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

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.03em;
}
.logo-tagline {
  font-size: 0.62rem;
  color: var(--rose);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 10px 28px rgba(212, 84, 122, 0.45);
}
.logo:hover .logo-name {
  color: var(--rose-dark);
}
.logo:hover .logo-tagline {
  letter-spacing: 0.22em;
}
.logo-icon,
.logo-name,
.logo-tagline {
  transition: var(--transition);
}

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

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--rose);
  transform: translateX(-50%);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--rose-dark);
  background: rgba(212, 84, 122, 0.07);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-book-btn {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(212, 84, 122, 0.38);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 84, 122, 0.55);
}

.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(--dark);
  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: 96vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a1520 0%, #3d1f30 40%, #2a1020 100%);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 10, 28, 0.82) 0%,
    rgba(100, 30, 60, 0.55) 50%,
    rgba(42, 16, 20, 0.78) 100%
  );
}

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

.hero-sub {
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
}

.hero-title .gold {
  color: var(--rose-light);
}

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 42px;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.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.45);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 200, 210, 0.6), 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(90deg, #2a1520, #3d1f30, #2a1520);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 84, 122, 0.25);
  border-bottom: 1px solid rgba(212, 84, 122, 0.25);
}

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

.marquee-track span {
  color: rgba(255, 220, 228, 0.75);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

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

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

/* ===================================================
   ABOUT
   =================================================== */
.about {
  background: linear-gradient(180deg, #fff5f7 0%, #fdeef2 100%);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 3%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 84, 122, 0.12),
    transparent 70%
  );
  pointer-events: none;
}

.about .container {
  position: relative;
  z-index: 1;
}

.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, #3d1f30, #521a35);
  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(212, 84, 122, 0.35);
  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, #3d1f30, #5a2540);
  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(--rose), var(--rose-dark));
  color: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 30px rgba(212, 84, 122, 0.45);
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-text {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.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.86rem;
  font-weight: 600;
  color: var(--dark);
}
.feature-item i {
  font-size: 1rem;
  color: var(--rose);
}

/* ===================================================
   STATS
   =================================================== */
.stats-section {
  background: linear-gradient(120deg, #2a1520, #3d1f30 55%, #2a1020);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 30% 50%,
    rgba(212, 84, 122, 0.08) 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(212, 84, 122, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}
.stat-item:hover {
  border-color: rgba(212, 84, 122, 0.55);
  background: rgba(212, 84, 122, 0.08);
  transform: translateY(-4px);
}

.stat-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--rose-light);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--rose-light);
}
.stat-item p {
  color: rgba(255, 220, 228, 0.65);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 8px;
}

/* ===================================================
   SERVICES
   =================================================== */
.services {
  background: linear-gradient(180deg, #fff9f7 0%, #fdf4f7 100%);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 3%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 155, 90, 0.12),
    transparent 70%
  );
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

.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 6px 24px rgba(180, 50, 100, 0.08);
  border: 1px solid rgba(212, 84, 122, 0.12);
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(180, 50, 100, 0.18);
  border-color: rgba(212, 84, 122, 0.28);
}

.service-icon {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #3d1f30, #5a2540);
  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::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 10, 28, 0) 30%,
    rgba(42, 10, 28, 0.18) 100%
  );
}

.service-icon-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212, 84, 122, 0.45);
  font-size: 3rem;
}

.service-body {
  padding: 22px;
}
.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 50px;
  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: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(212, 84, 122, 0.3);
}
.service-btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 84, 122, 0.5);
}
.service-btn-enquire {
  background: transparent;
  color: var(--rose-dark);
  border: 1.5px solid var(--rose);
}
.service-btn-enquire:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 84, 122, 0.4);
}

/* ===================================================
   GALLERY
   =================================================== */
.gallery {
  background: linear-gradient(180deg, #fdeef2 0%, #fff5f7 100%);
}

.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: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  box-shadow: 0 8px 28px rgba(180, 50, 100, 0.12);
  border: 1px solid rgba(212, 84, 122, 0.14);
}

.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(42, 10, 28, 0.32) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.12);
}
.gallery-item:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 16px 40px rgba(180, 50, 100, 0.22);
}
.gallery-item:hover::after {
  opacity: 1;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(42, 10, 28, 0.9);
  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: 16px;
  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(212, 84, 122, 0.85);
}

/* ===================================================
   WHY US
   =================================================== */
.why-us {
  background: linear-gradient(180deg, #fff9f7 0%, #fdeef2 100%);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #fff5f7);
  border: 1px solid rgba(212, 84, 122, 0.13);
  border-radius: 26px;
  padding: 40px;
  box-shadow: 0 18px 50px rgba(180, 50, 100, 0.1);
}

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

.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(--rose), var(--rose-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 16px rgba(212, 84, 122, 0.3);
}

.why-item h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 0.88rem;
  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 > div:first-child 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-float-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(180, 50, 100, 0.14);
  z-index: 2;
  border: 1px solid rgba(212, 84, 122, 0.1);
}
.why-float-card i {
  font-size: 2rem;
  color: var(--rose);
}
.why-float-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--dark);
}
.why-float-card span {
  font-size: 0.76rem;
  color: var(--text-light);
}

/* ===================================================
   CONTACT
   =================================================== */
.contact {
  background: linear-gradient(180deg, #fff9f7 0%, #fdeef2 100%);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: 4%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 84, 122, 0.1), transparent 70%);
  pointer-events: none;
}
.contact .container {
  position: relative;
  z-index: 1;
}

.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: 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(212, 84, 122, 0.12);
  box-shadow: 0 6px 22px rgba(180, 50, 100, 0.07);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(212, 84, 122, 0.35);
  box-shadow: 0 10px 30px rgba(180, 50, 100, 0.13);
  transform: translateY(-2px);
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--rose), var(--rose-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: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-card p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}

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

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

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

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 84, 122, 0.14);
  box-shadow: 0 14px 40px rgba(180, 50, 100, 0.1);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-form p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 22px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1.5px solid rgba(212, 84, 122, 0.14);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  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(--rose);
  box-shadow: 0 0 0 3px rgba(212, 84, 122, 0.12);
}

.form-group label {
  display: none;
}

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

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

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(212, 84, 122, 0.18),
      transparent 24%
    ),
    linear-gradient(135deg, #1a080f, #2a1520 55%, #3d1f30 100%);
  padding: 80px 0 0;
  color: rgba(255, 220, 228, 0.7);
}

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

.footer-brand p {
  font-size: 0.88rem;
  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(212, 84, 122, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-light);
  font-size: 1rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  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(--rose);
  border-radius: 2px;
}

.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: rgba(255, 220, 228, 0.6);
  transition: color 0.3s ease;
}
.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: var(--rose-light);
  padding-left: 4px;
}

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

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

/* ===================================================
   FLOATING BUTTONS
   =================================================== */
.call-float {
  position: fixed;
  bottom: 168px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--rose), var(--rose-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(212, 84, 122, 0.5);
  transition: var(--transition);
}
.call-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 35px rgba(212, 84, 122, 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(--rose), var(--rose-dark));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(212, 84, 122, 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 26px rgba(212, 84, 122, 0.6);
}

/* ===================================================
   POPUP FORM
   =================================================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(42, 10, 28, 0.6);
  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: 18px;
  box-shadow: 0 25px 70px rgba(42, 10, 28, 0.3);
  padding: 28px 22px 22px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--rose);
}

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

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

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

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f5e8ec;
  color: var(--rose-dark);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.popup-close:hover {
  background: var(--rose);
  color: #fff;
}

.popup-form-card .form-control {
  width: 100%;
  min-height: 46px;
  border: 1.5px solid #f0d0d8;
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--dark);
  outline: none;
  background: #fff8fa;
}
.popup-form-card .form-control:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212, 84, 122, 0.12);
  background: #fff;
}

.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);
}

/* hero content always visible */
.hero .reveal,
.hero .reveal-left,
.hero .reveal-right {
  opacity: 1;
  transform: none;
}

/* ===================================================
   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-inner {
    padding: 24px;
  }
  .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;
  }
  .navbar {
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(42, 10, 28, 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(212, 84, 122, 0.25);
    z-index: 100;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-link {
    font-size: 0.95rem;
    padding: 12px 0;
    width: 100%;
    color: rgba(255, 220, 228, 0.85);
  }
  .nav-link:hover,
  .nav-link.active {
    color: var(--rose-light);
    background: rgba(212, 84, 122, 0.1);
  }
  .nav-book-btn {
    margin-top: 12px;
  }
  .hamburger {
    display: flex;
    z-index: 101;
  }

  .hero {
    min-height: 88vh;
  }
  .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;
  }
}
