/*
 * Sajina's Bridal Salon - Premium Stylesheet
 * Brand Theme: Rose Gold, Soft Beige, Warm Gold, Luxury Black, Light Pink
 * Typography: Playfair Display (Serif headings) & Poppins (Sans-serif body)
 */

/* ==========================================
   1. CORE DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  --primary-rose-gold: #B76E79;
  --primary-rose-gold-light: #C98C94;
  --primary-rose-gold-dark: #96535D;
  --primary-rose-gold-rgb: 183, 110, 121;
  
  --accent-gold: #D4AF37;
  --accent-gold-light: #E5C158;
  --accent-gold-dark: #A48220;
  
  --soft-beige: #F9F6F0;
  --soft-beige-dark: #F0EAE1;
  --light-pink: #FFF0F5;
  --pure-white: #FFFFFF;
  
  --luxury-black: #111111;
  --luxury-dark-gray: #1E1E1E;
  --luxury-light-gray: #7A7A7A;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-fast: all 0.2s ease;
  
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 45px rgba(183, 110, 121, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(183, 110, 121, 0.15);
}

/* ==========================================
   2. RESET & BASICS
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--soft-beige);
  color: var(--luxury-black);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.5px;
}

a {
  color: var(--primary-rose-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}
a:hover {
  color: var(--accent-gold);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--soft-beige-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-rose-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-rose-gold-dark);
}

/* Selection Color */
::selection {
  background-color: rgba(183, 110, 121, 0.3);
  color: var(--luxury-black);
}

/* ==========================================
   3. ANIMATIONS & REVEALS
   ========================================== */
@keyframes spin-gold {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
}

@keyframes pulse-rose {
  0%, 100% { box-shadow: 0 0 0 0 rgba(183, 110, 121, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(183, 110, 121, 0); }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   4. LAYOUT COMPONENTS & UTILITIES
   ========================================== */
section[id] {
  scroll-margin-top: 115px;
}
@media (max-width: 991.98px) {
  section[id] {
    scroll-margin-top: 95px;
  }
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-rose-gold), var(--accent-gold));
  z-index: 1050;
  transition: width 0.1s ease-out;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--luxury-black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-logo {
  font-family: var(--font-serif);
  color: var(--accent-gold);
  font-size: 3.5rem;
  letter-spacing: 5px;
  margin-bottom: 20px;
  position: relative;
}

.preloader-circle {
  width: 100px;
  height: 100px;
  border: 2px solid transparent;
  border-top-color: var(--primary-rose-gold);
  border-bottom-color: var(--accent-gold);
  border-radius: 50%;
  position: absolute;
  top: -15px;
  left: -15px;
  animation: spin-gold 2s linear infinite;
}

.preloader-subtext {
  font-family: var(--font-sans);
  color: var(--soft-beige);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Section Header Custom Styles */
.section-title-wrapper {
  margin-bottom: 60px;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-rose-gold);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 2.75rem;
  color: var(--luxury-black);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 0;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
}

.section-title::before {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-rose-gold);
  font-size: 14px;
  background-color: var(--soft-beige);
  padding: 0 8px;
}

/* Buttons Styling */
.btn-luxury-primary {
  background: linear-gradient(135deg, var(--primary-rose-gold), var(--primary-rose-gold-dark));
  color: var(--pure-white);
  border: none;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  border-radius: 0;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.25);
  transition: var(--transition-smooth);
  z-index: 1;
}

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

.btn-luxury-primary:hover::before {
  left: 100%;
}

.btn-luxury-primary:hover {
  transform: translateY(-3px);
  color: var(--pure-white);
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.4);
}

.btn-luxury-outline {
  background: transparent;
  color: var(--luxury-black);
  border: 1px solid var(--primary-rose-gold);
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 13px 32px;
  border-radius: 0;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.btn-luxury-outline:hover {
  background-color: var(--primary-rose-gold);
  color: var(--pure-white);
  transform: translateY(-3px);
}

/* ==========================================
   5. NAVIGATION NAVBAR
   ========================================== */
.navbar-custom {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar-custom.scrolled {
  padding: 10px 0;
  background-color: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium);
}
.navbar-custom .navbar-brand {
  transition: var(--transition-smooth);
}

.navbar-custom .navbar-brand-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--pure-white);
  text-transform: uppercase;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.navbar-custom .navbar-brand-text span {
  color: var(--accent-gold);
}

.navbar-custom.scrolled .navbar-logo-img {
  height: 48px !important;
  width: 48px !important;
}

.navbar-custom.scrolled .navbar-brand-text {
  color: var(--luxury-black);
  font-size: 0.8rem;
}

.navbar-custom.scrolled .navbar-brand-text span {
  color: var(--primary-rose-gold);
}

.navbar-custom .nav-link {
  color: var(--pure-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 15px !important;
  position: relative;
  transition: var(--transition-fast);
}

.navbar-custom.scrolled .nav-link {
  color: var(--luxury-black);
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 15px;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: calc(100% - 30px);
}

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

.navbar-custom.scrolled .nav-link:hover {
  color: var(--primary-rose-gold) !important;
}

.navbar-custom .navbar-toggler {
  border-color: transparent;
  padding: 5px;
  outline: none;
}

.navbar-custom .navbar-toggler-icon-fa {
  color: var(--pure-white);
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.navbar-custom.scrolled .navbar-toggler-icon-fa {
  color: var(--luxury-black);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--luxury-black);
    padding: 20px;
    margin-top: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
  }
  
  .navbar-custom.scrolled .navbar-collapse {
    background-color: var(--pure-white);
  }
  
  .navbar-custom .nav-link {
    color: var(--pure-white) !important;
    padding: 12px 15px !important;
  }
  
  .navbar-custom.scrolled .nav-link {
    color: var(--luxury-black) !important;
  }
  
  /* Shrink vertical logo block size to fit narrow mobile viewports */
  .navbar-logo-img {
    height: 52px !important;
    width: 52px !important;
  }
  
  .navbar-brand-text {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 768px) {
  .hero-subtitle {
    display: none !important;
  }
  #home {
    background-attachment: scroll;
    height: auto !important;
    min-height: 100vh;
    padding-top: 150px !important;
    padding-bottom: 60px;
  }
}

/* ==========================================
   6. HERO SECTION
   ========================================== */
#home {
  height: 100vh;
  position: relative;
  background: linear-gradient(rgba(17, 17, 17, 0.45), rgba(17, 17, 17, 0.45)), 
              url('https://images.unsplash.com/photo-1607190074257-dd4b7af0309f?q=80&w=1920') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--pure-white);
}

@media (max-width: 768px) {
  #home {
    background-attachment: scroll; /* Fixes choppy scrolling on mobile */
  }
}

.hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-buttons .btn-luxury-primary {
  background: linear-gradient(135deg, var(--primary-rose-gold), var(--primary-rose-gold-dark));
  color: var(--pure-white);
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.hero-buttons .btn-luxury-outline {
  border-color: var(--pure-white);
  color: var(--pure-white);
}

.hero-buttons .btn-luxury-outline:hover {
  background-color: var(--pure-white);
  color: var(--luxury-black);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ==========================================
   7. ABOUT SECTION
   ========================================== */
.about-image-wrapper {
  position: relative;
  padding: 30px;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 3px solid var(--accent-gold);
  z-index: 1;
  pointer-events: none;
}

.about-image-inner {
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  background-color: var(--luxury-dark-gray);
}

.about-image-inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-image-inner:hover img {
  transform: scale(1.05);
}

.about-experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--luxury-black);
  color: var(--accent-gold);
  padding: 20px 30px;
  z-index: 3;
  box-shadow: var(--shadow-premium);
  border-top: 4px solid var(--primary-rose-gold);
  text-align: center;
}

.about-experience-badge h4 {
  font-size: 2.25rem;
  margin-bottom: 0;
  font-weight: 700;
}

.about-experience-badge p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
  color: var(--pure-white);
}

.about-signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--primary-rose-gold);
  margin-top: 20px;
}

/* ==========================================
   8. SERVICES SECTION
   ========================================== */
.services-container {
  background-color: var(--light-pink);
}

.service-card {
  background-color: var(--pure-white);
  border: 1px solid rgba(183, 110, 121, 0.08);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(183, 110, 121, 0.25);
}

.service-img-container {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.service-icon-floating {
  position: absolute;
  bottom: -25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-rose-gold);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(183, 110, 121, 0.3);
  z-index: 2;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-floating {
  background-color: var(--accent-gold);
  transform: rotate(360deg);
}

.service-content {
  padding: 35px 25px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--luxury-black);
  transition: var(--transition-fast);
}

.service-card:hover .service-title {
  color: var(--primary-rose-gold);
}

.service-text {
  font-size: 0.9rem;
  color: var(--luxury-light-gray);
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-btn {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--luxury-black);
  padding: 0;
  background: transparent;
  border: none;
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.service-btn i {
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.service-btn:hover {
  color: var(--primary-rose-gold);
}

.service-btn:hover i {
  transform: translateX(5px);
}

/* Services Modal Window */
.modal-custom {
  border-radius: 0;
  border: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.modal-custom .modal-header {
  border-bottom: 1px solid rgba(183, 110, 121, 0.1);
  background-color: var(--soft-beige);
}

.modal-custom .modal-footer {
  border-top: 1px solid rgba(183, 110, 121, 0.1);
}

.modal-custom .modal-title {
  color: var(--primary-rose-gold);
  font-weight: 700;
}

/* ==========================================
   9. BEFORE & AFTER TRANSFORMATIONS
   ========================================== */
.before-after-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  height: 500px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 4px solid var(--pure-white);
  background-color: var(--luxury-dark-gray);
}

@media(max-width: 768px) {
  .before-after-container {
    height: 350px;
  }
}

.before-after-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  pointer-events: none;
}

.before-after-img.img-before {
  /* This sits in the background */
}

.before-after-img.img-after {
  /* This sits in the foreground and will be clipped dynamically */
  width: 50%;
  border-right: 2px solid var(--accent-gold);
}

.before-after-slider {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--accent-gold);
  cursor: ew-resize;
  transform: translateX(-50%);
}

.before-after-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--pure-white);
  border: 3px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: var(--primary-rose-gold);
}

.before-after-label {
  position: absolute;
  bottom: 20px;
  z-index: 5;
  background-color: rgba(17, 17, 17, 0.7);
  color: var(--pure-white);
  padding: 5px 15px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.before-after-label.label-before {
  right: 20px;
}

.before-after-label.label-after {
  left: 20px;
}

/* ==========================================
   10. WHY CHOOSE US
   ========================================== */
.why-card {
  background-color: var(--pure-white);
  border: 1px solid rgba(183, 110, 121, 0.05);
  padding: 30px 20px;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(183, 110, 121, 0.15);
  box-shadow: var(--shadow-hover);
}

.why-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-pink);
  color: var(--primary-rose-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: var(--transition-fast);
}

.why-card:hover .why-icon {
  background-color: var(--primary-rose-gold);
  color: var(--pure-white);
}

.why-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--luxury-black);
}

.why-desc {
  font-size: 0.85rem;
  color: var(--luxury-light-gray);
  margin-bottom: 0;
}

/* ==========================================
   11. DYNAMIC STATS COUNTER
   ========================================== */
.stats-section {
  background: linear-gradient(rgba(17, 17, 17, 0.85), rgba(17, 17, 17, 0.85)),
              url('https://images.unsplash.com/photo-1560066984-138dadb4c035?q=80&w=1920') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--pure-white);
  padding: 80px 0;
}

@media (max-width: 768px) {
  .stats-section {
    background-attachment: scroll;
  }
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 2.25rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 5px;
  font-family: var(--font-serif);
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* ==========================================
   12. BRIDAL GALLERY (MASONRY)
   ========================================== */
.gallery-container {
  /* Grid settings for standard fallback */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 15px;
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    grid-auto-rows: 140px;
  }
  .gallery-item.wide, .gallery-item.big {
    grid-column: span 2;
  }
  .gallery-item.tall, .gallery-item.big {
    grid-row: span 2;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 20px;
  text-align: center;
}

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

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

.gallery-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-rose-gold);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  font-size: 1.1rem;
}

.gallery-item:hover .gallery-icon {
  transform: translateY(0);
}

.gallery-title {
  color: var(--pure-white);
  font-size: 1.25rem;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

.gallery-item:hover .gallery-title {
  transform: translateY(0);
}

.gallery-tag {
  color: var(--accent-gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  transition-delay: 0.1s;
}

.gallery-item:hover .gallery-tag {
  transform: translateY(0);
}

/* Custom Lightbox Styles */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.95);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.5s ease;
}

#lightbox.active #lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--pure-white);
  font-size: 2rem;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: var(--transition-fast);
  z-index: 2010;
}

.lightbox-close:hover {
  color: var(--primary-rose-gold);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pure-white);
  font-size: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 15px;
  transition: var(--transition-fast);
  z-index: 2010;
}

.lightbox-nav:hover {
  color: var(--primary-rose-gold);
}

.lightbox-nav.nav-left {
  left: 20px;
}

.lightbox-nav.nav-right {
  right: 20px;
}

.lightbox-caption {
  color: var(--pure-white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-top: 20px;
  text-align: center;
  max-width: 80%;
}

.lightbox-counter {
  color: var(--accent-gold);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-top: 5px;
}

/* ==========================================
   13. TESTIMONIALS & GOOGLE REVIEWS
   ========================================== */
.testimonials-section {
  background-color: var(--light-pink);
}

.testimonial-card {
  background-color: var(--pure-white);
  border: 1px solid rgba(183, 110, 121, 0.08);
  padding: 45px 35px;
  position: relative;
  box-shadow: var(--shadow-premium);
  margin: 15px;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(183, 110, 121, 0.2);
}

.testimonial-quote-icon {
  position: absolute;
  top: 30px;
  right: 35px;
  font-size: 3rem;
  color: rgba(183, 110, 121, 0.08);
}

.stars-rating {
  color: var(--accent-gold);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--luxury-light-gray);
  margin-bottom: 25px;
  line-height: 1.8;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-rose-gold);
}

.client-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--luxury-black);
}

.client-role {
  font-size: 0.75rem;
  color: var(--primary-rose-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Google Reviews Grid Panel */
.google-reviews-badge {
  background-color: var(--pure-white);
  border: 1px solid var(--glass-border);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-premium);
  margin-bottom: 30px;
  border-top: 4px solid #4285F4; /* Google Blue */
}

.google-reviews-score {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  line-height: 1.1;
  color: var(--luxury-black);
}

/* Custom testimonial slider dot indicators */
.carousel-indicators-custom {
  position: relative;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
}

.carousel-indicators-custom button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-rose-gold-light);
  border: none;
  opacity: 0.5;
  transition: var(--transition-fast);
}

.carousel-indicators-custom button.active {
  width: 25px;
  border-radius: 5px;
  background-color: var(--primary-rose-gold);
  opacity: 1;
}

/* ==========================================
   14. CALL TO ACTION (CTA)
   ========================================== */
.cta-section {
  background: linear-gradient(rgba(183, 110, 121, 0.8), rgba(17, 17, 17, 0.75)),
              url('https://images.unsplash.com/photo-1560066984-138dadb4c035?q=80&w=1920') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--pure-white);
  padding: 120px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .cta-section {
    background-attachment: scroll;
    padding: 80px 0;
  }
}

.cta-title {
  font-size: 3.25rem;
  margin-bottom: 20px;
  color: var(--pure-white);
}

.cta-desc {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-luxury-primary {
  background: var(--pure-white);
  color: var(--luxury-black);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-luxury-primary:hover {
  background: var(--accent-gold);
  color: var(--pure-white);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ==========================================
   15. FAQ ACCORDION
   ========================================== */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--pure-white);
  border: 1px solid rgba(183, 110, 121, 0.08);
  margin-bottom: 15px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-fast);
}

.faq-header {
  padding: 22px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--luxury-black);
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.faq-icon-arrow {
  font-size: 0.9rem;
  color: var(--primary-rose-gold);
  transition: transform 0.4s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-content {
  padding: 0 30px 25px;
  font-size: 0.95rem;
  color: var(--luxury-light-gray);
  line-height: 1.7;
}

/* Active states */
.faq-item.active {
  border-color: rgba(183, 110, 121, 0.2);
  box-shadow: var(--shadow-hover);
}

.faq-item.active .faq-question {
  color: var(--primary-rose-gold);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

/* ==========================================
   16. BOOKING FORM
   ========================================== */
.booking-section {
  background-color: var(--light-pink);
}

.booking-form-wrapper {
  background-color: var(--pure-white);
  border: 1px solid rgba(183, 110, 121, 0.08);
  box-shadow: var(--shadow-premium);
  padding: 50px;
}

@media(max-width: 576px) {
  .booking-form-wrapper {
    padding: 30px 20px;
  }
}

.booking-form-wrapper h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: var(--luxury-black);
}

.form-control-luxury {
  border-radius: 0;
  border: 1px solid var(--soft-beige-dark);
  padding: 12px 15px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.form-control-luxury:focus {
  border-color: var(--primary-rose-gold);
  box-shadow: 0 0 0 0.2rem rgba(183, 110, 121, 0.15);
  outline: none;
}

select.form-control-luxury {
  cursor: pointer;
}

/* ==========================================
   17. INSTAGRAM FEED & NEWSLETTER
   ========================================== */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 5px;
}

@media (max-width: 992px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.instagram-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(183, 110, 121, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  color: var(--pure-white);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

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

/* Newsletter Bar */
.newsletter-section {
  background-color: var(--luxury-black);
  padding: 50px 0;
  border-bottom: 1px solid var(--luxury-gray);
}

.newsletter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

@media(max-width: 992px) {
  .newsletter-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

.newsletter-title {
  color: var(--pure-white);
  margin-bottom: 5px;
  font-size: 1.75rem;
}

.newsletter-subtitle {
  color: var(--luxury-light-gray);
  font-size: 0.85rem;
  margin-bottom: 0;
  letter-spacing: 1px;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 500px;
}

.newsletter-form input {
  background-color: var(--luxury-dark-gray);
  border: 1px solid var(--luxury-gray);
  border-right: none;
  color: var(--pure-white);
  padding: 12px 20px;
  flex-grow: 1;
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-rose-gold);
}

.newsletter-form button {
  background-color: var(--primary-rose-gold);
  border: none;
  color: var(--pure-white);
  padding: 0 25px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background-color: var(--accent-gold);
}

/* ==========================================
   18. CONTACT SECTION
   ========================================== */
.contact-info-card {
  background-color: var(--pure-white);
  border: 1px solid rgba(183, 110, 121, 0.08);
  padding: 40px;
  height: 100%;
  box-shadow: var(--shadow-premium);
}

.contact-item-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item-row:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background-color: var(--light-pink);
  color: var(--primary-rose-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-details h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--luxury-black);
}

.contact-item-details p, .contact-item-details a {
  font-size: 0.9rem;
  color: var(--luxury-light-gray);
  margin-bottom: 0;
}

.map-container {
  box-shadow: var(--shadow-premium);
  border: 4px solid var(--pure-white);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================
   19. FOOTER
   ========================================== */
footer {
  background-color: var(--luxury-black);
  color: var(--pure-white);
  padding: 80px 0 30px;
}

.footer-logo {
  font-size: 2rem;
  color: var(--pure-white);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

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

.footer-about-text {
  color: var(--luxury-light-gray);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.footer-social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--luxury-dark-gray);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: var(--transition-fast);
}

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

.footer-title {
  font-size: 1.25rem;
  color: var(--pure-white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

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

.footer-links li a {
  color: var(--luxury-light-gray);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--primary-rose-gold);
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
  padding-left: 0;
}

.footer-contact-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--luxury-light-gray);
}

.footer-contact-info li i {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--luxury-gray);
  padding-top: 30px;
  margin-top: 60px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--luxury-light-gray);
}

/* ==========================================
   20. FLOATING BUTTONS & UTILITIES
   ========================================== */
.floating-btn-group {
  position: fixed;
  bottom: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-btn-group.left-side {
  left: 30px;
}

.floating-btn-group.right-side {
  right: 30px;
}

.btn-float {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--pure-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
}

.btn-float:hover {
  transform: translateY(-5px) scale(1.05);
  color: var(--pure-white);
}

.btn-float.whatsapp {
  background-color: #25D366;
  animation: pulse-rose 3s infinite; /* using animations */
}

.btn-float.phone {
  background-color: var(--primary-rose-gold);
  animation: pulse-gold 3s infinite;
}

.btn-float.back-to-top {
  background-color: var(--luxury-black);
  border: 1px solid var(--accent-gold);
  font-size: 1.15rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

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

.btn-float.back-to-top:hover {
  background-color: var(--accent-gold);
  color: var(--luxury-black);
}

/* Sticky Booking Bottom Bar for Mobile Viewports */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--pure-white);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999;
  padding: 10px 15px;
}

@media(max-width: 576px) {
  .sticky-mobile-cta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .sticky-mobile-cta .btn {
    flex: 1;
    font-size: 0.75rem;
    padding: 12px 10px;
    letter-spacing: 1px;
  }
  
  /* Shift floating groups up to clear sticky bar */
  .floating-btn-group {
    bottom: 85px;
  }
}
