/* =============================================
   PEARL LUXURY SPA - style.css
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --gold: #CF9020;
  --gold-light: #e8a82e;
  --gold-dark: #a87018;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #181818;
  --dark-3: #1f1f1f;
  --white: #ffffff;
  --white-soft: #f5f0e8;
  --gray: #888888;
  --gray-light: #bbbbbb;
  --border: rgba(207, 144, 32, 0.25);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 4px 30px rgba(207, 144, 32, 0.15);
  --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.6);
}

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-color: var(--black);
  color: var(--white);
  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 { position: relative; overflow: hidden; }

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

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; }

.section-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 15px;
  color: var(--gray-light);
  max-width: 580px;
  line-height: 1.8;
}

.gold-text { color: var(--gold); }
.gold-border { border-color: var(--gold) !important; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-gold:hover::before { left: 100%; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(207,144,32,0.4); color: var(--black); }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207,144,32,0.3);
}

/* =============================================
   DIVIDER
   ============================================= */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 30px;
}

.gold-divider span {
  display: block;
  height: 1px;
  background: var(--gold);
  flex: 1;
  max-width: 60px;
  opacity: 0.5;
}

.gold-divider i { color: var(--gold); font-size: 14px; }

/* =============================================
   TOP BAR
   ============================================= */
#topbar {
  background: var(--gold);
  padding: 9px 0;
  z-index: 9999;
}

#topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

#topbar .topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

#topbar .topbar-info a,
#topbar .topbar-info span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 6px;
}

#topbar .topbar-info a:hover { text-decoration: underline; }

#topbar .topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

#topbar .topbar-social a {
  width: 26px; height: 26px;
  border: 1px solid rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 11px;
  border-radius: 50%;
  transition: var(--transition);
}

#topbar .topbar-social a:hover {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
#mainHeader {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 9998;
  transition: var(--transition);
}

#mainHeader.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.navbar { padding: 0; }
.navbar-brand { padding: 14px 0; }

.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-logo .brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
}

.brand-logo .brand-name span { color: var(--gold); }

.brand-logo .brand-tagline {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.navbar-toggler {
  border: 1px solid var(--border);
  padding: 6px 10px;
  color: var(--gold);
}

.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { filter: invert(1); }

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light) !important;
  padding: 28px 16px !important;
  position: relative;
  transition: var(--transition);
}

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

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 100%; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =============================================
   HERO CAROUSEL
   ============================================= */
#heroCarousel {
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  position: relative;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item { height: 100%; }

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.692) 60%, rgba(0, 0, 0, 0.541) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

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

.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  right: 60px;
  bottom: 60px;
  z-index: 3;
  width: 100px; height: 100px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  padding: 15px;
}

.hero-badge .badge-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-badge .badge-text {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 4px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px; height: 50px;
  background: rgba(207,144,32,0.2);
  border: 1px solid var(--border);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0;
  opacity: 1;
  margin: 0 20px;
}

.carousel-control-prev { left: auto; right: 80px; }
.carousel-control-next { right: 20px; }

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

.carousel-indicators {
  margin-bottom: 30px;
}

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

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

/* Hero Animate */
.carousel-item.active .hero-eyebrow { animation: fadeInUp 0.7s ease forwards; }
.carousel-item.active .hero-title { animation: fadeInUp 0.7s 0.15s ease both; }
.carousel-item.active .hero-desc { animation: fadeInUp 0.7s 0.3s ease both; }
.carousel-item.active .hero-actions { animation: fadeInUp 0.7s 0.45s ease both; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   MARQUEE
   ============================================= */
#marqueeSection {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-wrapper {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: 48px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
}

.marquee-item i { font-size: 10px; }

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

/* =============================================
   ABOUT SECTION
   ============================================= */
#about {
  background: var(--dark);
  padding: 100px 0;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -25px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 4px solid var(--dark);
  box-shadow: var(--shadow-gold);
}

.about-years-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 24px;
  text-align: center;
}

.about-years-badge .years-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.about-years-badge .years-text {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.about-content { padding-left: 40px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--gold);
  background: rgba(207,144,32,0.05);
}

.about-feature i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 2px;
}

.about-feature h6 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
  color: var(--white);
}

.about-feature p {
  font-size: 12px;
  color: var(--gray);
  margin: 0;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
#services {
  background: var(--black);
  padding: 100px 0;
}

.service-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: var(--transition);
}

.service-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.service-card:hover::before { height: 100%; }

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

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

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

.service-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(207,144,32,0.15);
  line-height: 1;
}

.service-body { padding: 24px; }

.service-icon {
  width: 44px; height: 44px;
  background: rgba(207,144,32,0.12);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
  transition: var(--transition);
}

.service-card:hover .service-icon { background: var(--gold); color: var(--black); }

.service-body h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.service-body p { font-size: 13px; color: var(--gray); line-height: 1.75; margin: 0; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  transition: var(--transition);
}

.service-link:hover { gap: 10px; }

/* =============================================
   COUNTER SECTION
   ============================================= */
#counter {
  background: var(--gold);
  padding: 70px 0;
  position: relative;
}

#counter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1" fill="%23000" opacity="0.08"/></svg>') repeat;
  background-size: 30px 30px;
}

.counter-item {
  text-align: center;
  position: relative;
}

.counter-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0,0,0,0.2);
}

.counter-item:last-child::after { display: none; }

.counter-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.counter-plus {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--black);
}

.counter-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  margin-top: 8px;
  display: block;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
#whyChoose {
  background: var(--dark);
  padding: 100px 0;
}

.why-visual {
  position: relative;
}

.why-main-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.why-float-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 22px 26px;
  min-width: 200px;
  box-shadow: var(--shadow-dark);
}

.why-float-card .rating-stars { color: var(--gold); font-size: 14px; }
.why-float-card .rating-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.why-float-card .rating-text {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

.why-content { padding-left: 50px; }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.why-item:hover { border-color: rgba(207,144,32,0.4); transform: translateX(6px); }
.why-item:hover::before { width: 100%; }

.why-icon {
  width: 52px; height: 52px;
  background: rgba(207,144,32,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 20px;
  transition: var(--transition);
}

.why-item:hover .why-icon { background: var(--gold); color: var(--black); }

.why-item h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}

.why-item p { font-size: 13px; color: var(--gray); margin: 0; line-height: 1.7; }

/* =============================================
   GALLERY
   ============================================= */
#gallery {
  background: var(--black);
  padding: 100px 0;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

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

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

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

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

.gallery-overlay i {
  color: var(--gold);
  font-size: 28px;
  transform: scale(0.7);
  transition: var(--transition);
}

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

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

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 85vh; object-fit: contain; border: 1px solid var(--border); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  color: var(--gold);
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
}

/* =============================================
   TESTIMONIALS (EXTRA SECTION)
   ============================================= */
#testimonials {
  background: var(--dark-2);
  padding: 100px 0;
}

.testimonial-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 34px;
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(207,144,32,0.12);
  line-height: 0.8;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-stars { color: var(--gold); margin-bottom: 16px; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.testimonial-role { font-size: 11px; color: var(--gray); letter-spacing: 1px; }

/* =============================================
   FAQs
   ============================================= */
#faqs {
  background: var(--dark);
  padding: 100px 0;
}

.faq-img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 400px;
  border: 1px solid var(--border);
}

.accordion-item {
  background: var(--dark-2) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  margin-bottom: 8px;
}

.accordion-button {
  background: var(--dark-2) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  box-shadow: none !important;
  padding: 18px 22px !important;
}

.accordion-button:not(.collapsed) {
  color: var(--gold) !important;
  background: var(--dark-3) !important;
}

.accordion-button::after {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(5deg);
}

.accordion-body {
  background: var(--dark-3);
  color: var(--gray-light);
  font-size: 13px;
  line-height: 1.85;
  padding: 18px 22px;
  border-top: 1px solid var(--border);
}

/* =============================================
   CONTACT
   ============================================= */
#contact {
  background: var(--black);
  padding: 100px 0;
}

.contact-info-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 30px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(207,144,32,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info-item h6 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info-item p, .contact-info-item a {
  font-size: 14px;
  color: var(--gray-light);
  margin: 0;
}

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

.contact-form-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 40px;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-control, .form-select {
  background: var(--dark-3) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  padding: 13px 16px !important;
  transition: var(--transition) !important;
}

.form-control:focus, .form-select:focus {
  box-shadow: none !important;
  border-color: var(--gold) !important;
  background: rgba(207,144,32,0.05) !important;
}

.form-control::placeholder { color: var(--gray) !important; }
.form-select option { background: var(--dark-3); }

/* =============================================
   MAP
   ============================================= */
#mapSection {
  position: relative;
  height: 400px;
  overflow: hidden;
}

#mapSection iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.3) brightness(0.85);
}

.map-overlay-info {
  position: absolute;
  top: 30px;
  left: 30px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 20px 24px;
  max-width: 280px;
  box-shadow: var(--shadow-dark);
  z-index: 10;
}

.map-overlay-info h6 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.map-overlay-info p { font-size: 12px; color: var(--gray-light); margin: 0; }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}

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

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.footer-brand .brand-name span { color: var(--gold); }

.footer-brand p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 12px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  font-size: 14px;
  transition: var(--transition);
}

.footer-socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(207,144,32,0.1); }

.footer-heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

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

.footer-links a {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
}

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

.footer-hours .hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-hours .hours-item span:last-child { color: var(--gold); font-weight: 500; }

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray);
  margin: 0;
}

.footer-bottom a { color: var(--gold); }

/* =============================================
   FLOATING BOTTOM BAR (WhatsApp + Book)
   ============================================= */
.floating-bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 9997;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.float-btn-whatsapp {
  background: #0a0a0a;
  color: #25D366;
  border: 1px solid #1e1e1e;
  border-right: none;
}

.float-btn-book {
  background: var(--gold);
  color: var(--black);
}

.float-btn-whatsapp:hover { background: #25D366; color: var(--white); }
.float-btn-book:hover { background: var(--gold-light); color: var(--black); }

.float-btn i { font-size: 16px; }

/* =============================================
   FLOATING LEFT ICON
   ============================================= */
.floating-left {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.floating-left a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  font-size: 16px;
  transition: var(--transition);
}

.floating-left .fl-wa { background: #25D366; color: var(--white); }
.floating-left .fl-call { background: var(--gold); color: var(--black); }
.floating-left .fl-mail { background: var(--dark-3); color: var(--gold); border: 1px solid var(--border); }

.floating-left a:hover { width: 52px; }

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 9990;
  transition: var(--transition);
}

.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* =============================================
   PAGE LOADER
   ============================================= */
#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.5s ease;
}

#pageLoader.hidden { opacity: 0; pointer-events: none; }

.loader-brand {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
}

.loader-brand span { color: var(--gold); }

.loader-bar {
  width: 160px; height: 2px;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: loadBar 1.2s ease forwards;
}

@keyframes loadBar {
  to { left: 0; }
}

/* =============================================
   SECTION PADDING ADJUSTMENT (bottom bar)
   ============================================= */
body { padding-bottom: 60px; }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .about-content { padding-left: 0; margin-top: 60px; }
  .why-content { padding-left: 0; margin-top: 40px; }
  .about-img-accent { display: none; }
  .about-years-badge { left: 0; top: 0; }
  .hero-badge { right: 20px; bottom: 80px; }
  .why-float-card { left: 0; }
  .navbar-nav .nav-link { padding: 10px 0 !important; border-bottom: 1px solid var(--border); }
  .navbar-nav .nav-link::after { display: none; }
  .carousel-control-prev { display: none; }
  .carousel-control-next { right: 10px; }
}

@media (max-width: 767px) {
	.cu-ds-nn{
		display:none!important;
	}
	.cu-tx-cntr{
		text-align:center;
		justify-content:center!important;
	}
  #topbar .topbar-social { display: none; }
  .hero-badge { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
  .floating-left { display: none; }
  .map-overlay-info { max-width: 220px; padding: 14px; }
  #counter .counter-item::after { display: none; }
  .footer-bottom { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .counter-num { font-size: 2.5rem; }
}
