/* ============================================================
   Royal Essence Spa — style.css
   Color: #D38F2A (gold), Black accents, White backgrounds
   ============================================================ */

/* ---------- 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: #D38F2A;
  --gold-light: #e8b05a;
  --gold-dark: #a8711e;
  --black: #1a1a1a;
  --dark: #2b2b2b;
  --text: #444444;
  --text-light: #777777;
  --white: #ffffff;
  --off-white: #faf8f4;
  --border: rgba(211, 143, 42, 0.25);
  --shadow: 0 8px 40px rgba(211, 143, 42, 0.12);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius: 4px;
  --transition: 0.35s ease;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
}

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;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
  color: var(--black);
  line-height: 1.2;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

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

.gold {
  color: var(--gold);
}

.text-center .section-desc {
  margin: 0 auto;
}

/* ---------- Section Spacing ---------- */
section {
  padding: 90px 0;
}

/* ---------- Gold Divider ---------- */
.gold-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.gold-line-center {
  display: block;
  margin: 0 auto 1.5rem;
}

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  padding: 9px 0;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

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

.top-bar .top-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

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

.top-social a {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  transition: var(--transition);
}

.top-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}

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

.navbar {
  padding: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
}

.brand-logo-wrap {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-wrap i {
  color: var(--white);
  font-size: 1.3rem;
}

.brand-text {
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  display: block;
}

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

.navbar-nav .nav-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark) !important;
  padding: 22px 16px !important;
  position: relative;
  transition: color var(--transition);
}

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

.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: calc(100% - 32px);
}

.nav-book-btn {
  margin-left: 10px;
}

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

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D38F2A' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO CAROUSEL  —  FIXED (no blank space)
   ============================================================ */

/*
 * ROOT FIX: Define --header-height so calc() works.
 * top-bar (~38px on desktop) + navbar (~76px) ≈ 114px.
 * Adjust if your real header is different.
 */
:root {
  --header-height: 114px;
}

/* Remove the default section padding from the hero section */
#home {
  padding: 0 !important;
}

/*
 * HEIGHT CHAIN: every ancestor of .hero-slide must have an
 * explicit height so the slide can stretch to fill it.
 */
#home,
#heroCarousel,
.hero-carousel,
.carousel-inner,
.carousel-item {
  height: calc(100vh - var(--header-height));
  min-height: 520px; /* safety floor for very short viewports */
}

.hero-carousel {
  position: relative;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;        /* fill fixed carousel height — no more min-height */
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Fallback dark bg if image fails to load */
  background: #1a1208;
}

/* Gradient fallback per slide (shows when images are missing) */
#heroCarousel .carousel-item:nth-child(1) .hero-slide { background: linear-gradient(135deg,#1a0e02,#2d1c08); }
#heroCarousel .carousel-item:nth-child(2) .hero-slide { background: linear-gradient(135deg,#05100c,#0e2218); }
#heroCarousel .carousel-item:nth-child(3) .hero-slide { background: linear-gradient(135deg,#06080f,#0d1525); }

/* REMOVE EXTRA BOOTSTRAP SPACE */
.hero-slide .container {
  padding-top: 0;
  padding-bottom: 0;
}

/* BACKGROUND IMAGE */
.hero-slide img.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 8s ease;
}

/* ZOOM EFFECT */
.carousel-item.active .slide-bg {
  transform: scale(1.05);
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.35) 60%,
      rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

/* BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211, 143, 42, 0.15);
  border: 1px solid rgba(211, 143, 42, 0.4);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  font-size: 0.7rem;
}

/* TITLE */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-title .gold {
  color: var(--gold-light);
}

/* DESCRIPTION */
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 500px;
}

/* BUTTONS */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   CAROUSEL CONTROLS
   ============================================================ */
.carousel-control-prev,
.carousel-control-next {
  /* Override Bootstrap's default height:100% so the button
     doesn't stretch the full carousel height */
  width: 52px;
  height: 52px;
  top: 50%;
  bottom: auto !important; /* cancel Bootstrap's bottom:0 */
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  opacity: 1;
  transition: 0.3s ease;
}

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

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* INDICATORS */
.carousel-indicators {
  bottom: 30px;
  gap: 6px;
}

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

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

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

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

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

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

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

.about-img-small {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

.about-badge-wrap {
  position: absolute;
  top: 30px;
  left: -20px;
}

.about-badge {
  background: var(--gold);
  color: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 110px;
}

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

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

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

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 1.8rem 0;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}

.about-feat-item i {
  color: var(--gold);
  font-size: 0.9rem;
}

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

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

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

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

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
}

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

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

.service-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(211, 143, 42, 0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.service-icon-wrap i {
  color: var(--gold);
  font-size: 1.2rem;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.service-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--gold-dark);
}

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

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><path d="M30 0 L60 30 L30 60 L0 30Z" fill="none" stroke="rgba(211,143,42,0.06)" stroke-width="1"/></svg>') repeat;
}

.counter-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.counter-item+.counter-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: rgba(211, 143, 42, 0.2);
}

.counter-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.counter-plus {
  color: var(--gold-light);
  font-size: 2rem;
  vertical-align: super;
  margin-left: 2px;
}

.counter-label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  display: block;
}

.counter-icon {
  font-size: 1.6rem;
  color: rgba(211, 143, 42, 0.3);
  margin-bottom: 12px;
}

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

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

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

.why-quote-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  max-width: 240px;
  box-shadow: var(--shadow);
}

.why-quote-box p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 6px;
}

.why-quote-box span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.why-features {
  margin-top: 1.5rem;
}

.why-feat {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.why-feat:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}

.why-feat-icon {
  width: 52px;
  height: 52px;
  background: rgba(211, 143, 42, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feat-icon i {
  color: var(--gold);
  font-size: 1.1rem;
}

.why-feat-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-feat-desc {
  font-size: 0.86rem;
  color: var(--text-light);
}

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

.gallery-grid {
  display: grid;
  gap: 14px;
}

.gallery-grid.desktop-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3/4;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

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

.gallery-overlay-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-overlay-icon {
  transform: translate(-50%, -50%) scale(1);
}

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

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

.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black) !important;
  background: var(--white) !important;
  padding: 18px 22px;
  box-shadow: none !important;
}

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

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

.accordion-body {
  font-size: 0.91rem;
  color: var(--text-light);
  line-height: 1.8;
  padding: 0 22px 18px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--off-white);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  transition: box-shadow var(--transition);
}

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

.testi-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, serif;
  margin-bottom: 14px;
  opacity: 0.4;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
}

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

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

.testi-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}

.testi-role {
  font-size: 0.75rem;
  color: var(--text-light);
}

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

.contact-info-card {
  background: var(--black);
  color: var(--white);
  padding: 42px 36px;
  border-radius: var(--radius);
  height: 100%;
}

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

.contact-info-card .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(211, 143, 42, 0.15);
  border: 1px solid rgba(211, 143, 42, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-item-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 3px;
}

.contact-item-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item-text a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

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

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 42px 36px;
  box-shadow: var(--shadow-sm);
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(211, 143, 42, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: #bbb;
}

/* ============================================================
   MAP
   ============================================================ */
.map-section {
  padding: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(20%);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 70px;
}

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

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

.footer-desc {
  font-size: 0.87rem;
  line-height: 1.8;
  margin: 14px 0 20px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

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

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

.floating-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--white);
  transition: width var(--transition), background var(--transition);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.floating-btn:first-child {
  border-radius: 0 6px 0 0;
}

.floating-btn:last-child {
  border-radius: 0 0 6px 0;
}

.floating-btn.call {
  background: #25d366;
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.email-fl {
  background: var(--gold);
}

.floating-btn span {
  font-size: 0.75rem;
  font-weight: 600;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.4s, padding 0.4s;
  display: inline-block;
}

.floating-btn:hover span {
  max-width: 140px;
  padding-left: 8px;
}

.floating-btn:hover {
  width: auto;
  padding-right: 14px;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 800;
  box-shadow: 0 4px 20px rgba(211, 143, 42, 0.35);
}

#scrollTop.show {
  opacity: 1;
  pointer-events: all;
}

#scrollTop:hover {
  transform: translateY(-3px);
}

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

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

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.fade-up-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  section {
    padding: 70px 0;
  }

  .navbar-nav .nav-link {
    padding: 12px 0 !important;
  }

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

  .navbar-collapse {
    padding: 16px 0;
  }

  .about-content {
    padding-left: 0;
    margin-top: 50px;
  }

  .about-img-small {
    right: 10px;
    bottom: -20px;
    width: 150px;
    height: 150px;
  }

  .why-quote-box {
    right: 0;
    bottom: 0;
    position: relative;
    margin-top: 16px;
    max-width: 100%;
  }

  .counter-item+.counter-item::before {
    display: none;
  }

  .contact-info-card,
  .contact-form-card {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important;
	}
	.cu-jf-cntr{
		justify-content:center!important;
	}
  .top-bar .top-right {
    display: none;
  }

  /* On mobile the top-bar is hidden so header is navbar only (~60px) */
  :root { --header-height: 60px; }

  #home,
  #heroCarousel,
  .hero-carousel,
  .carousel-inner,
  .carousel-item {
    height: calc(100vh - 60px);
    min-height: 480px;
  }

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

  .hero-desc {
    font-size: 0.95rem;
  }

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

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

  .gallery-grid.desktop-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-btn span {
    display: none;
  }

  .floating-btn:hover {
    width: 46px;
    padding-right: 0;
  }

  .counter-num {
    font-size: 2.5rem;
  }

  .why-main-img {
    height: 380px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn-gold,
  .hero-btns .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 28px 20px;
  }
}