/* =====================================================
   SEA SPA - STYLE.CSS
   Color Theme: #cf206f (accent) + Mixed Light/Dark sections
   Fonts: Cormorant Garamond (headings) + Jost (body)
===================================================== */

:root {
  --accent: #cf206f;
  --accent-light: #e8458a;
  --accent-dark: #a01858;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --white: #ffffff;
  --off-white: #f8f5f6;
  --light-bg: #f2eef0;
  --light-bg-2: #fdf9fb;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --text-muted: #777777;
  --gray-text: #888888;
  --light-text: #cccccc;
  --shadow-light: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.09);
  --radius: 4px;
  --radius-lg: 10px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

::selection {
  background: var(--accent);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

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

.section-title.title-white {
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.title-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 1rem 0;
}

.section-sub,
.section-desc {
  font-size: 1rem;
  max-width: 580px;
  line-height: 1.8;
  color: var(--text-muted);
}

.text-light-muted {
  color: var(--light-text) !important;
}

/* === BUTTONS === */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: 0 0 20px rgba(207, 32, 111, 0.2);
}

.btn-book {
  display: inline-block;
  background: var(--accent);
  color: var(--white) !important;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  transition: var(--transition);
}

.btn-book:hover {
  background: transparent;
  color: var(--accent) !important;
}

/* ================================================
   TOP BAR — BLACK
================================================ */
.top-bar {
  background-color: var(--dark-2);
  border-bottom: 1px solid rgba(207, 32, 111, 0.12);
  padding: 8px 0;
}

.top-bar-link {
  font-size: 0.8rem;
  color: var(--light-text);
  transition: var(--transition);
  white-space: nowrap;
}

.top-bar-link:hover {
  color: var(--accent);
}

.top-social-icon {
  font-size: 0.9rem;
  color: var(--light-text);
  transition: var(--transition);
}

.top-social-icon:hover {
  color: var(--accent);
}

/* ================================================
   HEADER / NAVBAR — WHITE
================================================ */
.main-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(207, 32, 111, 0.1);
  backdrop-filter: blur(12px);
  z-index: 1050;
  transition: var(--transition);
}

.main-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 14px 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.logo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.logo-tagline {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}

.navbar-nav .nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark) !important;
  padding: 0.5rem 0.85rem !important;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--accent) !important;
}

.navbar-nav .nav-link:hover::after {
  width: 70%;
}

.navbar-nav .nav-link.active {
  color: var(--accent) !important;
}

.navbar-toggler {
  border: 1px solid rgba(207, 32, 111, 0.3);
  padding: 8px 12px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border-radius: var(--radius);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    margin-top: 12px;
    padding: 1rem;
    border: 1px solid rgba(207, 32, 111, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
  }

  .navbar-nav .nav-link {
    padding: 0.6rem 0 !important;
  }

  .btn-book {
    margin-top: 0.5rem;
  }
}

/* ================================================
   HERO CAROUSEL — DARK (image-based)
================================================ */
#hero {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(54, 54, 54, 0) 0%, rgba(36, 36, 36, 0) 60%, rgba(19, 19, 19, 0) 100%);
  pointer-events: none;
}

.carousel-caption.hero-caption {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  padding: 0 15px;
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  border: 1px solid rgba(207, 32, 111, 0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  background: rgba(207, 32, 111, 0.08);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.btn-hero-primary {
  background: var(--accent);
  color: var(--white) !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: transparent;
  box-shadow: 0 0 20px rgba(207, 32, 111, 0.4);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white) !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.btn-hero-outline:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

.carousel-ctrl-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.carousel-control-prev:hover .carousel-ctrl-icon,
.carousel-control-next:hover .carousel-ctrl-icon {
  background: var(--accent);
  border-color: var(--accent);
}

.carousel-indicators [data-bs-target] {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  margin: 0 4px;
  transition: var(--transition);
}

.carousel-indicators .active {
  background: var(--accent);
  width: 48px;
}

@media (max-width: 768px) {
  .hero-img {
    height: 80vh;
    min-height: 520px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}

/* ================================================
   MARQUEE — ACCENT PINK strip
================================================ */
.marquee-section {
  background: var(--accent);
  overflow: hidden;
  padding: 13px 0;
}

.marquee-track {
  width: 100%;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-inner span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}

.marquee-inner i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

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

.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(207, 32, 111, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 30px rgba(207, 32, 111, 0.45);
}

.badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.9;
}

.about-shape {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  border-radius: 2px 0 0 0;
  opacity: 0.4;
  pointer-events: none;
}

.about-para {
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.85;
}

.about-para strong {
  color: var(--text-dark);
  font-weight: 600;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--off-white);
  border: 1px solid rgba(207, 32, 111, 0.1);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.about-feat-item i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-feat-item:hover {
  border-color: var(--accent);
  background: rgba(207, 32, 111, 0.04);
  box-shadow: var(--shadow-light);
}

@media (max-width: 991px) {
  .about-badge {
    right: 10px;
    bottom: 10px;
  }

  .about-main-img {
    height: 360px;
  }
}

/* ================================================
   SERVICES — LIGHT/OFF-WHITE background
================================================ */
.services-section {
  background: var(--off-white);
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(207, 32, 111, 0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(207, 32, 111, 0.12);
}

.service-card-featured {
  border-color: rgba(207, 32, 111, 0.2);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.btn-service-overlay {
  background: var(--accent);
  color: var(--white) !important;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  transform: translateY(12px);
  transition: var(--transition);
}

.service-card:hover .btn-service-overlay {
  transform: translateY(0);
}

.service-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(207, 32, 111, 0.07);
  border: 1px solid rgba(207, 32, 111, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--white);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  margin-top: auto;
}

.service-link:hover {
  gap: 0.8rem;
  color: var(--accent-dark);
}

/* ================================================
   COUNTER — BLACK/DARK background
================================================ */
.counter-section {
  background: var(--dark-2);
  padding: 70px 0;
}

.counter-card {
  position: relative;
  padding: 2rem 1rem;
  border: 1px solid rgba(207, 32, 111, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
  overflow: hidden;
}

.counter-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.counter-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  background: rgba(207, 32, 111, 0.05);
}

.counter-card:hover::before {
  transform: scaleX(1);
}

.counter-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.counter-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.counter-plus {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: inline;
}

.counter-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ================================================
   WHY CHOOSE US — CLEAN SINGLE IMAGE VERSION
================================================ */

.why-section {
  background: var(--white);
}

/* LIST */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--off-white);
  border: 1px solid rgba(207, 32, 111, 0.09);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--accent);
  background: rgba(207, 32, 111, 0.03);
  box-shadow: 0 6px 20px rgba(207, 32, 111, 0.08);
}

/* ICON */
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(207, 32, 111, 0.07);
  border: 1px solid rgba(207, 32, 111, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-item:hover .why-icon {
  background: var(--accent);
  color: var(--white);
}

/* TEXT */
.why-content h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.why-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* IMAGE (Single) */
.why-single-img {
  position: relative;
}

.why-single-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(207, 32, 111, 0.1);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

/* OPTIONAL HOVER EFFECT */
.why-single-img:hover img {
  transform: scale(1.03);
}

/* FLOAT CARD */
.why-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 10px 30px rgba(207, 32, 111, 0.45);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}

.why-float-card i {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
}

.why-float-sub {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .why-single-img img {
    height: 280px;
  }

  .why-float-card {
    bottom: 10px;
    left: 10px;
  }
}

/* ================================================
   TESTIMONIALS — LIGHT PINK/CREAM background
================================================ */
.testimonials-section {
  background: var(--light-bg);
}

.testimonials-section .section-title {
  color: var(--text-dark);
}

.testi-card {
  background: var(--white);
  border: 1px solid rgba(207, 32, 111, 0.09);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.testi-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(207, 32, 111, 0.1);
}

.testi-card-featured {
  border-color: rgba(207, 32, 111, 0.22);
  background: linear-gradient(135deg, var(--white), rgba(207, 32, 111, 0.03));
}

.testi-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 3px;
}

.testi-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testi-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testi-loc i {
  color: var(--accent);
}

/* ================================================
   GALLERY — BLACK/DARK background
================================================ */
.gallery-section {
  background: var(--dark);
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-section .section-sub {
  color: var(--light-text);
}

.gallery-section .section-label {
  color: var(--accent);
}

.gallery-section .title-divider {
  background: linear-gradient(90deg, var(--accent), transparent);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(207, 32, 111, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
}

.gallery-hover i {
  font-size: 1.6rem;
}

.gallery-hover span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

.gallery-item:hover .gallery-hover i {
  animation: zoomPulse 0.4s ease;
}

@keyframes zoomPulse {
  0% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-img {
    height: 180px;
  }
}

/* ================================================
   FAQs — WHITE background
================================================ */
.faqs-section {
  background: var(--white);
}

.faqs-section .section-title {
  color: var(--text-dark);
}

.faqs-section .section-desc {
  color: var(--text-muted);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white) !important;
  border: 1px solid rgba(207, 32, 111, 0.12) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
  border-color: rgba(207, 32, 111, 0.3) !important;
}

.faq-btn {
  background: var(--white) !important;
  color: var(--text-dark) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  padding: 1.1rem 1.25rem !important;
  border: none !important;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: var(--accent) !important;
  background: rgba(207, 32, 111, 0.03) !important;
}

.faq-btn:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cf206f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.faq-body {
  background: rgba(207, 32, 111, 0.02) !important;
  color: var(--text-muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.8 !important;
  padding: 1rem 1.25rem !important;
  border-top: 1px solid rgba(207, 32, 111, 0.08) !important;
}

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

.contact-section .section-title {
  color: var(--text-dark);
}

.contact-section .section-sub {
  color: var(--text-muted);
}

.contact-info-wrap {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid rgba(207, 32, 111, 0.1);
  border-radius: var(--radius-lg);
  height: 100%;
  box-shadow: var(--shadow-card);
}

.contact-info-head {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(207, 32, 111, 0.1);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(207, 32, 111, 0.08);
  border: 1px solid rgba(207, 32, 111, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-content h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.contact-info-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.contact-link {
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--accent);
}

.contact-socials {
  display: flex;
  gap: 0.75rem;
}

.contact-social-btn {
  width: 40px;
  height: 40px;
  background: var(--off-white);
  border: 1px solid rgba(207, 32, 111, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form-wrap {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid rgba(207, 32, 111, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-form-head {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(207, 32, 111, 0.1);
}

.form-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.spa-input {
  background: var(--off-white) !important;
  border: 1px solid rgba(207, 32, 111, 0.12) !important;
  color: var(--text-dark) !important;
  border-radius: var(--radius) !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.9rem !important;
  transition: var(--transition) !important;
}

.spa-input::placeholder {
  color: var(--text-muted) !important;
}

.spa-input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(207, 32, 111, 0.1) !important;
  background: var(--white) !important;
}

.spa-input option {
  background: var(--white);
  color: var(--text-dark);
}

.form-success-msg {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(207, 32, 111, 0.06);
  border: 1px solid rgba(207, 32, 111, 0.25);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ================================================
   MAP — Dark header + iframe
================================================ */
.map-section {
  background: var(--white);
}

.map-header {
  padding: 2.5rem 1rem 1.5rem;
  background: var(--dark);
  border-bottom: 2px solid var(--accent);
}

.map-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.map-title i {
  color: var(--accent);
}

.map-sub {
  font-size: 0.85rem;
  color: var(--light-text);
  margin: 0;
}

/* ================================================
   FOOTER — DARK/BLACK
================================================ */
.main-footer {
  background: var(--dark-2);
  border-top: 2px solid var(--accent);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--light-text);
  line-height: 1.75;
  margin-top: 0.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-head {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--light-text);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-links a:hover::before {
  width: 20px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--light-text);
  line-height: 1.6;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-link {
  color: var(--light-text);
  transition: var(--transition);
}

.footer-contact-link:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 18px 0;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--gray-text);
}

/* ================================================
   FLOATING ICONS — LEFT
================================================ */
/* FLOATING BUTTONS CONTAINER */
.floating-buttons {
  position: fixed;
  bottom: 100px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* COMMON BUTTON STYLE */
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: 0.3s ease;
  position: relative;
}

/* CALL BUTTON */
.call-btn {
  background: #cf206f;
}

.call-btn:hover {
  background: #a81857;
  transform: translateY(-4px);
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-4px);
}

/* PULSE ANIMATION */
.float-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.4;
  animation: pulse 1.8s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* MOBILE SIZE */
@media (max-width: 576px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

/* ================================================
   BACK TO TOP
================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(207, 32, 111, 0.35);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 998;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  color: var(--white);
}

/* ================================================
   AOS
================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-24px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(24px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* ================================================
   RESPONSIVE
================================================ */
@media(max-width:767px)
{
	.cu-ds-nn{display:none!important}
	.cu-jf-cntr{
		justify-content:center!important;
	}
}
@media (max-width: 575px) {
  .section-pad {
    padding: 60px 0;
  }

  .about-badge {
    right: 10px;
  }

  .contact-info-wrap,
  .contact-form-wrap {
    padding: 1.5rem;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 767px) {
  .counter-card {
    padding: 1.5rem 0.75rem;
  }

  .footer-top {
    padding: 50px 0 30px;
  }
}