/* ==========================================================================
   FAR FLUNG HOME DECOR - LUXURY STYLESHEET
   ========================================================================== */

:root {
  --primary-gold: #b38748;
  --primary-gold-hover: #966f36;
  --gold-subtle: #f4ece1;
  --dark-slate: #1c1c1c;
  --dark-bg: #141414;
  --creme-bg: #faf7f2;
  --creme-light: #fdfbf7;
  --text-main: #2b2b2b;
  --text-muted: #6c757d;
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1ebd56;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: #ffffff;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  line-height: 1.6;
}

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

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

section {
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

.col, [class*="col-"] {
  min-width: 0;
}

.hero-slide .container .row {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.hero-slide .container .row > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.swiper,
.hero-swiper,
.gallery-swiper,
.reels-swiper,
.testimonials-swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.swiper-slide {
  max-width: 100%;
}

/* Continuous Bouncing Animation for All Icons */
i.fa-solid, 
i.fa-brands, 
i.fa-regular, 
.fa, 
.fas, 
.fab, 
.far {
  display: inline-block;
  animation: iconBounceContinuous 2s ease-in-out infinite alternate;
  transform-origin: center bottom;
}

@keyframes iconBounceContinuous {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.08);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* Stagger alternate animation duration for organic feeling */
.service-icon-pill i,
.step-icon-wrap i,
.why-icon-box i,
.contact-icon i,
.badge-icon-gold i,
.step-icon-glow i {
  animation: iconBounceContinuous 1.8s ease-in-out infinite alternate;
}

.btn i,
.floating-whatsapp-btn i {
  animation: iconBounceContinuous 1.6s ease-in-out infinite alternate;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
}

.bg-light-creme, .bg-light-cream {
  background-color: var(--creme-bg);
}

.bg-dark-feature {
  background-color: #121212;
}

.bg-footer-dark {
  background-color: #111111;
}

.text-gold {
  color: var(--primary-gold) !important;
}

.bg-gold {
  background-color: var(--primary-gold) !important;
}

.border-gold-subtle {
  border-color: #e8d8c3 !important;
}

/* Buttons */
.btn-gold {
  background-color: var(--primary-gold);
  color: #ffffff;
  border: 1px solid var(--primary-gold);
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  background-color: var(--primary-gold-hover);
  border-color: var(--primary-gold-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(179, 135, 72, 0.35);
}

.btn-outline-gold {
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
  background-color: transparent;
  transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
  background-color: var(--primary-gold);
  color: #ffffff;
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  border: 1px solid var(--whatsapp-green);
  transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Header & Brand */
.site-header {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  z-index: 1020;
}

.site-logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.site-logo-img:hover {
  transform: scale(1.03);
}

.footer-logo-img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.03);
}

@media (max-width: 576px) {
  .site-logo-img {
    max-height: 40px;
  }
  .footer-logo-img {
    max-height: 44px;
  }
}

.navbar-brand {
  text-decoration: none;
}

.logo-icon, .logo-icon-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--primary-gold);
  border-radius: 4px;
}

.logo-icon .brand-monogram {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-gold);
  letter-spacing: 1px;
}

.logo-icon-gold .brand-monogram {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-gold);
  letter-spacing: 1px;
}

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

.brand-name {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  color: var(--dark-slate);
}

.brand-tagline {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #777;
  font-weight: 600;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  padding: 0.5rem 0.85rem !important;
  transition: var(--transition-smooth);
}

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

/* Hero Section & Ken Burns Zoom Animations */
.hero-section {
  height: 88vh;
  min-height: 580px;
  background-color: #111;
}

.hero-slide {
  overflow: hidden;
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Zoom In Effect on Active Slide */
.swiper-slide-active .hero-slide-bg {
  animation: kenBurnsZoom 7s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
}

@keyframes kenBurnsZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}

/* Staggered Text Animations for Active Slide */
.hero-text-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.swiper-slide-active .hero-tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
  animation: heroFadeUp 0.8s 0.2s forwards;
}

.swiper-slide-active .hero-title-anim {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
  animation: heroFadeUp 0.8s 0.4s forwards;
}

.swiper-slide-active .hero-subtitle-anim {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
  animation: heroFadeUp 0.8s 0.6s forwards;
}

.swiper-slide-active .hero-btn-anim {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
  animation: heroFadeUp 0.8s 0.8s forwards;
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(35px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
  line-height: 1.18;
}

.hero-subtitle {
  max-width: 620px;
  font-size: 1.2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-prev-btn, .hero-next-btn {
  color: #ffffff;
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--transition-smooth);
}

.hero-prev-btn:after, .hero-next-btn:after {
  display: none;
}

.hero-prev-btn:hover, .hero-next-btn:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #121212;
  transform: scale(1.1);
}

.hero-pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--primary-gold);
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

/* About Us - Premium Design with Autoplay Video & Typed.js */
.typed-cursor {
  color: var(--primary-gold);
  font-size: 1.8rem;
  font-weight: 300;
}

.about-composition {
  position: relative;
  z-index: 1;
}

.about-main-img-box, .about-video-wrapper {
  border: 1px solid rgba(179, 135, 72, 0.25);
  background-color: #000;
  height: 480px;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-video-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

.about-main-img-box .about-img {
  height: 480px;
  transition: transform 0.8s ease;
}

.about-main-img-box:hover .about-img {
  transform: scale(1.04);
}

.about-img-glass-bar {
  background: linear-gradient(to top, rgba(15, 15, 15, 0.88) 0%, rgba(15, 15, 15, 0.5) 60%, transparent 100%);
  backdrop-filter: blur(8px);
}

.about-floating-exp-card {
  bottom: 25px;
  right: -20px;
  z-index: 4;
  min-width: 190px;
  animation: floatingCard 4s ease-in-out infinite alternate;
}

@keyframes floatingCard {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.exp-icon-box {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.about-decor-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  border: 1.5px dashed rgba(179, 135, 72, 0.35);
  border-radius: 1.5rem;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .about-main-img-box, .about-video-wrapper {
    height: 360px;
  }
}

/* Services Section - Premium Redesign */
.max-w-700 {
  max-width: 700px;
}

.shadow-xs {
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 140px;
}

.luxury-divider span {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
}

.decor-circle-bg-1 {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(179, 135, 72, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.decor-circle-bg-2 {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(179, 135, 72, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.luxury-service-card-link {
  color: inherit;
  cursor: pointer;
}

.luxury-service-card-link:hover .luxury-service-card {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.2) !important;
  border-color: var(--whatsapp-green);
}

.luxury-service-card-link:hover .btn-explore-pill {
  background: var(--whatsapp-green);
  color: #ffffff;
  transform: scale(1.15);
}

.luxury-service-card-link:hover .explore-link {
  color: var(--whatsapp-green) !important;
  letter-spacing: 1.5px;
}

.luxury-service-card {
  border: 1px solid rgba(179, 135, 72, 0.15);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
  position: relative;
}

.luxury-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(179, 135, 72, 0.14) !important;
  border-color: var(--primary-gold);
}

.luxury-service-card .service-img-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.luxury-service-card .service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.service-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.btn-explore-pill {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transform: scale(0.8);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.luxury-service-card:hover .service-hover-overlay {
  opacity: 1;
}

.luxury-service-card:hover .btn-explore-pill {
  transform: scale(1);
}

.service-icon-pill {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--gold-subtle);
  color: var(--primary-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.luxury-service-card:hover .service-icon-pill {
  background-color: var(--primary-gold);
  color: #ffffff;
  transform: rotate(10deg);
}

.explore-link {
  font-size: 0.75rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}

.luxury-service-card:hover .explore-link {
  color: var(--primary-gold-hover) !important;
  letter-spacing: 1.5px;
}

/* Dual Feature Banner */
.feature-banner-card {
  background-size: cover;
  background-position: center;
  min-height: 380px;
  display: flex;
  align-items: center;
  transition: transform 0.4s ease;
}

.feature-banner-card:hover {
  transform: scale(1.01);
}

/* Made Just For You (Process) */
.process-steps-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  padding: 10px 0;
}

.step-item {
  flex: 1 1 0px;
  min-width: 48px;
  text-align: center;
}

.step-icon-wrap {
  width: 54px;
  height: 54px;
  margin: 0 auto 6px auto;
  border-radius: 12px;
  background-color: var(--creme-bg);
  border: 1px dashed var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--primary-gold);
  transition: var(--transition-smooth);
}

.step-item:hover .step-icon-wrap {
  background-color: var(--primary-gold);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.step-title {
  font-size: 0.8rem;
  white-space: nowrap;
  display: block;
}

.step-arrow {
  font-size: 0.85rem;
  padding: 0 4px;
  flex-shrink: 0;
}

/* Why Choose Us */
.why-item {
  transition: var(--transition-smooth);
}

.why-item:hover {
  transform: translateY(-4px);
}

.why-icon-box {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid #ebd9c2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-gold);
}

/* How It Works - Luxury Redesign */
.how-it-works-section {
  background: radial-gradient(circle at 80% 20%, #201a14 0%, #121212 70%);
}

.how-works-glow-1 {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(179, 135, 72, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.how-works-glow-2 {
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(179, 135, 72, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.luxury-how-step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.luxury-how-step-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(179, 135, 72, 0.2);
}

.step-num-badge {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-gold);
  background: rgba(179, 135, 72, 0.12);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(179, 135, 72, 0.3);
  transition: all 0.3s ease;
}

.luxury-how-step-card:hover .step-num-badge {
  background: var(--primary-gold);
  color: #121212;
  box-shadow: 0 0 15px rgba(179, 135, 72, 0.5);
}

.step-icon-glow {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.luxury-how-step-card:hover .step-icon-glow {
  color: var(--primary-gold);
  transform: scale(1.15);
}

.how-works-showcase {
  height: 100%;
  min-height: 380px;
}

.how-works-showcase .showcase-img {
  height: 100%;
  min-height: 380px;
  transition: transform 0.8s ease;
}

.how-works-showcase:hover .showcase-img {
  transform: scale(1.05);
}

.showcase-badge {
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(179, 135, 72, 0.3);
}

.badge-icon-gold {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-gold);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Gallery Section (Sliding Luxury Lookbook) */
.luxury-gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(179, 135, 72, 0.15);
  background-color: #f5f5f5;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.luxury-gallery-card .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12) !important;
}

.luxury-gallery-card:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-badge-top {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.luxury-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 16, 16, 0.92) 0%, rgba(16, 16, 16, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.luxury-gallery-card:hover .luxury-gallery-overlay {
  opacity: 1;
}

/* Force All Text Elements in Gallery Overlay to be Crisp White on Hover */
.luxury-gallery-card:hover .luxury-gallery-overlay * {
  color: #ffffff !important;
}

.luxury-gallery-card:hover .luxury-gallery-overlay .badge.bg-gold {
  background-color: var(--primary-gold) !important;
  color: #ffffff !important;
}

.luxury-gallery-card:hover .luxury-gallery-overlay h5,
.luxury-gallery-card:hover .luxury-gallery-overlay p,
.luxury-gallery-card:hover .luxury-gallery-overlay span,
.luxury-gallery-card:hover .luxury-gallery-overlay a,
.luxury-gallery-card:hover .luxury-gallery-overlay i {
  color: #ffffff !important;
}

.gallery-zoom-btn {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: all 0.3s ease;
}

.gallery-zoom-btn:hover {
  background: var(--primary-gold);
  color: #121212;
  transform: scale(1.15);
}

.gallery-nav-buttons .gallery-prev-btn,
.gallery-nav-buttons .gallery-next-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-pagination .swiper-pagination-bullet {
  background-color: #ddd;
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}

.gallery-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-gold);
  width: 26px;
  border-radius: 4px;
}

/* Reels & Testimonials Row */
.reel-card {
  position: relative;
}

.reel-video-box {
  aspect-ratio: 9 / 14;
  background-color: #222;
}

.reel-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s ease;
}

.play-btn {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.9);
  color: var(--dark-slate);
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.play-btn:hover {
  background: var(--primary-gold);
  color: #ffffff;
  transform: scale(1.15);
}

.author-avatar {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 2px solid var(--primary-gold);
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-gold);
  width: 20px;
  border-radius: 4px;
}

/* Parallax Fixed Background Section (Background Fix Section) */
.parallax-fixed-section {
  background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1920&q=80');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 520px;
}

.parallax-fixed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 16, 16, 0.88) 0%, rgba(20, 20, 20, 0.75) 100%);
}

.parallax-metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(179, 135, 72, 0.25);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.parallax-metric-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-gold);
}

@media (max-width: 768px) {
  .parallax-fixed-section {
    background-attachment: scroll; /* Mobile smooth scrolling fallback */
  }
}

/* WhatsApp Consultation Hub (Replacing Form) */
.whatsapp-card-hub {
  background: #ffffff;
  border: 1px solid rgba(179, 135, 72, 0.25);
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.12) !important;
}

.text-whatsapp {
  color: var(--whatsapp-green);
}

.wa-header-avatar {
  width: 50px;
  height: 50px;
}

.wa-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid var(--whatsapp-green);
}

.wa-online-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: var(--whatsapp-green);
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.wa-chip-btn {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: var(--dark-slate);
  border: 1px solid #dfd2c4;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.wa-chip-btn:hover {
  background-color: var(--whatsapp-green);
  border-color: var(--whatsapp-green);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.wa-chip-btn:hover i {
  color: #ffffff !important;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 1050;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  background-color: var(--whatsapp-hover);
  color: #ffffff;
  transform: scale(1.1) rotate(8deg);
}

/* Footer */
/* Premium Footer Styles */
.site-footer {
  background: radial-gradient(circle at 50% 0%, #1c1813 0%, #0d0d0d 80%);
}

.footer-gold-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-gold) 50%, transparent 100%);
}

.footer-newsletter-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(20, 20, 20, 0.95) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(179, 135, 72, 0.35) !important;
}

.footer-contact-card {
  background-color: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #a8a8a8;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: #ffffff !important;
  transform: translateX(5px);
}

.footer-links a:hover i {
  color: var(--primary-gold) !important;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #111;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 4px 12px rgba(179, 135, 72, 0.4);
}

/* ==========================================================================
   COMPREHENSIVE 100% MOBILE & TABLET RESPONSIVE SYSTEM
   ========================================================================== */

[data-aos] {
  overflow-x: hidden;
  max-width: 100%;
}

/* Large Tablets & Small Laptops (max-width: 991.98px) */
@media (max-width: 991.98px) {
  .hero-section {
    height: 80vh;
    min-height: 520px;
  }

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

  .hero-subtitle {
    font-size: 1.05rem;
  }

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

  .about-floating-exp-card {
    position: static !important;
    margin-top: 15px;
    width: 100%;
    transform: none !important;
    animation: none;
  }

  .about-decor-frame {
    display: none !important;
  }

  .feature-banner-card {
    min-height: 320px;
  }

  .process-steps-row {
    justify-content: center;
    gap: 12px;
  }

  .step-arrow {
    display: none !important;
  }

  .step-item {
    flex: 0 0 calc(33.333% - 12px);
    max-width: calc(33.333% - 12px);
    margin-bottom: 10px;
  }

  .parallax-fixed-section {
    background-attachment: scroll;
    padding: 60px 0;
  }

  .decor-circle-bg-1,
  .decor-circle-bg-2,
  .how-works-glow-1,
  .how-works-glow-2 {
    display: none !important;
  }
}

/* Tablets & Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body {
    font-size: 0.95rem;
  }

  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .site-header .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero-section {
    height: 84vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.22;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-prev-btn, .hero-next-btn {
    width: 38px;
    height: 38px;
  }

  .about-main-img-box {
    height: 300px;
  }

  .dual-feature-section .col-md-6 {
    margin-bottom: 12px;
  }

  .feature-banner-card {
    min-height: 280px;
  }

  .feature-banner-content {
    padding: 1.25rem !important;
  }

  .feature-banner-content h3 {
    font-size: 1.45rem;
  }

  .why-item {
    padding: 6px 2px;
  }

  .why-icon-box {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  .how-works-showcase {
    min-height: 260px;
  }

  .how-works-showcase .showcase-img {
    min-height: 260px;
    height: 260px;
  }

  .whatsapp-card-hub {
    padding: 1.25rem !important;
  }

  .wa-chip-btn {
    font-size: 0.76rem;
    padding: 6px 10px;
    white-space: normal;
    text-align: center;
  }

  .floating-whatsapp-btn {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .site-footer {
    padding-top: 2rem;
  }

  .luxury-service-card .service-img-wrapper {
    aspect-ratio: 16 / 10;
  }

  .luxury-gallery-card {
    aspect-ratio: 1 / 1;
  }

  .reel-video-box {
    aspect-ratio: 9 / 13;
  }
}

/* Mobile Phones (max-width: 576px) */
@media (max-width: 576px) {
  .hero-section {
    height: 86vh;
    min-height: 520px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.25;
    margin-bottom: 0.75rem !important;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.45;
    margin-bottom: 1.25rem !important;
  }

  .hero-prev-btn, .hero-next-btn {
    display: none;
  }

  .hero-pagination {
    bottom: 15px !important;
  }

  .hero-btn-anim {
    display: flex;
    flex-direction: column;
    gap: 10px !important;
    width: 100%;
  }

  .hero-btn-anim .btn {
    width: 100%;
    padding: 0.75rem 1.15rem;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-logo-img {
    max-height: 34px;
  }

  .display-5, .display-6 {
    font-size: 1.6rem;
  }

  .display-4 {
    font-size: 1.7rem;
  }

  .process-steps-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .step-item {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
    margin-bottom: 8px;
  }

  .step-icon-wrap {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  .parallax-metric-card h3 {
    font-size: 1.4rem !important;
  }
}

/* Extra Small Screens (max-width: 380px) */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.55rem;
  }

  .hero-subtitle {
    font-size: 0.86rem;
  }
  
  .nav-actions {
    width: 100%;
    justify-content: stretch;
  }

  .nav-actions .btn {
    flex: 1;
    text-align: center;
    font-size: 0.72rem;
    padding: 5px 6px;
  }

  .step-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .wa-chip-btn {
    width: 100%;
    justify-content: center;
  }
}
