/* ==========================================================================
   Golden Wellness Spa — Custom Styles
   ========================================================================== */

:root {
  --gold: #e0407d;
  --gold-light: #f7b4cf;
  --charcoal: #1f1f1f;
  --cream: #f9f6f0;
  --accent: #a82c58;
  --text: #444444;
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  max-width: 100%;
  padding-top: 138px;
}

img { max-width: 100%; height: auto; }
@media (max-width: 991px) {
  body {
    padding-top: 96px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--charcoal);
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: var(--transition);
}
p {
  line-height: 1.8;
}

::selection {
  background: var(--gold);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.section-padding {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
}

/* ============ Preloader ============ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.preloader-spinner {
  width: 54px;
  height: 54px;
  border: 3px solid rgba(224, 64, 125, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============ Section Tag & Title ============ */
.section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.section-tag span {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  margin-bottom: 18px;
}
.section-subtitle {
  color: var(--text);
  max-width: 650px;
  font-size: 1.05rem;
}
.lead-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ============ Buttons ============ */
.btn-gold,
.btn-gold-nav {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #f7b4cf 50%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  color: #fff !important;
  border: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(224, 64, 125, 0.35);
  transition: var(--transition);
  display: inline-block;
}
.btn-gold:hover,
.btn-gold-nav:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(224, 64, 125, 0.5);
  color: #fff;
}
.btn-gold-nav {
  padding: 10px 26px;
  font-size: 0.95rem;
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold-light);
  color: #fff !important;
  padding: 11px 30px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
  color: #fff !important;
}

.btn-book {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  padding: 9px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-book:hover {
  background: var(--gold);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ============ Site Header Wrap (Top Bar + Header, fixed together) ============ */
.site-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* ============ Top Bar ============ */
.top-bar {
  background: var(--charcoal);
  color: #cfcfcf;
  font-size: 0.85rem;
  padding: 8px 0;
  overflow: hidden;
  max-height: 40px;
  transition: var(--transition);
}
.top-bar a,
.top-bar span {
  color: #cfcfcf;
  margin-right: 22px;
  overflow-wrap: anywhere;
}
.top-bar a:hover {
  color: var(--gold);
}
.top-bar i {
  color: var(--gold);
  margin-right: 6px;
}
.site-header-wrap.scrolled .top-bar {
  max-height: 0;
  padding: 0;
}

/* ============ Header ============ */
.header {
  position: relative;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.site-header-wrap.scrolled .header {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.site-header-wrap.scrolled .logo-img {
  height: 58px;
}
.brand-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  transition: var(--transition);
}
.brand-text em {
  color: var(--gold);
  font-style: normal;
}

.nav-link {
  color: var(--charcoal) !important;
  font-weight: 500;
  margin: 0 14px;
  position: relative;
  padding: 6px 0 !important;
  transition: var(--transition);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}
.navbar-toggler {
  border: none;
  color: var(--charcoal);
  font-size: 1.6rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    margin-top: 14px;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .btn-gold-nav {
    display: inline-block;
    margin-top: 10px;
  }
  .logo-img {
    height: 54px;
  }
  .site-header-wrap.scrolled .logo-img {
    height: 46px;
  }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
}
.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}
.hero-slide {
  height: 100vh;
  min-height: 620px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(31, 31, 31, 0.88) 0%,
    rgba(31, 31, 31, 0.55) 45%,
    rgba(224, 64, 125, 0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-text {
  max-width: 680px;
}
.hero-subtitle {
  display: inline-block;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}
.hero-text h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero-text h1 span {
  color: var(--gold-light);
  font-style: italic;
}
.hero-text p {
  color: #e8e8e8;
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
  opacity: 1;
}
.hero-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}
.hero-arrow:hover {
  background: var(--gold);
}
.hero-indicators {
  bottom: 40px;
}
.hero-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  margin: 0 5px;
  border: none;
}
.hero-indicators .active {
  opacity: 1;
  background: var(--gold);
  width: 30px;
  border-radius: 6px;
}

.scroll-down {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  font-size: 1.6rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -10px);
  }
  60% {
    transform: translate(-50%, -5px);
  }
}

/* ============ About ============ */
.about-img-wrap {
  position: relative;
  padding: 20px 24px 24px 0;
}
.about-main-img {
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(31, 31, 31, 0.2);
  width: 100%;
  height: 520px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.about-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 90%;
  border: 3px solid var(--gold);
  border-radius: 20px;
  z-index: 1;
}
.about-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #fff;
  border-radius: 18px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 35px rgba(224, 64, 125, 0.4);
  z-index: 3;
}
.about-badge i {
  font-size: 1.8rem;
}
.about-badge strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  line-height: 1;
}
.about-badge span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.about-highlights {
  margin-top: 10px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--charcoal);
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.highlight-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ============ Services ============ */
.services-section {
  background: #fff;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(224, 64, 125, 0.08);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(224, 64, 125, 0.2);
}
.service-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.1);
}
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.signature-badge {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #fff;
}
.service-body {
  padding: 26px;
}
.service-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 16px;
  min-height: 72px;
}
.service-pricing {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 14px;
}
.service-pricing li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.93rem;
}
.service-pricing span {
  color: var(--text);
}
.service-pricing strong {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.service-card-signature {
  border: 2px solid var(--gold);
  position: relative;
}
.service-card-signature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: 0 0 0 6px rgba(224, 64, 125, 0.08);
  pointer-events: none;
}

/* ============ Why Choose Us ============ */
.why-us-section {
  background: var(--cream);
  position: relative;
}
.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(224, 64, 125, 0.15);
  border-bottom-color: var(--gold);
}
.why-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(224, 64, 125, 0.15),
    rgba(142, 107, 59, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #fff;
  transform: rotateY(360deg);
}
.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.92rem;
  margin: 0;
}

/* ============ Gallery ============ */
.gallery-section {
  background: #fff;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.15);
}
.gallery-item::after {
  content: "\F52A";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  background: rgba(31, 31, 31, 0);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after {
  opacity: 1;
  background: rgba(31, 31, 31, 0.35);
}

/* ============ CTA Banner ============ */
.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.9),
    rgba(142, 107, 59, 0.75)
  );
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-content p {
  color: #e8e8e8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* ============ Contact ============ */
.contact-section {
  background: var(--cream);
}
.rounded-map {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}
.contact-info-card h4 {
  margin-bottom: 18px;
  font-size: 1.3rem;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.95rem;
}
.contact-info-list i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(224, 64, 125, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.contact-info-list a {
  color: var(--text);
  overflow-wrap: anywhere;
}
.contact-info-list a:hover {
  color: var(--gold);
}

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  height: 100%;
}
.contact-form-card h4 {
  margin-bottom: 24px;
  font-size: 1.3rem;
}
.contact-form-card .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.contact-form-card .form-control,
.contact-form-card .form-select {
  border-radius: 10px;
  border: 1px solid #e4ddc9;
  padding: 11px 14px;
  background: var(--cream);
  font-size: 0.93rem;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 64, 125, 0.15);
  background: #fff;
}

/* ============ Footer ============ */
.footer {
  background: var(--charcoal);
  color: #b8b8b8;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.footer-brand span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
}
.footer-brand em {
  color: var(--gold);
  font-style: normal;
}
.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(224, 64, 125, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-4px);
}

.footer h5 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 22px;
  font-size: 1.05rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #b8b8b8;
  font-size: 0.92rem;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}
.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 0.85rem;
}

/* ============ Floating Buttons ============ */
.float-btn {
  position: fixed;
  right: 22px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  animation: pulse 2.5s infinite;
}
.float-call {
  bottom: 96px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
}
.float-whatsapp {
  bottom: 26px;
  background: #25d366;
}
.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(224, 64, 125, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(224, 64, 125, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(224, 64, 125, 0);
  }
}
.float-whatsapp {
  animation: pulse-wa 2.5s infinite;
}
@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.back-to-top {
  position: fixed;
  bottom: 26px;
  left: 22px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold);
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: #fff;
}

@media (max-width: 576px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    right: 16px;
  }
  .float-call {
    bottom: 82px;
  }
  .float-whatsapp {
    bottom: 20px;
  }
  .back-to-top {
    left: 16px;
    bottom: 20px;
  }
}
