/* ==========================================================================
   Honey 6 Spa — Custom Stylesheet
   ========================================================================== */

:root {
  --clr-cream: #faf6ef;
  --clr-beige: #f1e6d6;
  --clr-brown: #6b4c3b;
  --clr-brown-dark: #4a3427;
  --clr-charcoal: #221e1c;
  --clr-charcoal-2: #2c2622;
  --clr-gold: #c8a45e;
  --clr-gold-light: #e4c98c;
  --clr-text: #4a423c;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --shadow-soft: 0 15px 40px rgba(74, 52, 39, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
}

* { box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-cream);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  font-weight: 400;
}

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

em { font-style: italic; color: var(--clr-gold); }

a { text-decoration: none; }

section { position: relative; }

.section-padding { padding: 100px 0; }

.bg-cream { background: var(--clr-beige); }

@media (max-width: 767px) {
  .section-padding { padding: 64px 0; }
}

/* ===== Preloader ===== */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--clr-charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 56px; height: 56px;
  border: 3px solid rgba(200,164,94,0.25);
  border-top-color: var(--clr-gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Buttons ===== */
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 50px;
  padding: 12px 30px;
  letter-spacing: 0.3px;
  transition: all 0.35s ease;
  border: none;
}
.btn-lg { padding: 14px 34px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: var(--clr-charcoal);
  box-shadow: 0 10px 25px rgba(200,164,94,0.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(200,164,94,0.45);
  color: var(--clr-charcoal);
}

.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.75);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  transform: translateY(-3px);
}

.btn-outline-gold {
  border: 1.5px solid var(--clr-gold);
  color: var(--clr-brown-dark);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--clr-gold);
  color: var(--clr-charcoal);
  transform: translateY(-3px);
}

/* ===== Navbar ===== */
#mainNav {
  padding: 18px 0;
  background: transparent;
  transition: all 0.4s ease;
  z-index: 1200;
}
#mainNav.scrolled {
  padding: 10px 0;
  background: rgba(34, 30, 28, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.navbar-brand {
  display: flex; align-items: center;
  padding: 0;
}
.brand-logo {
  height: 78px; width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.4s ease;
}
#mainNav.scrolled .brand-logo { height: 58px; }

@media (max-width: 575px) {
  .brand-logo { height: 56px; }
  #mainNav.scrolled .brand-logo { height: 46px; }
}

.nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  margin: 0 4px;
  padding: 6px 4px !important;
}
.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--clr-gold);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.navbar-toggler { border: none; color: #fff; font-size: 1.6rem; box-shadow: none !important; }
.navbar-toggler i { color: #fff; }

@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(20, 16, 14, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    border-top: 1px solid rgba(200,164,94,0.25);
    padding: 12px 24px 24px;
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }
  .navbar-nav .nav-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .navbar-nav .nav-item:last-child { border-bottom: none; }
  .nav-link { display: block; padding: 12px 4px !important; margin: 0; }
  .navbar-nav .nav-item.ms-lg-3 { margin-top: 14px; }
  .navbar-nav .nav-item.ms-lg-3 .btn { width: 100%; }
}

/* ===== Hero ===== */
header#home { position: relative; }
.carousel, .carousel-inner, .carousel-item { height: 100vh; min-height: 560px; }
.hero-slide {
  height: 100vh; min-height: 560px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,14,0.55) 0%, rgba(20,16,14,0.65) 50%, rgba(20,16,14,0.85) 100%);
}
.hero-content { position: relative; z-index: 3; color: #fff; max-width: 760px; width: 100%; min-width: 0; margin-left: auto; margin-right: auto; }
.hero-content.text-center .hero-text { margin-left: auto; margin-right: auto; }
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: 0.85rem;
  color: var(--clr-gold-light); font-weight: 600; margin-bottom: 14px;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-text {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.carousel-control-prev, .carousel-control-next { width: 6%; opacity: 1; }
.hero-nav-icon {
  width: 48px; height: 48px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff;
  transition: all 0.3s ease;
}
.hero-nav-icon:hover { background: var(--clr-gold); border-color: var(--clr-gold); color: var(--clr-charcoal); }
.carousel-indicators { bottom: 28px; }
.carousel-indicators [data-bs-target] {
  width: 11px; height: 11px;
  border-radius: 50%;
  background-color: var(--clr-gold);
  background-clip: border-box;
  border: 0;
  margin: 0 5px;
  padding: 0;
  text-indent: -9999px;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.carousel-indicators [data-bs-target]:hover { opacity: 0.8; }
.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.15);
}

.scroll-down-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: #fff; font-size: 1.6rem; z-index: 5;
  animation: bounce 2s infinite;
  opacity: 0.85;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Section Headings ===== */
.section-eyebrow {
  display: flex; align-items: center;
  text-transform: uppercase; letter-spacing: 3px; font-size: 0.82rem;
  color: var(--clr-gold); font-weight: 600; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 18px;
}
.section-text { color: var(--clr-text); font-size: 1.02rem; line-height: 1.85; }

/* ===== About ===== */
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 560px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.about-badge {
  position: absolute; bottom: -28px; right: -18px;
  background: var(--clr-charcoal);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 20px 26px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(200,164,94,0.3);
}
.about-badge i { font-size: 2rem; color: var(--clr-gold); }
.badge-num { display: block; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--clr-gold); }
.badge-text { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.85); }

@media (max-width: 991px) {
  .about-img-main { height: 380px; }
  .about-badge { right: 10px; bottom: -20px; padding: 14px 18px; }
}

.feature-mini {
  text-align: center;
  padding: 18px 10px;
  background: var(--clr-cream);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200,164,94,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-mini:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.feature-mini i { font-size: 1.8rem; color: var(--clr-gold); margin-bottom: 10px; display: block; }
.feature-mini h6 { font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; margin: 0; color: var(--clr-brown-dark); }

/* ===== Services ===== */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(74,52,39,0.2); }
.service-img-wrap { position: relative; height: 240px; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img { transform: scale(1.12); }
.service-icon {
  position: absolute; top: 16px; right: 16px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-gold); font-size: 1.2rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.service-body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.service-body h5 { margin-bottom: 10px; font-size: 1.2rem; }
.service-body p { font-size: 0.92rem; color: var(--clr-text); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.service-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ===== Why Choose Us ===== */
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, background 0.35s ease;
  border: 1px solid rgba(200,164,94,0.15);
}
.why-card:hover { transform: translateY(-8px); background: var(--clr-charcoal); }
.why-card:hover i, .why-card:hover h5, .why-card:hover p { color: #fff; }
.why-card:hover h5 { color: var(--clr-gold-light); }
.why-card i {
  font-size: 2.6rem; color: var(--clr-gold); margin-bottom: 18px; display: inline-block;
  transition: color 0.35s ease;
}
.why-card h5 { margin-bottom: 12px; transition: color 0.35s ease; }
.why-card p { font-size: 0.9rem; color: var(--clr-text); margin: 0; transition: color 0.35s ease; }

/* ===== Gallery ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.12); }
.gallery-zoom-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34, 30, 28, 0.45);
  color: #fff; font-size: 1.6rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-zoom-icon { opacity: 1; }

/* ===== Gallery Lightbox ===== */
#galleryLightbox .modal-content.lightbox-content {
  background: transparent;
  border: none;
  position: relative;
}
.lightbox-img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: absolute; top: -44px; right: 0;
  z-index: 5;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(34, 30, 28, 0.65);
  border: 1px solid rgba(200,164,94,0.4);
  color: #fff; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: background 0.3s ease;
}
.lightbox-nav:hover { background: var(--clr-gold); color: var(--clr-charcoal); }
.lightbox-prev { left: -20px; }
.lightbox-next { right: -20px; }

@media (max-width: 767px) {
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* ===== CTA Banner ===== */
.cta-banner {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  position: relative;
  text-align: center;
}
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,16,14,0.85), rgba(74,52,39,0.75)); }
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.8rem); position: relative; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.9); position: relative; max-width: 560px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-phone {
  display: inline-block; margin-top: 30px; position: relative;
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  color: var(--clr-gold-light);
  letter-spacing: 1px;
}
.cta-phone:hover { color: #fff; }

@media (max-width: 767px) {
  .cta-banner { background-attachment: scroll; padding: 80px 0; }
}

/* ===== Contact ===== */
.contact-info-card {
  background: var(--clr-charcoal);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  height: 100%;
  box-shadow: var(--shadow-soft);
}
.contact-info-card h4 { color: var(--clr-gold-light); margin-bottom: 26px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-list i { font-size: 1.3rem; color: var(--clr-gold); margin-top: 3px; }
.contact-list span { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.contact-list a { color: #fff; font-size: 0.95rem; line-height: 1.6; }
.contact-list a:hover { color: var(--clr-gold-light); }

.form-label { font-weight: 500; font-size: 0.88rem; color: var(--clr-brown-dark); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid #e6dcc9;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.92rem;
  background: var(--clr-cream);
}
.form-control:focus, .form-select:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(200,164,94,0.2);
  background: #fff;
}

/* ===== Map ===== */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); line-height: 0; }

/* ===== Footer (copyright only) ===== */
.footer-mini { background: var(--clr-charcoal-2); padding: 24px 0; }
.copyright { text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ===== Floating Buttons ===== */
.float-btn {
  position: fixed;
  border: none;
  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);
  z-index: 1000;
  transition: transform 0.3s ease;
}
.float-btn:hover { transform: scale(1.08); color: #fff; }

.call-float {
  right: 24px; bottom: 24px;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--clr-gold); color: var(--clr-charcoal);
  animation: pulseCall 2.2s infinite;
}
.call-float:hover { color: var(--clr-charcoal); }

@keyframes pulseCall {
  0%, 100% { box-shadow: 0 10px 25px rgba(0,0,0,0.25), 0 0 0 0 rgba(200,164,94,0.5); }
  50% { box-shadow: 0 10px 25px rgba(0,0,0,0.25), 0 0 0 10px rgba(200,164,94,0); }
}

.whatsapp-float {
  right: 24px; bottom: 96px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  animation: pulseWhatsapp 2.2s infinite;
}
.whatsapp-float:hover { color: #fff; }

@keyframes pulseWhatsapp {
  0%, 100% { box-shadow: 0 10px 25px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 25px rgba(0,0,0,0.25), 0 0 0 10px rgba(37,211,102,0); }
}

.enquire-float {
  right: 0; top: 50%; transform: translateY(-50%);
  background: var(--clr-charcoal); color: var(--clr-gold-light);
  flex-direction: column;
  gap: 4px;
  padding: 18px 10px;
  border-radius: 14px 0 0 14px;
  font-size: 1.3rem;
  border: 1px solid rgba(200,164,94,0.4);
  border-right: none;
}
.enquire-float span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.72rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.enquire-float:hover { transform: translateY(-50%) scale(1.05); color: var(--clr-gold-light); }

@media (max-width: 767px) {
  .call-float { display: none; }
  .enquire-float { display: none; }
}

/* ===== Mobile Bottom CTA Bar ===== */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--clr-charcoal);
  z-index: 1100;
  border-top: 1px solid rgba(200,164,94,0.3);
}
.mobile-cta-bar a, .mobile-cta-bar button {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  color: #fff;
  background: none; border: none;
  font-size: 0.68rem;
  font-family: var(--font-body);
}
.mobile-cta-bar a:nth-child(2) { color: #6be08a; }
.mobile-cta-bar i { font-size: 1.15rem; color: var(--clr-gold); }
.mobile-cta-bar a:nth-child(2) i { color: #25D366; }

@media (max-width: 767px) {
  .mobile-cta-bar { display: flex; }
  .whatsapp-float { display: none; }
  body { padding-bottom: 58px; }
}

/* ===== Modal ===== */
.modal-content { border-radius: var(--radius-lg); border: none; overflow: hidden; }
.modal-header { background: var(--clr-charcoal); border: none; padding: 22px 28px; }
.modal-title { color: #fff; font-size: 1.2rem; }
.modal-title i { color: var(--clr-gold); }
.btn-close { filter: invert(1); }
.modal-body { padding: 30px 28px; }

/* ===== Reveal Animations ===== */
.reveal, .reveal-up { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal { transform: translateY(40px); }
.reveal[data-reveal="left"] { transform: translateX(-50px); }
.reveal[data-reveal="right"] { transform: translateX(50px); }
.reveal-up { transform: translateY(30px); }
.reveal.in-view, .reveal-up.in-view { opacity: 1; transform: translate(0,0); }

.hero-content .reveal-up { opacity: 1; transform: translateY(0); animation: heroUp 0.9s ease backwards; }
.delay-1 { animation-delay: 0.15s !important; }
.delay-2 { animation-delay: 0.3s !important; }
.delay-3 { animation-delay: 0.45s !important; }
@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
