/* =========================================
   FEEL SPA – Custom Stylesheet
   style.css
   ========================================= */

/* ---- Google Fonts imported in HTML ---- */

/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
  --gold: #c9a96e;
  --gold-light: #e2c99a;
  --gold-dark: #a07840;
  --dark: #141414;
  --dark-2: #1e1a17;
  --dark-3: #2a2420;
  --cream: #faf6f0;
  --cream-2: #f3ede4;
  --text-main: #3a3228;
  --text-muted: #7a6e64;
  --white: #ffffff;
  --border-color: rgba(201, 169, 110, 0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.14);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 4px;
  --radius-lg: 12px;
}

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

* {
  box-sizing: border-box;
}

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

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

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
  background: var(--dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

.top-bar-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.top-bar-link {
  color: #b8b0a6;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

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

.top-bar-link i {
  font-size: 0.7rem;
  color: var(--gold);
}

.top-bar-divider {
  color: rgba(201,169,110,0.3);
  font-size: 0.7rem;
}

.top-bar-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.top-bar-social a {
  color: #7a7068;
  font-size: 0.85rem;
  transition: var(--transition);
}

.top-bar-social a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
.site-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* Brand */
.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.brand-feel {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-spa {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  line-height: 1;
  margin-left: 2px;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: #7a7068;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 3px;
}

/* Nav Links */
.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: #000000 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px !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(--gold);
  transition: var(--transition);
}

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

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

.btn-book {
  background: var(--gold) !important;
  color: var(--dark) !important;
  border-radius: 2px !important;
  padding: 8px 22px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  box-shadow: 0 4px 20px rgba(201,169,110,0.3) !important;
}

.btn-book::after {
  display: none !important;
}

.btn-book:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(201,169,110,0.45) !important;
}

/* Toggler */
.navbar-toggler {
  border: none;
  padding: 8px 6px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

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

.toggler-icon {
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: block;
  transition: var(--transition);
}

/* =========================================
   HERO
   ========================================= */
.hero-section {
  position: relative;
}

.hero-slide {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 900px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-slide-1 {
  background-image: url('../images/b1.jpg');
}

.hero-slide-2 {
  background-image: url('../images/b2.avif');
}

.hero-slide-3 {
  background-image: url('../images/b3.jpeg');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,6,3,0.75) 0%,
    rgba(20,12,6,0.5) 50%,
    rgba(10,6,3,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-pretitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

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

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.btn-hero {
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 2px;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
  transition: var(--transition);
  display: inline-block;
  margin-bottom: 8px;
}

.btn-hero:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 34px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.4);
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
  transition: var(--transition);
  display: inline-block;
  margin-bottom: 8px;
}

.btn-hero-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  color: var(--gold);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  opacity: 1;
}

.carousel-control-prev i,
.carousel-control-next i {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
  color: var(--gold);
}

.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators button {
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background: rgba(255,255,255,0.4);
  border: none;
  margin: 0 4px;
  transition: var(--transition);
}

.carousel-indicators button.active {
  background: var(--gold);
  width: 40px;
}

/* =========================================
   MARQUEE
   ========================================= */
.marquee-section {
  background: var(--dark);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a8078;
}

.marquee-dot {
  color: var(--gold) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0 !important;
}

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

/* =========================================
   SECTION LABELS & TITLES
   ========================================= */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  align-items: center;
  gap: 12px;
}

.section-label::before,
.section-label::after {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-label::before {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-body {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 14px;
}

/* =========================================
   BTN PRIMARY CUSTOM
   ========================================= */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 2px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(201,169,110,0.3);
}

.btn-primary-custom:hover {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: none;
  transform: translateY(-2px);
}

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

.about-img-wrapper {
  position: relative;
  padding: 30px 0 30px 30px;
}

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gold);
  color: var(--dark);
  padding: 22px 20px;
  border-radius: var(--radius);
  text-align: center;
  z-index: 3;
  box-shadow: var(--shadow-md);
}

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

.badge-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 3;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}

.about-img-accent img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.about-features {
  margin-top: 8px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.about-feature-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.about-feature-item i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
  background: var(--cream-2);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,169,110,0.5);
}

.service-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

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

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

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

.btn-book-service {
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 2px;
  border: none;
  transform: translateY(10px);
  transition: var(--transition);
}

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

.btn-book-service:hover {
  background: var(--gold-light);
}

.service-card-body {
  padding: 24px 22px;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 15px rgba(201,169,110,0.3);
}

.service-icon i {
  color: var(--dark);
  font-size: 1.1rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

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

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

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon i {
  color: var(--dark);
  font-size: 1.2rem;
}

.why-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

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

.why-img-wrapper {
  position: relative;
}

.why-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.why-img-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  border-left: 3px solid var(--gold);
}

.why-img-card p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-main);
  margin: 10px 0 6px;
  line-height: 1.5;
}

.why-img-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* =========================================
   COUNTER SECTION
   ========================================= */
.counter-section {
  background: var(--dark-2);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('') center/cover no-repeat;
  opacity: 0.08;
}

.counter-item {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.counter-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.counter-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
}

.counter-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a8078;
  margin-top: 8px;
  margin-bottom: 0;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,6,3,0.7), rgba(201,169,110,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  color: var(--white);
  font-size: 1.6rem;
  transform: scale(0.7);
  transition: var(--transition);
}

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

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

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
  background: var(--cream);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(201,169,110,0.45) !important;
  box-shadow: var(--shadow-md);
}

.faq-btn {
  font-family: var(--font-display) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: var(--text-main) !important;
  background: transparent !important;
  padding: 20px 22px !important;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: var(--gold-dark) !important;
}

.faq-btn::after {
  filter: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23c9a96e' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3E%3C/svg%3E") !important;
}

.faq-btn:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a07840' class='bi bi-dash-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3E%3C/svg%3E") !important;
}

.faq-body {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.85;
  padding: 4px 22px 20px !important;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
  background: var(--cream-2);
}

.contact-info-card,
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201,169,110,0.3);
}

.contact-info-icon i {
  color: var(--dark);
  font-size: 0.95rem;
}

.contact-info-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

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

.contact-info-item a {
  color: var(--text-muted);
  transition: var(--transition);
}

.contact-info-item a:hover {
  color: var(--gold);
}

.contact-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border: 2px solid #25d366;
}

.whatsapp-btn:hover {
  background: transparent;
  color: #25d366;
}

.call-btn {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
}

.call-btn:hover {
  background: transparent;
  color: var(--gold-dark);
}

/* Form */
.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 8px;
}

.custom-input {
  background: var(--cream) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 2px !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  color: var(--text-main) !important;
  transition: var(--transition) !important;
  box-shadow: none !important;
}

.custom-input:focus {
  border-color: var(--gold) !important;
  background: var(--white) !important;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15) !important;
}

.custom-input::placeholder {
  color: #b0a898;
}

.form-success {
  text-align: center;
  padding: 30px;
  color: var(--text-main);
}

.form-success i {
  font-size: 2.5rem;
  color: #25d366;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--dark);
}

.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(201,169,110,0.12);
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand .brand-feel {
  font-size: 1.8rem;
}

.footer-brand .brand-spa {
  font-size: 1.8rem;
}

.footer-about {
  font-size: 0.88rem;
  color: #7a7068;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a7068;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.87rem;
  color: #7a7068;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-list i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list span,
.footer-contact-list a {
  font-size: 0.85rem;
  color: #7a7068;
  line-height: 1.6;
  transition: var(--transition);
}

.footer-contact-list a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 18px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #504840;
  margin: 0;
}

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.floating-btns {
  position: fixed;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: none;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  position: relative;
  pointer-events: all;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.whatsapp-float {
  left: 20px;
  background: #25d366;
  color: #fff;
  position: fixed;
  bottom: 90px;
}

.call-float {
  right: 20px;
  background: var(--gold);
  color: var(--dark);
  position: fixed;
  bottom: 90px;
}

.float-tooltip {
  position: absolute;
  background: var(--dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.whatsapp-float .float-tooltip {
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.call-float .float-tooltip {
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: var(--dark-3);
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
  box-shadow: var(--shadow-sm);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

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

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

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

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

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

/* =========================================
   RESPONSIVE – TABLET
   ========================================= */
@media (max-width: 991px) {
	.navbar-nav .nav-link{
		color:#fff!important;
	}
  .section-pad {
    padding: 70px 0;
  }

  .hero-slide {
    height: 75vh;
  }

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

  .about-img-accent {
    display: none;
  }

  .why-img {
    height: 380px;
  }

  .why-img-card {
    left: 10px;
    bottom: 10px;
    max-width: 220px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 30px 24px;
  }

  .navbar-collapse {
    background: var(--dark-2);
    padding: 20px;
    border-top: 1px solid rgba(201,169,110,0.1);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .btn-book {
    margin-top: 8px;
  }
}

/* =========================================
   RESPONSIVE – MOBILE
   ========================================= */
@media (max-width: 767px) {
  .section-pad {
    padding: 55px 0;
  }

  .top-bar-info {
    justify-content: center;
    gap: 8px;
  }

  .top-bar-social {
    justify-content: center;
    margin-top: 6px;
  }

  .hero-slide {
    height: 85vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .about-img-wrapper {
    padding: 0;
    margin-bottom: 30px;
  }

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

  .about-img-badge {
    top: -14px;
    left: -10px;
    padding: 14px 14px;
  }

  .gallery-item img {
    height: 160px;
  }

  .why-img {
    height: 280px;
  }

  .why-img-card {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: 16px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px 18px;
  }

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

  .counter-item {
    padding: 10px;
  }

  .whatsapp-float {
    bottom: 80px;
    left: 14px;
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .call-float {
    bottom: 80px;
    right: 14px;
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn-hero,
  .btn-hero-outline {
    padding: 11px 22px;
    font-size: 0.72rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .marquee-track span {
    font-size: 0.7rem;
  }
}
