/* ============================================================
   ROOSWOOD – ANIMATIONS CSS
   Smooth scroll + Reveal + Hero + Section Animations
   ============================================================ */

/* ── Smooth Scroll ── */
html {
  scroll-behavior: smooth;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ============================================================
   SCROLL REVEAL SYSTEM
   ============================================================ */
.sr {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.sr.show {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.sr-d1 { transition-delay: 0.1s; }
.sr-d2 { transition-delay: 0.2s; }
.sr-d3 { transition-delay: 0.3s; }
.sr-d4 { transition-delay: 0.4s; }
.sr-d5 { transition-delay: 0.5s; }

/* Slide from left */
.sr-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.sr-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.sr-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.sr-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.sr-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease,
              transform 0.7s ease;
}
.sr-scale.show {
  opacity: 1;
  transform: scale(1);
}

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

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

.hero-bg {
  animation: heroZoom 8s ease forwards;
}

.hero-content h1 {
  animation: heroFadeUp 1s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-rera {
  animation: heroFadeUp 1s 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── Topbar logo animation ── */
@keyframes logoSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.logo-rosewood { animation: logoSlideIn 0.7s 0.1s ease both; }
.trimont-logo  { animation: logoSlideIn 0.7s 0.2s ease both; }

/* ── Section nav animated underline ── */
.snav a {
  position: relative !important;
}
.snav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
      background: #101d15;
        transition: width 0.3s ease, left 0.3s ease;
}
.snav a:hover::after,
/*.snav a.active::after {
  width: 100%;
  left: 0;
}*/

/* ============================================================
   SECTION HEADING ANIMATION (line draw)
   ============================================================ */
@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to   { width: 60px; opacity: 1; }
}

/*.sec-h::after,
.ov-heading::after,
.am-heading::after,
.ch-heading::after,
.cn-title::after,
.u-title::after,
.dl-h::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-top: 10px;
  border-radius: 2px;
  transition: width 0.6s 0.3s ease;
}*/

/*.sec-h.show::after,
.ov-heading.show::after,
.am-heading.show::after,
.ch-heading.show::after,
.cn-title.show::after,
.u-title.show::after,
.dl-h.show::after {
  width: 60px;
}*/

/* ============================================================
   OVERVIEW SECTION
   ============================================================ */
#overview .col-lg-6:first-child { transition-delay: 0s; }
#overview .col-lg-6:last-child  { transition-delay: 0.2s; }

.btn-rm {
  position: relative;
  overflow: hidden;
}
.btn-rm::before {
  content: '';
  position: absolute;
  top: 50%; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transform: translateY(-50%) skewX(-20deg);
  transition: left 0.4s ease;
}
.btn-rm:hover::before { left: 150%; }

/* ============================================================
   WALKTHROUGH VIDEO BOX
   ============================================================ */
@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/*.vbox .pc {
  position: relative;
}*/
.vbox .pc::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  animation: pulseRing 2s ease-out infinite;
}
.vbox .pc::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  animation: pulseRing 2s 0.5s ease-out infinite;
}

.vbox {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
    background-position: top;
}
.vbox:hover {
  transform: scale(1.01);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

/* ============================================================
   LOCATION MAP
   ============================================================ */
.loc-map-box {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.loc-map-box:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ============================================================
   AMENITIES LIST — stagger
   ============================================================ */
.am-list li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.am-list.animate li {
  opacity: 1;
  transform: translateX(0);
}
.am-list li:nth-child(1)  { transition-delay: 0.05s; }
.am-list li:nth-child(2)  { transition-delay: 0.10s; }
.am-list li:nth-child(3)  { transition-delay: 0.15s; }
.am-list li:nth-child(4)  { transition-delay: 0.20s; }
.am-list li:nth-child(5)  { transition-delay: 0.25s; }
.am-list li:nth-child(6)  { transition-delay: 0.30s; }
.am-list li:nth-child(7)  { transition-delay: 0.35s; }
.am-list li:nth-child(8)  { transition-delay: 0.40s; }
.am-list li:nth-child(9)  { transition-delay: 0.45s; }
.am-list li:nth-child(10) { transition-delay: 0.50s; }
.am-list li:nth-child(11) { transition-delay: 0.55s; }
.am-list li:nth-child(12) { transition-delay: 0.60s; }
.am-list li:nth-child(13) { transition-delay: 0.65s; }
.am-list li:nth-child(14) { transition-delay: 0.70s; }
.am-list li:nth-child(15) { transition-delay: 0.75s; }
.am-list li:nth-child(16) { transition-delay: 0.80s; }
.am-list li:nth-child(17) { transition-delay: 0.85s; }

/* Dot pulse */
.am-list li .dot {
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.4); }
}

/* ============================================================
   CLUBHOUSE IMAGE
   ============================================================ */
.img-radius {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.img-radius:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

/* ============================================================
   CONNECTED / ACCORDION SECTION
   ============================================================ */
.accordion-item {
  transition: background 0.3s ease;
}
.accordion-button {
  transition: color 0.3s ease, letter-spacing 0.3s ease !important;
}
.accordion-button:not(.collapsed) {
  letter-spacing: 0.13em;
}
.accordion-collapse {
  transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* Li-row hover */
.li-row {
  transition: background 0.2s ease;
  border-radius: 4px;
  padding-left: 4px;
}
.li-row:hover {
  background: rgba(255,255,255,0.06);
}

/* ============================================================
   GALLERY BOXES
   ============================================================ */
.gbox {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.gbox:hover {
  transform: scale(1.015);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* ============================================================
   UNIT SIZE — feature icons
   ============================================================ */
.fi {
  transition: transform 0.35s ease;
}
.fi:hover {
  transform: translateY(-8px);
}
.fi-ic {
  transition: filter 0.3s ease;
}
.fi:hover .fi-ic {
  filter: brightness(1.3);
}
.fi-ic img {
  transition: transform 0.4s ease;
}
.fi:hover .fi-ic img {
  transform: rotate(-6deg) scale(1.1);
}

/* Unit plan cards */
.uc {
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.uc:hover {
 /* box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  transform: translateY(-4px);*/
  transform: rotate(0deg) scale(.9);
}

/* ============================================================
   DOWNLOADS SECTION
   ============================================================ */
.downloads-area {
  transition: box-shadow 0.3s ease;
}
.downloads-area:hover {
  box-shadow: 0 16px 50px rgba(181,131,90,0.35);
}

.dl-link {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.dl-link:hover {
  transform: translateY(-4px) scale(1.04);
}
.dl-link .di img {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.dl-link:hover .di img {
  transform: rotate(0deg) scale(.9);
}

/* ============================================================
   FOOTER LINKS
   ============================================================ */
.footer-nav a {
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-nav a:hover {
  padding-left: 6px;
}

.footer-contact-item {
  transition: color 0.25s ease;
}
.footer-contact-item:hover {
  color: rgba(255,255,255,0.95);
}

/* ============================================================
   TOPBAR sticky transition (enhanced)
   ============================================================ */
.topbar {
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease !important;
}
.topbar.scrolled {
  padding: 5px 9px !important;
}

/* ============================================================
   SNAV sticky animation
   ============================================================ */
@keyframes snavSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.snav {
  animation: snavSlideDown 0.5s 0.2s ease both;
}

/* ============================================================
   FLOATING SCROLL INDICATOR (hero)
   ============================================================ */
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
.scroll-hint {
  position: absolute;
     bottom: 15px;
    right: 32%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: heroFadeUp 1s 1.2s ease both;
}
.scroll-hint span {
  display: block;
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: bounceDown 1.8s ease-in-out infinite;
}
.scroll-hint p {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ============================================================
   GOLD SHIMMER on brand headings
   ============================================================ */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.gradient-text {
  background: linear-gradient(90deg,
    #a17766 0%, #eac0a8 30%, #fff5ee 50%, #eac0a8 70%, #a17766 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 9s linear infinite;
}

/* ============================================================
   PAGE LOADER (optional smooth reveal)
   ============================================================ */
@keyframes fadeInPage {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body {
  animation: fadeInPage 0.6s ease both;
}

/* ============================================================
   MODAL ANIMATION (smoother)
   ============================================================ */
.modal.fade .modal-dialog {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
  transform: scale(0.94) translateY(20px) !important;
}
.modal.show .modal-dialog {
  transform: scale(1) translateY(0) !important;
}

/* ============================================================
   OWL CAROUSEL SMOOTH TRANSITIONS
   ============================================================ */
.owl-carousel .owl-item {
  transition: opacity 0.4s ease !important;
}
.owl-carousel .owl-nav button {
  transition: background 0.3s ease, transform 0.2s ease, border-color 0.3s ease !important;
}
.owl-carousel .owl-nav button:hover {
  transform: scale(1.1) !important;
  border-color: var(--gold) !important;
}

/* ============================================================
   RESPONSIVE TOUCH
   ============================================================ */
@media (max-width: 768px) {
  .sr {
    transform: translateY(24px);
  }
  .sr-left, .sr-right {
    transform: translateY(24px);
  }
  .vbox .pc::before, .vbox .pc::after {
    display: none;
  }
}

/* ============================================================
   WALKTHROUGH + LOCATION TABS
   ============================================================ */
.wl-section {
  padding: 70px 0 60px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.wl-tabs {
      display: inline-flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(181, 131, 90, 0.25);
    border-radius: 60px;
    padding: 5px;
    margin-bottom: 28px;
    backdrop-filter: blur(6px);
    gap: 10px;
}

.wl-tab {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 30px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: rgba(0,0,0,0.5);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.2s ease;
}

.wl-tab:hover:not(.active) {
  color: var(--gold);
  background: rgba(181,131,90,0.08);
}

.wl-tab.active {
      background: linear-gradient(135deg, #a17766 0%, #eac0a8 80%, #e4baa3 50%, #eac0a8 70%, #a17766 100%) !important;
      color: #1a1a1a;
  box-shadow: 0 4px 18px rgba(181,131,90,0.4);
  transform: scale(1.02);
}

.wl-tab-icon { font-size: 1.1rem; }
.wl-tab-label { white-space: nowrap; }

.wl-sub {
  font-size: 0.94rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.25s ease;
}

/* Panels */
.wl-panel {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.wl-panel.active {
  display: block;
  animation: panelReveal 0.45s ease forwards;
}

.wl-panel.exiting {
  animation: panelHide 0.2s ease forwards;
}

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

@keyframes panelHide {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-10px); }
}

/* ============================================================
   AMENITIES SLIDER — IMPACTFUL KEN BURNS
   ============================================================ */

/* Override height for impact */
.am-slider {
  border-radius: 16px !important;
  height: 420px !important;
  overflow: hidden !important;
  position: relative;
}

.am-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 4s ease;
  transform: scale(1.05);
}

/* Ken Burns on active item */
.owl-item.active .am-slider img {
  transform: scale(1.12);
  animation: kenBurns 4s ease forwards;
}

@keyframes kenBurns {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.15) translate(-1%, -1%); }
}

/* Gold gradient overlay on amenities slider */
.am-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30,20,10,0.55) 0%,
    rgba(30,20,10,0.1) 40%,
    transparent 100%
  );
  border-radius: 16px;
  pointer-events: none;
  z-index: 1;
}

/* Slide counter overlay */
.amenities-carousel {
  position: relative;
}

/* Bigger nav buttons for amenities */
.amenities-carousel .owl-nav button.owl-prev,
.amenities-carousel .owl-nav button.owl-next {
  width: 42px !important;
  height: 42px !important;
  background: rgba(181,131,90,0.85) !important;
  border: none !important;
  border-radius: 50% !important;
  color: #fff !important;
  font-size: 1rem !important;
  transition: background 0.3s ease, transform 0.2s ease !important;
}

.amenities-carousel .owl-nav button:hover {
  background: var(--gold) !important;
  transform: scale(1.12) !important;
}

.amenities-carousel .owl-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.amenities-carousel .owl-dot span {
  background: rgba(255,255,255,0.4) !important;
  transition: background 0.3s ease, transform 0.3s ease !important;
}
.amenities-carousel .owl-dot.active span {
  background: var(--gold-light) !important;
  transform: scale(1.4) !important;
}

/* ============================================================
   GALLERY SLIDER — CINEMATIC
   ============================================================ */
#gallery {
  /*background: #0d0d0d !important;*/
     padding: 40px 0 30px;
}

#gallery .sec-h {
      color: var(--text-dark);
  margin-bottom: 32px;
}

.gbox {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 8.7;
  background: #111;
}

.gbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  transform: scale(1.02);
}

/* Zoom on active */
.owl-item.active .gbox img {
  animation: galleryZoom 5s ease forwards;
}

@keyframes galleryZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.08); }
}

/* Dark vignette overlay */
.gbox::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    transparent 40%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
  border-radius: 14px;
  transition: opacity 0.4s ease;
  opacity: 0.6;
}

.gbox:hover::before {
  opacity: 0.2;
}

.gbox:hover img {
  transform: scale(1.06);
}

/* Gold shine on hover */
.gbox::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.07) 50%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
  transition: left 0.7s ease;
}

.gbox:hover::after {
  left: 150%;
}

/* Gallery nav buttons */
.gallery-carousel .owl-nav button.owl-prev,
.gallery-carousel .owl-nav button.owl-next {
  width: 46px !important;
  height: 46px !important;
      background: rgb(189 147 127) !important;
  border: none !important;
  border-radius: 50% !important;
 color: #1b1a1a !important;
  font-size: 1.2rem !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4) !important;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease !important;
}

.gallery-carousel .owl-nav button:hover {
     background: linear-gradient(90deg, #a17766 0%, #eac0a8 30%, #e4baa3 50%, #eac0a8 70%, #a17766 100%) !important;
  transform: scale(1.15) !important;
  box-shadow: 0 6px 24px rgba(181,131,90,0.55) !important;
}

.gallery-carousel .owl-nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Gallery dots */
.gallery-carousel .owl-dots {
  margin-top: 16px;
}
.gallery-carousel .owl-dot span {
  background: rgba(255,255,255,0.2) !important;
  width: 8px !important;
  height: 8px !important;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease !important;
}
.gallery-carousel .owl-dot.active span {
  background: var(--gold) !important;
  width: 24px !important;
  border-radius: 4px !important;
  transform: none !important;
}

/* Side items dim effect */
.gallery-carousel .owl-item:not(.active) .gbox {
  filter: brightness(0.55) scale(0.97);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.gallery-carousel .owl-item.active .gbox {
  filter: brightness(1) scale(1);
  transition: filter 0.5s ease, transform 0.5s ease;
}


/* ============================================================
   AMENITIES SLIDER — LIFTED / UBHAR KE EFFECT + SPACING FIX
   ============================================================ */

/* The slider column — lifted upward */
.sr-staging-padding {
  position: relative !important;
  margin-top: -60px;        /* upar ubharta hai */
  z-index: 2;
  padding-left: 24px !important;
  padding-right: 0 !important;
}

/* Card-style wrapper with shadow = "ubhara hua" feel */
.amenities-carousel {
  border-radius: 20px;
 /* box-shadow:
    0 -8px 32px rgba(0,0,0,0.13),
    0 24px 60px rgba(0,0,0,0.18),
    0 2px 8px rgba(181,131,90,0.10);*/
  overflow: visible !important;  /* nav buttons ko clip mat karo */
  background: transparent;
}

/* am-slider spacing inside */
.am-slider {
  margin: 10 !important;
  border-radius: 18px !important;
  height: 400px !important;
}

/* Nav buttons — position them BELOW the slider, fully clickable */
.amenities-carousel .owl-nav, .gallery-carousel .owl-nav, .floor-carousel .owl-nav, .club-carousel .owl-nav {
      display: flex !important;
    justify-content: space-between;
    gap: 10px;
    /*margin-top: 14px !important;*/
    padding-right: 4px;
    position: absolute;
    z-index: 10 !important;
    transform: translateY(-50%);
    top: 50%;
    left: 4px;
    width: 100%;
}
.amenities-carousel .owl-nav button.owl-prev, .gallery-carousel .owl-nav button.owl-prev, .club-carousel .owl-nav button.owl-prev

 {
    left: 0px;
}
.amenities-carousel .owl-nav button.owl-next, .gallery-carousel .owl-nav button.owl-next, .club-carousel .owl-nav button.owl-next {
    right: 0px;
}

.floor-carousel .owl-nav button.owl-prev

 {
    left: -63px;
}
.floor-carousel .owl-nav button.owl-next {
    right: -63px;
}

.amenities-carousel .owl-nav button.owl-prev,
.amenities-carousel .owl-nav button.owl-next {
  position: relative !important;
  width: 44px !important;
  height: 44px !important;
      background: linear-gradient(135deg, #a17766 0%, #eac0a8 80%, #e4baa3 50%, #eac0a8 70%, #a17766 100%) !important;
  border: none !important;
  border-radius: 50% !important;
      color: #000000 !important;
    font-weight: 600;
  font-size: 1.2rem !important;
  cursor: pointer !important;
  pointer-events: all !important;
  box-shadow: 0 4px 14px rgba(181,131,90,0.4) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.amenities-carousel .owl-nav button.owl-prev:hover,
.amenities-carousel .owl-nav button.owl-next:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 6px 22px rgba(181,131,90,0.6) !important;
}

/* Dots inside slider at bottom */
.amenities-carousel .owl-dots {
  position: absolute !important;
  bottom: 16px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 5 !important;
  pointer-events: all !important;
}

/* Mobile fix */
@media (max-width: 991px) {
  .sr-staging-padding {
    margin-top: 0 !important;
    padding-left: 0 !important;
  }
}


/* ============================================================
   FLOOR PLAN CARDS — IMPACTFUL LUXURY REDESIGN
   ============================================================ */

section.location-floor {
  background: var(--dark-navy);
      padding: 35px 0 49px;
}

.floor-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.floor-main-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 10px;
}

.floor-main-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* ── Card wrapper ── */
.fp-card {
  padding: 12px;
  cursor: pointer;
}

.fp-card-inner {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 8px 30px rgba(0,0,0,0.25),
    0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s cubic-bezier(0.22,1,0.36,1);
}

.fp-card-inner:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.35),
    0 6px 20px rgba(181,131,90,0.2);
}

/* ── BHK Badge ── */
.fp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
 background: linear-gradient(135deg, #a17766 0%, #eac0a8 80%, #e4baa3 50%, #eac0a8 70%, #a17766 100%) !important;
  color: #000000;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 14px;
  border-radius: 30px;
  box-shadow: 0 3px 12px rgba(181,131,90,0.45);
  text-transform: uppercase;
}

.fp-badge--premium {
  background: linear-gradient(135deg, #2d3445, #4a5270);
  box-shadow: 0 3px 12px rgba(45,52,69,0.5);
}

/* ── Floor Plan Image ── */
.fp-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
     background: #ffffff;
    border-bottom: 1px solid #efdbc8;
}

.fp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.5s ease;
}

.fp-card-inner:hover .fp-img-wrap img {
  transform: scale(1.06);
}

/* Image hover overlay */
.fp-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(181,131,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fp-card-inner:hover .fp-img-overlay {
  opacity: 1;
}

.fp-zoom-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.fp-card-inner:hover .fp-zoom-icon {
  transform: scale(1);
}

/* ── Card Body ── */
.fp-body {
  padding: 18px 20px 20px;
  background: #fff;
}

.fp-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.fp-type {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1a1a;
}

.fp-tower {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  background: rgba(181,131,90,0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Gold divider line */
.fp-divider {
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  margin-bottom: 14px;
  border-radius: 2px;
}

/* Specs grid */
.fp-specs {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 18px;
}

.fp-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background: #faf7f4;
  border-radius: 10px;
  padding: 10px 6px;
  border: 1px solid rgba(181,131,90,0.15);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.fp-card-inner:hover .fp-spec {
  background: rgba(181,131,90,0.06);
  border-color: rgba(181,131,90,0.3);
}

.fp-spec-label {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 4px;
  white-space: nowrap;
}

.fp-spec-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.fp-spec-val small {
  font-size: 0.6rem;
  color: #888;
  font-weight: 400;
  margin-left: 1px;
}

/* CTA row */
.fp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 0 2px;
  border-top: 1px solid rgba(181,131,90,0.12);
  transition: gap 0.25s ease, color 0.25s ease;
}

.fp-cta i {
  transition: transform 0.3s ease;
}

.fp-card-inner:hover .fp-cta {
  color: #8a5e38;
  gap: 12px;
}

.fp-card-inner:hover .fp-cta i {
  transform: translateX(4px);
}

/* ── Floor Carousel Nav ── */
.floor-carousel .owl-nav {
  display: flex;
  /*justify-content: center;*/
  gap: 12px;
  /*margin-top: 28px;*/
}

.floor-carousel .owl-nav button.owl-prev,
.floor-carousel .owl-nav button.owl-next {
  width: 48px !important;
  height: 48px !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1.5px solid rgba(181,131,90,0.4) !important;
  border-radius: 50% !important;
  color: rgba(255,255,255,0.8) !important;
  font-size: 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease !important;
      position: relative;
}

.floor-carousel .owl-nav button:hover {
  background: linear-gradient(135deg, #a17766 0%, #eac0a8 80%, #e4baa3 50%, #eac0a8 70%, #a17766 100%) !important;
  border-color: transparent !important;
  transform: scale(1.12) !important;
 color: #121212 !important;
}

.floor-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.floor-carousel .owl-dot span {
  background: rgba(255,255,255,0.2) !important;
  width: 8px !important;
  height: 8px !important;
  transition: background 0.3s ease, width 0.3s ease !important;
  border-radius: 4px !important;
}

.floor-carousel .owl-dot.active span {
  background: var(--gold) !important;
  width: 26px !important;
}

/* ── Side items slightly smaller ── */
.floor-carousel .owl-item:not(.active) .fp-card-inner {
  opacity: 0.7;
  transform: scale(0.97);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.floor-carousel .owl-item.active .fp-card-inner {
  opacity: 1;
  transform: scale(1);
}

/* ── Modal upgrade ── */
.modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}
/*.modal-body {
  padding: 0;
  background: #0d0d0d;
}*/
.modal-body .btn-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  padding: 6px;
  opacity: 1;
}
.modal-body img {
  width: 100%;
  display: block;
  border-radius: 0;
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .fp-img-wrap { height: 180px; }
  .fp-specs { gap: 4px; }
  .fp-spec { padding: 8px 4px; }
  section.location-floor { padding: 50px 0 60px; }
}


/* ================================================================
   FIXED ENQUIRY BUTTON (FAB)
================================================================ */
.enq-fab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;

  /* vertical pill shape */
  flex-direction: column;
  justify-content: center;
}

.enq-fab-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(160deg, #b5835a, #d4a97a);
  border-radius: 10px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: -4px 0 20px rgba(181,131,90,0.35);
  transition: width 0.3s ease;
  flex-shrink: 0;
}

.enq-fab-label {
  writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    background: linear-gradient(180deg, #2d3445, #3c4255);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 10px 9px;
    border-radius: 0 0 0 10px;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.22);
    transition: background 0.3s ease;
    white-space: nowrap;
}

.enq-fab:hover .enq-fab-label {
  background: linear-gradient(135deg, #a17766 0%, #eac0a8 80%, #e4baa3 50%, #eac0a8 70%, #a17766 100%) !important;
      color: #000;
}

.enq-fab:hover .enq-fab-icon {
  background: linear-gradient(135deg, #a17766 0%, #eac0a8 80%, #e4baa3 50%, #eac0a8 70%, #a17766 100%) !important;
}

/* Pulse ring */
.enq-fab-pulse {
    position: absolute;
    top: 50px;
    right: 31px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5a5a;
    border: 2px solid #fff;
    animation: fabPulse 2s ease-in-out infinite;
}

@keyframes fabPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}

/* Entry animation */
@keyframes fabSlideIn {
  from { transform: translateY(-50%) translateX(100%); opacity: 0; }
  to   { transform: translateY(-50%) translateX(0);   opacity: 1; }
}
.enq-fab {
  animation: fabSlideIn 0.7s 1.5s cubic-bezier(0.22,1,0.36,1) both;
}

/* ================================================================
   ENQUIRY MODAL
================================================================ */
.enq-modal-dialog {
  /*max-width: 860px;*/
  margin: 20px auto;
  max-width: 560px;
}

.enq-modal-content {
  border: none !important;
  border-radius: 20px !important;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  /*min-height: 560px;*/
  box-shadow: 0 30px 80px rgba(0,0,0,0.35) !important;
}

/* ── LEFT BRANDING PANEL ── */
.enq-left {
  width: 38%;
  flex-shrink: 0;
  background: url('../images/bg-banner.jfif') center/cover no-repeat;
  position: relative;
  display: flex;
  /*align-items: flex-end;*/
      align-items: center;
}

.enq-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(45,52,69,0.88) 0%,
    rgba(181,131,90,0.72) 100%);
}

.enq-left-body {
  position: relative;
  z-index: 2;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enq-logo {
  width: 120px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 6px;
}

.enq-left-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
}

.enq-left-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.enq-contact-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.enq-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  padding: 6px 12px;
  backdrop-filter: blur(4px);
}

.enq-chip svg { flex-shrink: 0; color: var(--gold-light); }

.enq-rera-tag {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── RIGHT FORM PANEL ── */
.enq-right {
  flex: 1;
  background: #fff;
  padding: 36px 34px 30px;
  position: relative;
  overflow-y: auto;
}

.enq-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  z-index: 5;
}

.enq-close:hover {
  background: #ffeeee;
  color: #c0392b;
  border-color: #ffbbbb;
}

.enq-form-head {
  margin-bottom: 22px;
  padding-right: 30px;
}

.enq-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 5px;
  line-height: 1.25;
}

.enq-form-title span {
  background: linear-gradient(90deg, #b5835a, #d4a97a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.enq-form-sub {
  font-size: 0.82rem;
  color: #888;
}

/* Fields */
.enq-field {
  margin-bottom: 14px;
}

.enq-field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 6px;
}

.enq-field label span {
  color: #e74c3c;
  margin-left: 2px;
}

.enq-optional {
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: #aaa !important;
  font-size: 0.7rem !important;
}

.enq-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.enq-input-wrap > svg:first-child {
  position: absolute;
  left: 13px;
  color: #b5835a;
  pointer-events: none;
  flex-shrink: 0;
}

.enq-input-wrap input,
.enq-textarea-wrap textarea {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1.5px solid #e8e0d6;
  border-radius: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: #1a1a1a;
  background: #faf8f6;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  outline: none;
}

.enq-input-wrap input:focus,
.enq-textarea-wrap textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(181,131,90,0.12);
}

.enq-textarea-wrap {
  align-items: flex-start;
}

.enq-textarea-wrap > svg:first-child {
  top: 12px;
  position: absolute;
  left: 13px;
}

.enq-textarea-wrap textarea {
  resize: none;
  min-height: 66px;
}

/* Select */
.enq-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.enq-select-wrap > svg:first-child {
  position: absolute;
  left: 13px;
  color: #b5835a;
  pointer-events: none;
  z-index: 1;
}

.enq-chevron {
  position: absolute;
  right: 12px;
  color: #999;
  pointer-events: none;
}

.enq-select-wrap select {
  width: 100%;
  padding: 10px 38px 10px 38px;
  border: 1.5px solid #e8e0d6;
  border-radius: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: #1a1a1a;
  background: #faf8f6;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.enq-select-wrap select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181,131,90,0.12);
}

/* Error */
.enq-err {
  display: none;
  font-size: 0.72rem;
  color: #e74c3c;
  margin-top: 4px;
  padding-left: 4px;
}

/* Submit button */
.enq-submit {
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #b5835a, #d4a97a);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  box-shadow: 0 6px 20px rgba(181,131,90,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.enq-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.enq-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(181,131,90,0.5);
}

.enq-submit:hover::before { opacity: 1; }

.enq-submit:active { transform: translateY(0); }

.enq-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.enq-submit-icon svg {
  transition: transform 0.3s ease;
}

.enq-submit:hover .enq-submit-icon svg {
  transform: translateX(3px) translateY(-2px);
}

/* ── Success state ── */
.enq-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 300px;
  gap: 14px;
  animation: successPop 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes successPop {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

.enq-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(181,131,90,0.12), rgba(212,169,122,0.18));
  border: 2px solid rgba(181,131,90,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.enq-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #1a1a1a;
  font-weight: 400;
}

.enq-success p {
  font-size: 0.88rem;
  color: #777;
  max-width: 260px;
  line-height: 1.6;
}

/* ── Modal animation ── */
#enquiryModal .modal-dialog {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1) !important;
  transform: scale(0.93) translateY(30px) !important;
}

#enquiryModal.show .modal-dialog {
  transform: scale(1) translateY(0) !important;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .enq-modal-content {
    flex-direction: column;
    min-height: auto;
    border-radius: 16px !important;
  }
  .enq-left {
    width: 100%;
    min-height: 160px;
  }
  .enq-left-body {
    padding: 22px 22px;
    gap: 8px;
  }
  .enq-left-title { font-size: 1.2rem; }
  .enq-logo { width: 90px; }
  .enq-contact-chips { display: none; }
  .enq-right { padding: 24px 20px 22px; }
  .enq-form-title { font-size: 1.3rem; }
  .enq-modal-dialog { margin: 10px; max-width: calc(100% - 20px); }

  /* FAB smaller on mobile */
  .enq-fab-icon { width: 42px; height: 42px; }
  .enq-fab-label {         font-size: 0.51rem;
        padding: 9px 6px; }
        .enq-fab-pulse {
   
    top: 40px;
    right: 24px;
    width: 6px;
    height: 6px;
   
}
.enq-fab {
   
    top: 33%;
  }
}

@media(max-width: 767px){
  .fp-card {
    padding: 4px;
    
}
.floor-carousel .owl-nav button.owl-prev

 {
    left: 0px;
}
.floor-carousel .owl-nav button.owl-next {
    right: 0px;
}
}
/* ================================================================
   FLOOR CARD — UPDATED SPEC LAYOUT (sq.m / sq.ft dual row)
================================================================ */

/* Each spec tile stacks: label → sq.m val → slash → sq.ft val */
.fp-spec {
  flex-direction: column !important;
  align-items: center !important;
  gap: 2px !important;
  padding: 10px 5px !important;
}

.fp-spec-slash {
  font-size: 0.6rem;
  color: #ccc;
  line-height: 1;
}

.fp-spec-val {
  font-size: 0.82rem !important;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  white-space: nowrap;
}

.fp-spec-val small {
  font-size: 0.55rem !important;
  color: #999;
  font-weight: 400;
}

.fp-spec-val2 {
 
      font-size: 0.82rem !important;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    white-space: nowrap;
}

.fp-spec-val2 small {
  font-size: 0.55rem;
  color: #aaa;
  font-weight: 400;
}

/* Sub-label for 4BHK extra info */
.fp-sub-label {
     font-size: 0.99rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
    text-align: center;
  line-height: 1.4;
}

/* Restore fp-cta display */
.fp-cta {
  display: flex !important;
}

/* ================================================================
   CLUBHOUSE CAROUSEL — STYLING
================================================================ */
#clubhouse .col-lg-5 {
  position: relative;
}

.club-carousel .owl-item img {
  width: 100%;
  /*height: 420px;*/
  object-fit: cover;
  /*border-top-right-radius: 70px;
  border-bottom-left-radius: 70px;*/
  display: block;
}

/* Ken Burns on active */
.club-carousel .owl-item.active img {
  animation: kenBurnsClub 5s ease forwards;
}

@keyframes kenBurnsClub {
  from { transform: scale(1.03); }
  to   { transform: scale(1.08); }
}

.club-carousel {
     /*border-radius: 20px;*/
  overflow: hidden;
  /*box-shadow: 0 20px 55px rgba(0,0,0,0.18);*/
}

/* Nav buttons for clubhouse */
/*.club-carousel .owl-nav {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: flex;
  gap: 8px;
  z-index: 5;
}*/

.club-carousel .owl-nav button.owl-prev,
.club-carousel .owl-nav button.owl-next {
  width: 38px !important;
  height: 38px !important;
  background: rgba(255,255,255,0.85) !important;
  border: none !important;
  border-radius: 50% !important;
      color: #000000 !important;
  font-size: 1.2rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
  transition: background 0.25s ease, transform 0.2s ease !important;
}

.club-carousel .owl-nav button:hover {
      background: linear-gradient(90deg, #a17766 0%, #eac0a8 30%, #e4baa3 50%, #eac0a8 70%, #a17766 100%) !important;
     color: #121212 !important;
  transform: scale(1.1) !important;
}

/* Dots */
.club-carousel .owl-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 6px;
}

.club-carousel .owl-dot span {
  background: rgba(255,255,255,0.45) !important;
  width: 7px !important;
  height: 7px !important;
  transition: background 0.3s ease, width 0.3s ease !important;
  border-radius: 4px !important;
}

.club-carousel .owl-dot.active span {
  background: #fff !important;
  width: 20px !important;
}

