/*
 Theme Name:   Serenity Living Child
 Theme URI:    https://serenity-living.co.in
 Description:  Child theme for Hello Elementor - Serenity Living Girls' Luxurious PG
 Author:       Serenity Living
 Author URI:   https://serenity-living.co.in
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  serenity-living-child
*/

/* ============================================
   SERENITY LIVING — GLOBAL DESIGN SYSTEM
   ============================================ */

:root {
  /* ── Brand Colors (from logo) ── */
  --sl-rose-gold:       #B8795E;
  --sl-rose-gold-light: #D4A088;
  --sl-rose-gold-dark:  #8B5A3C;
  --sl-bronze:          #A0694F;
  --sl-copper:          #C4876D;

  /* ── Backgrounds ── */
  --sl-bg-cream:        #FDF5F0;
  --sl-bg-warm-white:   #FFFAF7;
  --sl-bg-light:        #F9F1EB;
  --sl-bg-dark:         #1A1A1A;
  --sl-bg-dark-alt:     #2D2220;

  /* ── Text ── */
  --sl-text-dark:       #2D2D2D;
  --sl-text-body:       #555555;
  --sl-text-light:      #7A7A7A;
  --sl-text-white:      #FFFFFF;
  --sl-text-cream:      #FDF5F0;

  /* ── Gradients ── */
  --sl-gradient-gold:   linear-gradient(135deg, #B8795E 0%, #D4A088 50%, #C4876D 100%);
  --sl-gradient-hero:   linear-gradient(135deg, rgba(184,121,94,0.85) 0%, rgba(139,90,60,0.9) 100%);
  --sl-gradient-dark:   linear-gradient(135deg, #1A1A1A 0%, #2D2220 100%);
  --sl-gradient-cream:  linear-gradient(180deg, #FDF5F0 0%, #FFFAF7 100%);

  /* ── Shadows ── */
  --sl-shadow-sm:       0 2px 8px rgba(184,121,94,0.08);
  --sl-shadow-md:       0 4px 20px rgba(184,121,94,0.12);
  --sl-shadow-lg:       0 8px 40px rgba(184,121,94,0.16);
  --sl-shadow-xl:       0 16px 60px rgba(184,121,94,0.20);

  /* ── Borders ── */
  --sl-border-light:    1px solid rgba(184,121,94,0.15);
  --sl-border-gold:     1px solid rgba(184,121,94,0.3);
  --sl-radius-sm:       8px;
  --sl-radius-md:       12px;
  --sl-radius-lg:       20px;
  --sl-radius-xl:       30px;
  --sl-radius-full:     50%;

  /* ── Spacing ── */
  --sl-section-py:      100px;
  --sl-section-py-sm:   60px;

  /* ── Transitions ── */
  --sl-transition:      all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --sl-transition-fast: all 0.2s ease;
  --sl-transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* ============================================
   GLOBAL RESETS & BASE
   ============================================ */
body {
  font-family: 'Inter', sans-serif !important;
  color: var(--sl-text-dark);
  background-color: var(--sl-bg-warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif !important;
  color: var(--sl-text-dark);
  line-height: 1.3;
}

p {
  font-family: 'Inter', sans-serif;
  color: var(--sl-text-body);
  line-height: 1.8;
  font-size: 16px;
}

a {
  transition: var(--sl-transition-fast);
}

/* ============================================
   SCROLL ANIMATIONS (AOS-like via CSS)
   ============================================ */
.sl-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.sl-fade-in.sl-visible {
  opacity: 1;
  transform: translateY(0);
}

.sl-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.sl-fade-left.sl-visible {
  opacity: 1;
  transform: translateX(0);
}

.sl-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.sl-fade-right.sl-visible {
  opacity: 1;
  transform: translateX(0);
}

.sl-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sl-scale-in.sl-visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   PREMIUM BUTTON STYLES
   ============================================ */
.sl-btn-primary {
  background: var(--sl-gradient-gold) !important;
  color: var(--sl-text-white) !important;
  border: none !important;
  padding: 15px 40px !important;
  border-radius: var(--sl-radius-xl) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  position: relative;
  overflow: hidden;
  transition: var(--sl-transition) !important;
  box-shadow: 0 4px 15px rgba(184,121,94,0.3) !important;
}

.sl-btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(184,121,94,0.4) !important;
}

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

.sl-btn-primary:hover::after {
  left: 100%;
}

.sl-btn-outline {
  background: transparent !important;
  color: var(--sl-rose-gold) !important;
  border: 2px solid var(--sl-rose-gold) !important;
  padding: 13px 38px !important;
  border-radius: var(--sl-radius-xl) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  transition: var(--sl-transition) !important;
}

.sl-btn-outline:hover {
  background: var(--sl-rose-gold) !important;
  color: var(--sl-text-white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(184,121,94,0.3) !important;
}

/* ============================================
   CORPORATE-GRADE HERO BANNER SYSTEM
   ============================================ */

/* Hero Title Polish */
[id^="banner_"] h1.elementor-heading-title,
.sl-hero-title {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45) !important;
  letter-spacing: -0.5px !important;
  font-family: 'Playfair Display', serif !important;
}

/* Hero Badge Container (Flex Column for Breadcrumb + Subtitle) */
.sl-hero-badge-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  margin-top: 16px !important;
  width: 100% !important;
}

/* Modern Glassmorphic Breadcrumb Pill */
.sl-hero-breadcrumb-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.08) 100%) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  border-radius: 50px !important;
  padding: 6px 20px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.sl-hero-breadcrumb-pill:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.14) 100%) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

/* Home Link & Icon */
.sl-bc-home {
  color: rgba(255, 255, 255, 0.82) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.25s ease !important;
}

.sl-bc-home:hover {
  color: #FFFFFF !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6) !important;
}

.sl-bc-icon {
  width: 14px !important;
  height: 14px !important;
  stroke: currentColor !important;
  flex-shrink: 0 !important;
}

/* Breadcrumb Separator */
.sl-bc-sep {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 14px !important;
  margin: 0 2px !important;
  user-select: none !important;
}

/* Active Page Label in Breadcrumb */
.sl-bc-active {
  color: #FFFFFF !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.4px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* Subtitle Text Below Breadcrumb Pill */
.sl-hero-subtext {
  color: rgba(255, 255, 255, 0.92) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px !important;
  line-height: 1.6 !important;
  max-width: 620px !important;
  text-align: center !important;
  margin: 0 auto !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35) !important;
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 991px) {
  .sl-hero-subtext {
    font-size: 14px !important;
    max-width: 500px !important;
  }
  .sl-hero-breadcrumb-pill {
    padding: 5px 18px !important;
  }
}

@media (max-width: 767px) {
  .sl-hero-badge-container {
    gap: 10px !important;
    margin-top: 12px !important;
  }
  .sl-hero-subtext {
    font-size: 13px !important;
    max-width: 90% !important;
    line-height: 1.5 !important;
  }
  .sl-hero-breadcrumb-pill {
    padding: 4px 14px !important;
    gap: 5px !important;
  }
  .sl-bc-home, .sl-bc-active {
    font-size: 12px !important;
  }
  .sl-bc-icon {
    width: 12px !important;
    height: 12px !important;
  }
}

@media (max-width: 480px) {
  .sl-hero-subtext {
    font-size: 12px !important;
  }
  .sl-bc-home, .sl-bc-active {
    font-size: 11px !important;
  }
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.sl-section-subtitle {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--sl-rose-gold) !important;
  margin-bottom: 10px !important;
  display: inline-block;
  position: relative;
  padding-left: 50px;
}

.sl-section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 2px;
  background: var(--sl-gradient-gold);
  transform: translateY(-50%);
}

.sl-section-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  color: var(--sl-text-dark) !important;
  line-height: 1.25 !important;
  margin-bottom: 20px !important;
}

.sl-section-title span,
.sl-section-title em {
  color: var(--sl-rose-gold) !important;
  font-style: normal;
}

.sl-section-desc {
  font-size: 17px !important;
  color: var(--sl-text-light) !important;
  max-width: 650px;
  line-height: 1.8 !important;
}

/* ============================================
   PREMIUM CARDS (3D Tilt)
   ============================================ */
.sl-card {
  background: var(--sl-bg-warm-white);
  border-radius: var(--sl-radius-md);
  padding: 40px 30px;
  text-align: center;
  border: var(--sl-border-light);
  transition: var(--sl-transition);
  position: relative;
  overflow: hidden;
}

.sl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sl-gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.sl-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sl-shadow-lg);
}

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

/* Corporate Amenity Cards Styling & Responsive Rules */
[class*="c1_item"],
[class*="c2_item"],
.sl-amenity-card {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  background: var(--sl-bg-warm-white) !important;
  border: 1px solid rgba(184, 121, 94, 0.15) !important;
  box-shadow: 0 4px 15px rgba(184, 121, 94, 0.05) !important;
}

[class*="c1_item"]::before,
[class*="c2_item"]::before,
.sl-amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sl-gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

[class*="c1_item"]:hover,
[class*="c2_item"]:hover,
.sl-amenity-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 30px rgba(184, 121, 94, 0.18) !important;
  border-color: rgba(184, 121, 94, 0.3) !important;
}

[class*="c1_item"]:hover::before,
[class*="c2_item"]:hover::before,
.sl-amenity-card:hover::before {
  transform: scaleX(1);
}

/* Responsive Grid for Amenity Cards */
@media (max-width: 991px) {
  [class*="c1_item"],
  [class*="c2_item"],
  .sl-amenity-card {
    width: 47% !important;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 767px) {
  [class*="c1_item"],
  [class*="c2_item"],
  .sl-amenity-card {
    width: 100% !important;
    margin-bottom: 18px !important;
  }
}

.sl-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--sl-bg-cream);
  border-radius: var(--sl-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--sl-transition);
}

.sl-card:hover .sl-card-icon {
  background: var(--sl-gradient-gold);
  transform: rotateY(180deg);
}

.sl-card:hover .sl-card-icon svg,
.sl-card:hover .sl-card-icon i {
  color: white !important;
}

/* ============================================
   GLASSMORPHISM EFFECTS
   ============================================ */
.sl-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--sl-radius-md);
}

.sl-glass-dark {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--sl-radius-md);
}

/* ============================================
   COUNTER / STATS SECTION
   ============================================ */
.sl-stat-item {
  text-align: center;
  padding: 30px 20px;
}

.sl-stat-number {
  font-family: 'Playfair Display', serif !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  color: var(--sl-rose-gold) !important;
  line-height: 1 !important;
}

.sl-stat-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--sl-text-light) !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  margin-top: 10px !important;
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.sl-testimonial {
  background: var(--sl-bg-warm-white);
  border-radius: var(--sl-radius-md);
  padding: 40px;
  position: relative;
  border: var(--sl-border-light);
  transition: var(--sl-transition);
}

.sl-testimonial::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--sl-rose-gold-light);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 25px;
  line-height: 1;
}

.sl-testimonial:hover {
  box-shadow: var(--sl-shadow-md);
  transform: translateY(-5px);
}

/* ============================================
   WPFORMS CUSTOM STYLING
   ============================================ */
.wpforms-container .wpforms-form {
  max-width: 100%;
}

.wpforms-container .wpforms-field input[type="text"],
.wpforms-container .wpforms-field input[type="email"],
.wpforms-container .wpforms-field input[type="tel"],
.wpforms-container .wpforms-field input[type="number"],
.wpforms-container .wpforms-field input[type="url"],
.wpforms-container .wpforms-field textarea,
.wpforms-container .wpforms-field select {
  border: 2px solid rgba(184,121,94,0.15) !important;
  border-radius: var(--sl-radius-sm) !important;
  padding: 14px 18px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  color: var(--sl-text-dark) !important;
  background: var(--sl-bg-warm-white) !important;
  transition: var(--sl-transition) !important;
  width: 100% !important;
  height: auto !important;
}

.wpforms-container .wpforms-field input:focus,
.wpforms-container .wpforms-field textarea:focus,
.wpforms-container .wpforms-field select:focus {
  border-color: var(--sl-rose-gold) !important;
  box-shadow: 0 0 0 4px rgba(184,121,94,0.1) !important;
  outline: none !important;
}

.wpforms-container .wpforms-field-label {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: var(--sl-text-dark) !important;
  margin-bottom: 8px !important;
}

.wpforms-container button[type="submit"],
.wpforms-container .wpforms-submit {
  background: var(--sl-gradient-gold) !important;
  color: white !important;
  border: none !important;
  padding: 16px 45px !important;
  border-radius: var(--sl-radius-xl) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: var(--sl-transition) !important;
  box-shadow: 0 4px 15px rgba(184,121,94,0.3) !important;
}

.wpforms-container button[type="submit"]:hover,
.wpforms-container .wpforms-submit:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(184,121,94,0.4) !important;
}

/* ============================================
   FAQ / ACCORDION
   ============================================ */
.sl-faq .elementor-accordion-item {
  border: var(--sl-border-light) !important;
  border-radius: var(--sl-radius-sm) !important;
  margin-bottom: 12px !important;
  overflow: hidden;
  transition: var(--sl-transition);
}

.sl-faq .elementor-accordion-item:hover {
  box-shadow: var(--sl-shadow-sm);
}

.sl-faq .elementor-tab-title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  color: var(--sl-text-dark) !important;
  padding: 20px 25px !important;
  background: var(--sl-bg-warm-white) !important;
}

.sl-faq .elementor-tab-title.elementor-active {
  background: var(--sl-bg-cream) !important;
  color: var(--sl-rose-gold) !important;
}

.sl-faq .elementor-tab-content {
  padding: 20px 25px !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: var(--sl-text-body) !important;
}

/* ============================================
   HEADER & TOP BAR STYLES
   /* Ensure the header section is in normal flow unless Elementor's sticky state is active */
header.elementor-location-header,
header.elementor-location-header .elementor-section:not(.elementor-sticky--active),
header.elementor-location-header .e-con:not(.elementor-sticky--active) {
  position: relative !important;
}

header.elementor-location-header .elementor-sticky--active {
  position: fixed !important;
}

/* Ensure no negative margins on the homepage first section pulls it behind the header */
.home [data-elementor-type="wp-page"] .elementor-section:first-of-type,
.home [data-elementor-type="wp-page"] .e-con:first-of-type {
  margin-top: 0 !important;
}


/* Restyled inner navbar container */
.sl-header-nav {
  background: #FDF9F4 !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05) !important;
  transition: var(--sl-transition) !important;
}

/* Elegant responsive top bar */
.sl-top-bar {
  background: var(--sl-gradient-dark) !important;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease !important;
  overflow: hidden;
}


/* Stylings for topbar elements */
.sl-top-bar .elementor-icon-list-items {
  display: flex !important;
  gap: 20px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sl-top-bar .elementor-icon-list-item {
  display: inline-flex !important;
  align-items: center !important;
}

.sl-top-bar .elementor-icon-list-icon {
  margin-right: 6px !important;
  color: var(--sl-rose-gold-light) !important;
  display: inline-flex !important;
  align-items: center !important;
}

.sl-top-bar .elementor-icon-list-text {
  color: var(--sl-bg-warm-white) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}

.sl-top-bar .elementor-icon-list-item a {
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
}

.sl-top-bar .elementor-icon-list-item a:hover .elementor-icon-list-text {
  color: var(--sl-rose-gold-light) !important;
}

/* Typography spacing fix for top bar */
.sl-top-bar span {
  display: inline-block;
  line-height: 1;
}

.sl-header .elementor-nav-menu a {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0.5px !important;
  color: var(--sl-text-dark) !important;
  text-transform: uppercase !important;
  position: relative;
  transition: var(--sl-transition-fast) !important;
}

.sl-header .elementor-nav-menu a:hover,
.sl-header .elementor-nav-menu a.elementor-item-active {
  color: var(--sl-rose-gold) !important;
}

.sl-header .elementor-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sl-gradient-gold);
  transition: width 0.3s ease;
}

.sl-header .elementor-nav-menu a:hover::after {
  width: 100%;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.sl-footer {
  background: var(--sl-gradient-dark) !important;
}

.sl-footer h3,
.sl-footer h4,
.sl-footer .elementor-heading-title {
  color: var(--sl-rose-gold-light) !important;
  font-family: 'Playfair Display', serif !important;
}

.sl-footer p,
.sl-footer .elementor-text-editor {
  color: rgba(255,255,255,0.7) !important;
}

.sl-footer a {
  color: rgba(255,255,255,0.7) !important;
  transition: var(--sl-transition-fast) !important;
}

.sl-footer a:hover {
  color: var(--sl-rose-gold-light) !important;
  padding-left: 5px !important;
}

.sl-footer .elementor-social-icon {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  transition: var(--sl-transition) !important;
}

.sl-footer .elementor-social-icon:hover {
  background: var(--sl-rose-gold) !important;
  border-color: var(--sl-rose-gold) !important;
  transform: translateY(-3px) !important;
}

/* ============================================
   GALLERY STYLES
   ============================================ */
.sl-gallery .elementor-image {
  overflow: hidden;
  border-radius: var(--sl-radius-sm);
}

.sl-gallery .elementor-image img {
  transition: transform 0.6s ease !important;
}

.sl-gallery .elementor-image:hover img {
  transform: scale(1.08) !important;
}

/* ============================================
   FLOATING DECORATIVE ELEMENTS
   ============================================ */
@keyframes sl-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes sl-pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(184,121,94,0.2); }
  50% { box-shadow: 0 0 40px rgba(184,121,94,0.4); }
}

@keyframes sl-rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sl-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.sl-float {
  animation: sl-float 4s ease-in-out infinite;
}

.sl-pulse {
  animation: sl-pulse-glow 3s ease-in-out infinite;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.sl-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--sl-gradient-gold);
  color: white;
  border: none;
  border-radius: var(--sl-radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--sl-transition);
  box-shadow: var(--sl-shadow-md);
  z-index: 9999;
}

.sl-scroll-top.sl-show {
  opacity: 1;
  visibility: visible;
}

.sl-scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--sl-shadow-lg);
}

/* ============================================
   RESPONSIVE TYPOGRAPHY & HERO SCALING
   ============================================ */
@media (max-width: 991px) {
  :root {
    --sl-section-py: 70px;
  }
  .sl-section-title {
    font-size: 34px !important;
  }
  .sl-stat-number {
    font-size: 38px !important;
  }
  [id^="banner_"] h1.elementor-heading-title,
  .sl-hero-title {
    font-size: 38px !important;
  }
  .elementor-element-bs_5525,
  .elementor-element-bs_6107,
  .elementor-element-bs_1701,
  .elementor-element-bs_2901,
  .sl-hero-badge {
    font-size: 14px !important;
    padding: 8px 22px !important;
    margin-top: 14px !important;
  }
}

@media (max-width: 767px) {
  :root {
    --sl-section-py: 50px;
  }
  .sl-section-title {
    font-size: 28px !important;
  }
  .sl-section-subtitle {
    font-size: 11px !important;
    letter-spacing: 2px !important;
  }
  .sl-stat-number {
    font-size: 32px !important;
  }
  .sl-btn-primary,
  .sl-btn-outline {
    padding: 12px 28px !important;
    font-size: 13px !important;
  }
  [id^="banner_"] h1.elementor-heading-title,
  .sl-hero-title {
    font-size: 30px !important;
    line-height: 1.25 !important;
  }
  .elementor-element-bs_5525,
  .elementor-element-bs_6107,
  .elementor-element-bs_1701,
  .elementor-element-bs_2901,
  .sl-hero-badge {
    font-size: 13px !important;
    padding: 8px 18px !important;
    margin-top: 12px !important;
    max-width: 92% !important;
    letter-spacing: 0.3px !important;
    display: inline-block !important;
  }
  .elementor-element-bs_5525 .elementor-heading-title,
  .elementor-element-bs_6107 .elementor-heading-title,
  .elementor-element-bs_1701 .elementor-heading-title,
  .elementor-element-bs_2901 .elementor-heading-title {
    font-size: 13px !important;
    line-height: 1.4 !important;
    white-space: normal !important;
  }
}

@media (max-width: 480px) {
  .sl-section-title {
    font-size: 24px !important;
  }
  .sl-card {
    padding: 25px 20px;
  }
  [id^="banner_"] h1.elementor-heading-title,
  .sl-hero-title {
    font-size: 26px !important;
  }
  .elementor-element-bs_5525,
  .elementor-element-bs_6107,
  .elementor-element-bs_1701,
  .elementor-element-bs_2901,
  .sl-hero-badge {
    font-size: 12px !important;
    padding: 6px 14px !important;
  }
}

/* ============================================
   WAVE DIVIDER SVG SUPPORT
   ============================================ */
.sl-wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.sl-wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.sl-wave-divider .shape-fill {
  fill: var(--sl-bg-warm-white);
}

/* ============================================
   LOADING / PAGE TRANSITION
   ============================================ */
.sl-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--sl-bg-warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.sl-page-loader.sl-loaded {
  opacity: 0;
  visibility: hidden;
}

.sl-loader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid var(--sl-bg-cream);
  border-top-color: var(--sl-rose-gold);
  border-radius: 50%;
  animation: sl-rotate-slow 1s linear infinite;
}

/* ============================================
   CUSTOM LIGHTBOX GALLERY
   ============================================ */

.sl-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(8px);
}

.sl-lightbox-overlay.sl-lightbox-active {
  opacity: 1;
  visibility: visible;
}

.sl-lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

.sl-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.sl-lightbox-close::before,
.sl-lightbox-close::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.sl-lightbox-close::before { transform: rotate(45deg); }
.sl-lightbox-close::after  { transform: rotate(-45deg); }

.sl-lightbox-image-wrap {
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-lightbox-image-wrap img {
  max-width: 85vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.sl-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.sl-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.sl-lightbox-prev { left: 20px; }
.sl-lightbox-next { right: 20px; }

.sl-lightbox-nav::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.sl-lightbox-prev::after {
  transform: rotate(135deg);
  margin-left: 4px;
}

.sl-lightbox-next::after {
  transform: rotate(-45deg);
  margin-right: 4px;
}

.sl-lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
}

/* Mobile lightbox adjustments */
@media (max-width: 767px) {
  .sl-lightbox-image-wrap {
    max-width: 95vw;
    max-height: 80vh;
  }
  .sl-lightbox-image-wrap img {
    max-width: 95vw;
    max-height: 78vh;
  }
  .sl-lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .sl-lightbox-prev { left: 8px; }
  .sl-lightbox-next { right: 8px; }
  .sl-lightbox-close {
    top: 12px;
    right: 12px;
  }
}

/* ================================================================
   HERO SECTION — ULTRA-PROFESSIONAL LUXURY OVERLAY BUTTONS
   Background: Serinity_Living.jpg (1981 x 794)
   Buttons placed at bottom: 9.5% (cleanly below icon labels)
   ================================================================ */

/* Hero Container: aspect-ratio + relative for absolute children */
.elementor-element-hero_main_20 {
  width: 100% !important;
  aspect-ratio: 1981 / 794 !important;
  position: relative !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  overflow: visible !important;
}

/* --- Buttons Container: Absolute, pinned below icon labels --- */
.sl-hero-btns-wrap,
.elementor-element-hero_btns_20 {
  position: absolute !important;
  bottom: 9.5% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 16px !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 10 !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
}

/* ---- Button 1: Luxury Solid Terracotta Pill (Book Your Stay) ---- */
.sl-hero-btn-primary .elementor-button,
.elementor-element-hero_btn1_20 .elementor-button {
  background: linear-gradient(135deg, #A45837 0%, #7E3E22 100%) !important;
  color: #FFFFFF !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.6px !important;
  padding: 12px 32px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow:
    0 8px 22px rgba(126, 62, 34, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  min-width: 175px !important;
  text-align: center !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.sl-hero-btn-primary .elementor-button:hover,
.elementor-element-hero_btn1_20 .elementor-button:hover {
  background: linear-gradient(135deg, #B56542 0%, #8D4729 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(126, 62, 34, 0.45) !important;
}

/* ---- Button 2: Luxury Cream/Glass Pill with Terracotta Accent (Explore Amenities) ---- */
.sl-hero-btn-outline .elementor-button,
.elementor-element-hero_btn2_20 .elementor-button {
  background: rgba(255, 253, 248, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  color: #7E3E22 !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.6px !important;
  padding: 12px 32px !important;
  border-radius: 50px !important;
  border: 1.5px solid #A45837 !important;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  min-width: 175px !important;
  text-align: center !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.sl-hero-btn-outline .elementor-button:hover,
.elementor-element-hero_btn2_20 .elementor-button:hover {
  background: #7E3E22 !important;
  color: #FFFFFF !important;
  border-color: #7E3E22 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(126, 62, 34, 0.35) !important;
}

/* ================================================================
   RESPONSIVE MEDIA QUERIES
   ================================================================ */

/* ---- Tablet Landscape / Small Laptop (992px - 1200px) ---- */
@media (max-width: 1200px) and (min-width: 992px) {
  .sl-hero-btns-wrap,
  .elementor-element-hero_btns_20 {
    bottom: 8% !important;
    gap: 14px !important;
  }
  .sl-hero-btn-primary .elementor-button,
  .sl-hero-btn-outline .elementor-button,
  .elementor-element-hero_btn1_20 .elementor-button,
  .elementor-element-hero_btn2_20 .elementor-button {
    padding: 11px 26px !important;
    font-size: 13.5px !important;
    min-width: 160px !important;
  }
}

/* ---- Tablet Portrait (768px - 991px) ---- */
@media (max-width: 991px) and (min-width: 768px) {
  .elementor-element-hero_main_20 {
    aspect-ratio: 1981 / 850 !important;
  }
  .sl-hero-btns-wrap,
  .elementor-element-hero_btns_20 {
    bottom: 5.5% !important;
    gap: 12px !important;
  }
  .sl-hero-btn-primary .elementor-button,
  .sl-hero-btn-outline .elementor-button,
  .elementor-element-hero_btn1_20 .elementor-button,
  .elementor-element-hero_btn2_20 .elementor-button {
    padding: 10px 22px !important;
    font-size: 13px !important;
    min-width: 150px !important;
  }
}

/* ---- Mobile Devices (<=767px) ---- */
@media (max-width: 767px) {
  .elementor-element-hero_main_20 {
    aspect-ratio: 1981 / 1050 !important;
    min-height: 400px !important;
  }
  .sl-hero-btns-wrap,
  .elementor-element-hero_btns_20 {
    bottom: 2% !important;
    flex-direction: column !important;
    gap: 8px !important;
  }
  .sl-hero-btn-primary .elementor-button,
  .sl-hero-btn-outline .elementor-button,
  .elementor-element-hero_btn1_20 .elementor-button,
  .elementor-element-hero_btn2_20 .elementor-button {
    font-size: 12.5px !important;
    padding: 10px 24px !important;
    min-width: 180px !important;
  }
}

/* ---- Small Mobile Devices (<=480px) ---- */
@media (max-width: 480px) {
  .elementor-element-hero_main_20 {
    aspect-ratio: 1981 / 1150 !important;
    min-height: 380px !important;
  }
  .sl-hero-btns-wrap,
  .elementor-element-hero_btns_20 {
    bottom: 1% !important;
    gap: 6px !important;
  }
  .sl-hero-btn-primary .elementor-button,
  .sl-hero-btn-outline .elementor-button,
  .elementor-element-hero_btn1_20 .elementor-button,
  .elementor-element-hero_btn2_20 .elementor-button {
    font-size: 12px !important;
    padding: 9px 20px !important;
    min-width: 170px !important;
  }
}








/* Ensure logo and header background match seamlessly when sticky */
.elementor-sticky--active .sl-header-nav,
.elementor-sticky--active.sl-header-nav,
header.elementor-location-header .elementor-sticky--active {
  background-color: #FDF9F4 !important;
}
