/* ============================================================
   SKY'S SPA & SALOON — style.css
   Color: #76508D | Fonts: Cormorant Garamond + Jost
   ============================================================ */

:root {
  --primary: #76508D;
  --primary-dark: #5a3a6e;
  --primary-light: #9b72b0;
  --primary-xlight: #f3edf7;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --dark: #1a0f24;
  --dark-2: #2d1a3e;
  --text: #1e0f2e;
  --text-light: #4a3560;
  --white: #ffffff;
  --off-white: #faf7fd;
  --border: rgba(118, 80, 141, 0.18);
  --shadow-sm: 0 4px 20px rgba(118, 80, 141, 0.12);
  --shadow-md: 0 8px 40px rgba(118, 80, 141, 0.18);
  --shadow-lg: 0 20px 60px rgba(118, 80, 141, 0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: '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;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  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;
  transition: var(--transition);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  padding: 9px 0;
  letter-spacing: 0.03em;
  font-family: var(--font-body);
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.topbar-link:hover {
  color: var(--gold-light);
}

.topbar-link i {
  color: var(--primary-light);
  font-size: 0.8rem;
}

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

.topbar-social a:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

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

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.99);
}

.nav-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}

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

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

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

.toggler-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
}

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(118, 80, 141, 0.2);
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white) !important;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(118, 80, 141, 0.35);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transition: var(--transition);
  z-index: 0;
}

.btn-primary-custom:hover::before {
  left: 0;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary-custom>* {
  position: relative;
  z-index: 1;
}

.btn-primary-custom span,
.btn-primary-custom i {
  position: relative;
  z-index: 1;
}

.btn-outline-custom {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 11px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white-custom {
  background: var(--white);
  color: var(--primary-dark) !important;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.nav-cta {
  font-size: 0.82rem !important;
  padding: 9px 22px !important;
}

/* ===== HERO ===== */
.hero-slide {
  height: 95vh;
  min-height: 580px;
  max-height: 900px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

/* Slow Ken Burns zoom on active slide */
.carousel-item.active .hero-bg-img {
  transform: scale(1.06);
}

.carousel-item:not(.active) .hero-bg-img {
  transform: scale(1);
}

/* Fallback gradient — agar image load na ho toh ye dikhega */
.hero-slide-1 {
  background: linear-gradient(135deg, #000000e8 0%, #000000b6 50%, #00000075 100%);
}

.hero-slide-2 {
  background: linear-gradient(135deg, #000000e8 0%, #000000b6 50%, #00000075 100%);
}

.hero-slide-3 {
  background: linear-gradient(135deg, #000000e8 0%, #000000b6 50%, #00000075 100%);
}

/* Dark overlay — image ke upar dark tint taaki text readable rahe */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000000f1 0%, #000000d2 50%, #00000096 100%);
  z-index: 1;
}

.carousel-item.hero-slide {
  height: 95vh;
  min-height: 580px;
  max-height: 900px;
}

#heroCarousel .container {
  height: 100%;
  position: relative;
  z-index: 2;
}

#heroCarousel .row.h-100 {
  height: 100%;
}

.hero-content {
  z-index: 2;
  position: relative;
  animation: heroFadeIn 0.9s ease forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

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

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 300;
  line-height: 1.8;
}

.carousel-ctrl-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

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

.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  opacity: 1;
  transition: var(--transition);
}

.carousel-indicators button.active {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--primary);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 36px;
  font-weight: 400;
}

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

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

/* ===== SECTION UTILITIES ===== */
.section-pad {
  padding: 90px 0;
}

.section-dark {
  background: var(--dark);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.section-label.light {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-title.light {
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}

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

.section-body {
  font-size: 1rem;
  color: #2e1a40;
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 400;
}

.section-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

/* ===== ABOUT ===== */
.about-img-col {
  position: relative;
}

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

.about-img-main {
  background: var(--primary-xlight);
  border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: 3px solid var(--border);
}

.about-img-main:hover {
  border-radius: 45% 55% 40% 60% / 45% 55% 45% 55%;
}

.about-logo-large {
  width: 260px;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(118, 80, 141, 0.3));
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.about-badge-card {
  position: absolute;
  bottom: 30px;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 130px;
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}

.badge-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.about-deco-ring {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100px;
  height: 100px;
  border: 2px dashed var(--primary-light);
  border-radius: 50%;
  opacity: 0.3;
  animation: spinRing 15s linear infinite;
}

@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.about-feature-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.about-feature-card i {
  color: var(--primary);
  font-size: 1.1rem;
}

.about-feature-card:hover {
  background: var(--primary-xlight);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== SERVICES ===== */
.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
  z-index: 2;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* Service Image */
.service-img-wrap {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  background: var(--dark-2);
  /* Placeholder gradient when no image */
  background: linear-gradient(135deg, #2d1a3e 0%, #4a2a66 50%, #76508D 100%);
}

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(26, 15, 36, 0.65) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: var(--transition);
}

.service-card:hover .service-img-overlay {
  background: linear-gradient(to bottom, rgba(118, 80, 141, 0.15) 0%, rgba(26, 15, 36, 0.75) 100%);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(118, 80, 141, 0.7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(155, 114, 176, 0.5);
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

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

.service-card:hover .service-icon-wrap {
  background: var(--primary);
  border-color: var(--primary-light);
  transform: scale(1.08);
}

/* Service Body (text area) */
.service-body {
  padding: 24px 26px 26px;
  position: relative;
}

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  position: absolute;
  top: 10px;
  right: 18px;
  line-height: 1;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

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

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

/* ===== WHY CHOOSE US ===== */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-xlight);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.why-item:hover .why-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.why-item:hover .why-icon i {
  color: var(--white);
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.9rem;
  color: #3a2550;
  margin: 0;
  font-weight: 400;
  line-height: 1.7;
}

.why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.why-visual-inner {
  position: relative;
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, var(--primary-xlight) 0%, #e8d8f5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.why-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.why-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary-dark);
  white-space: nowrap;
  animation: floatCard 3s ease-in-out infinite;
}

.why-card i {
  color: var(--primary);
  font-size: 1.1rem;
}

.wc-1 {
  top: 0;
  left: -30px;
  animation-delay: 0s;
}

.wc-2 {
  bottom: 40px;
  left: -40px;
  animation-delay: 1s;
}

.wc-3 {
  top: 80px;
  right: -40px;
  animation-delay: 2s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.why-deco {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px dashed rgba(118, 80, 141, 0.2);
  animation: spinRing 20s linear infinite reverse;
}

/* ===== COUNTER ===== */
.counter-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/g%3E%3C/svg%3E");
}

.counter-card {
  position: relative;
  z-index: 1;
}

.counter-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  display: inline-block;
}

.counter-plus {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold-light);
  display: inline-block;
  line-height: 1;
  vertical-align: top;
  margin-top: 8px;
}

.counter-label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 10px;
  font-weight: 400;
}

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

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 50px 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testi-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--primary-xlight);
  position: absolute;
  top: -10px;
  left: 30px;
  line-height: 1;
}

.testi-stars i {
  color: var(--gold);
  font-size: 1rem;
  margin-right: 2px;
}

.testi-stars {
  margin-bottom: 20px;
}

.testi-card blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 20px;
  position: relative;
}

.testi-author {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.testi-dot {
  width: 10px;
  height: 10px;
  background: var(--border);
  border: 2px solid var(--primary-light);
  border-radius: 50%;
  transition: var(--transition);
  cursor: pointer;
}

.testi-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* ===== GALLERY ===== */
.gallery-filter .gal-btn {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter .gal-btn.active,
.gallery-filter .gal-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.gal-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 1;
  cursor: pointer;
}

.gal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: var(--dark-2);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(118, 80, 141, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gal-overlay i {
  color: var(--white);
  font-size: 1.8rem;
}

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

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

.gal-item {
  transition: var(--transition);
}

.gal-item.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
}

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

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--primary);
}

/* ===== OFFER SECTION ===== */
.offer-section {
  background: linear-gradient(135deg, var(--gold) 0%, #b8962f 100%);
  padding: 55px 0;
}

.offer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.offer-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.offer-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 6px;
}

.offer-content h3 strong {
  font-weight: 700;
}

.offer-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
}

/* ===== FAQ ===== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(118, 80, 141, 0.3) !important;
}

.faq-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text) !important;
  background: var(--white) !important;
  padding: 20px 24px !important;
  border: none !important;
  box-shadow: none !important;
}

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

.faq-btn::after {
  filter: hue-rotate(240deg);
}

.faq-body {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  padding: 0 24px 20px;
  background: var(--white);
  font-weight: 300;
}

/* ===== CONTACT ===== */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.ci-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(118, 80, 141, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(118, 80, 141, 0.2);
}

.ci-icon i {
  color: var(--primary-light);
  font-size: 1.2rem;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  margin: 0;
  line-height: 1.7;
}

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

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
}

.contact-form .form-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-bottom: 8px;
}

.custom-input {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--white) !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  transition: var(--transition) !important;
}

.custom-input::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

.custom-input:focus {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--primary-light) !important;
  box-shadow: 0 0 0 3px rgba(118, 80, 141, 0.25) !important;
  outline: none !important;
  color: var(--white) !important;
}

.custom-input option {
  background: var(--dark-2);
  color: var(--white);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== FOOTER ===== */
.site-footer-bottom {
  background: var(--dark);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-right: 8px;
  transition: var(--transition);
}

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

.footer-head {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.72);
  transition: var(--transition);
}

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

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

.footer-contact li i {
  color: var(--primary-light);
  min-width: 16px;
  margin-top: 3px;
}

.footer-hr {
  border-color: rgba(255, 255, 255, 0.07);
  margin: 40px 0 24px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  font-weight: 300;
}

/* ===== FLOATING BUTTONS ===== */
.float-btn {
  position: fixed;
  bottom: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 999;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.float-whatsapp {
  left: 22px;
  background: #25D366;
  color: var(--white);
}

.float-call {
  right: 22px;
  background: var(--primary);
  color: var(--white);
}

.float-btn:hover {
  transform: scale(1.12) translateY(-3px);
  color: var(--white);
}

.float-whatsapp:hover {
  background: #1ebe5d;
}

.float-call:hover {
  background: var(--primary-dark);
}

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

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

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 10px;
  right: 22px;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 998;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.back-to-top:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ===== FORM SUCCESS MESSAGE ===== */
.form-success {
  background: rgba(118, 80, 141, 0.1);
  border: 1px solid rgba(118, 80, 141, 0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--primary-light);
  font-size: 0.95rem;
  text-align: center;
  margin-top: 12px;
  display: none;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

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

  .about-img-main {
    min-height: 320px;
  }

  .about-logo-large {
    width: 200px;
    height: 200px;
  }

  .why-visual-inner {
    width: 280px;
    height: 280px;
  }

  .why-logo {
    width: 140px;
    height: 140px;
  }

  .wc-1 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .wc-2 {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .wc-3 {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
  }

  .contact-form {
    padding: 28px 22px;
  }

  .testi-card {
    padding: 36px 28px 28px;
  }

  .offer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
  .section-pad {
    padding: 55px 0;
  }

  .hero-slide,
  .carousel-item.hero-slide {
    height: 80vh;
    min-height: 480px;
    max-height: 700px;
  }

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

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

  .topbar-info {
    flex-direction: column;
    gap: 6px !important;
  }

  .top-bar .col-md-8 {
    font-size: 0.75rem;
  }

  .service-card {
    padding: 28px 22px;
  }

  .about-img-main {
    min-height: 260px;
    padding: 28px;
  }

  .about-logo-large {
    width: 150px;
    height: 150px;
  }

  .about-badge-card {
    bottom: 10px;
    right: 10px;
    padding: 12px 18px;
  }

  .badge-num {
    font-size: 2rem;
  }

  .why-visual {
    min-height: 340px;
  }

  .why-visual-inner {
    width: 240px;
    height: 240px;
  }

  .why-logo {
    width: 110px;
    height: 110px;
  }

  .testi-card {
    padding: 28px 20px 24px;
  }

  .testi-card blockquote {
    font-size: 1.1rem;
  }

  .counter-section {
    padding: 50px 0;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .float-whatsapp {
    left: 14px;
    bottom: 22px;
  }

  .float-call {
    right: 14px;
    bottom: 22px;
  }

  .back-to-top {
    bottom: 10px;
    right: 14px;
  }
}

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

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 11px 22px;
    font-size: 0.8rem;
  }

  .why-item {
    flex-direction: column;
    gap: 12px;
  }

  .site-footer-bottom {
    padding: 50px 0 24px;
  }

  .offer-section {
    padding: 40px 0;
  }
}


.floating-icons{
    position: fixed;
    right: 20px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-icons a{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.floating-icons a:hover{
    transform: scale(1.1);
}

.whatsapp-btn{
    background: #25D366;
}

.call-btn{
    background: #007bff;
}